FWRETRACT as a feature
This commit is contained in:
@ -754,16 +754,10 @@ void GcodeSuite::process_next_command() {
|
||||
#endif
|
||||
|
||||
#if ENABLED(FWRETRACT)
|
||||
case 207: // M207: Set Retract Length, Feedrate, and Z lift
|
||||
M207();
|
||||
break;
|
||||
case 208: // M208: Set Recover (unretract) Additional Length and Feedrate
|
||||
M208();
|
||||
break;
|
||||
case 209: // M209: Turn Automatic Retract Detection on/off
|
||||
if (MIN_AUTORETRACT <= MAX_AUTORETRACT) M209();
|
||||
break;
|
||||
#endif // FWRETRACT
|
||||
case 207: M207(); break; // M207: Set Retract Length, Feedrate, and Z lift
|
||||
case 208: M208(); break; // M208: Set Recover (unretract) Additional Length and Feedrate
|
||||
case 209: if (MIN_AUTORETRACT <= MAX_AUTORETRACT) M209(); break; // M209: Turn Automatic Retract Detection on/off
|
||||
#endif
|
||||
|
||||
case 211: // M211: Enable, Disable, and/or Report software endstops
|
||||
gcode_M211();
|
||||
|
Reference in New Issue
Block a user