Browse Source

Fix M412 without HOST_ACTION_COMMANDS (#14591)

pull/1/head
scotthsl 5 years ago
committed by Scott Lahteine
parent
commit
19b24a349c
  1. 4
      Marlin/src/gcode/feature/runout/M412.cpp

4
Marlin/src/gcode/feature/runout/M412.cpp

@ -31,12 +31,12 @@
* M412: Enable / Disable filament runout detection * M412: Enable / Disable filament runout detection
*/ */
void GcodeSuite::M412() { void GcodeSuite::M412() {
if (parser.seen("HS" if (parser.seen("RS"
#ifdef FILAMENT_RUNOUT_DISTANCE_MM #ifdef FILAMENT_RUNOUT_DISTANCE_MM
"D" "D"
#endif #endif
#if ENABLED(HOST_ACTION_COMMANDS) #if ENABLED(HOST_ACTION_COMMANDS)
"R" "H"
#endif #endif
)) { )) {
#if ENABLED(HOST_ACTION_COMMANDS) #if ENABLED(HOST_ACTION_COMMANDS)

Loading…
Cancel
Save