Skip to content

Commit

Permalink
1.1.9.8
Browse files Browse the repository at this point in the history
emergency parser  M410 command include heating cancel
  • Loading branch information
Lukkoz committed Mar 1, 2021
1 parent 3b8b21e commit 6165350
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Marlin/Marlin_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13100,11 +13100,11 @@ void process_parsed_command() {
#if DISABLED(EMERGENCY_PARSER)
case 108: gcode_M108(); break; // M108: Cancel Waiting
case 112: gcode_M112(); break; // M112: Emergency Stop
case 411: gcode_M411(); break; // M411 Emergency parser Skriware

#else
case 108: case 112: break; // Silently drop as handled by emergency parser
#endif

case 411: gcode_M411(); break; // M411 Emergency parser Skriware
#if ENABLED(HOST_KEEPALIVE_FEATURE)
case 113: gcode_M113(); break; // M113: Set Host Keepalive Interval
#endif
Expand Down
2 changes: 1 addition & 1 deletion Marlin/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
* Marlin release version identifier
*/

#define SHORT_BUILD_VERSION "1.1.9.7"
#define SHORT_BUILD_VERSION "1.1.9.8"

/**
* Verbose version identifier which should contain a reference to the location
Expand Down
1 change: 1 addition & 0 deletions Marlin/emergency_parser.h
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ class EmergencyParser {
break;
case EP_M411:
clear_gcode_byM411 = true;
wait_for_user = wait_for_heatup = false;
break;
default:
break;
Expand Down

0 comments on commit 6165350

Please sign in to comment.