Skip to content

Commit

Permalink
Fix M211
Browse files Browse the repository at this point in the history
  • Loading branch information
DerAndere1 committed Oct 1, 2024
1 parent 55cea19 commit 0e37299
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/gcode/control/M211.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ void GcodeSuite::M211() {
if (parser.seen('H'))
planner.abort_on_software_endstop = parser.value_bool();
#endif
if (!(parser.seen('S') || TERN0(HABORT_ON_SOFTWARE_ENDSTOP, parser.seen('H'))))
if (!(parser.seen('S') || TERN0(ABORT_ON_SOFTWARE_ENDSTOP, parser.seen('H'))))
M211_report();
}

Expand Down

0 comments on commit 0e37299

Please sign in to comment.