|
@@ -117,8 +117,6 @@ void GcodeSuite::dwell(millis_t time) {
|
117
|
117
|
// Placeholders for non-migrated codes
|
118
|
118
|
//
|
119
|
119
|
extern void gcode_M18_M84();
|
120
|
|
-extern void gcode_M82();
|
121
|
|
-extern void gcode_M83();
|
122
|
120
|
extern void gcode_M85();
|
123
|
121
|
extern void gcode_M92();
|
124
|
122
|
extern void gcode_M100();
|
|
@@ -495,12 +493,9 @@ void GcodeSuite::process_next_command() {
|
495
|
493
|
|
496
|
494
|
case 81: M81(); break; // M81: Turn off Power, including Power Supply, if possible
|
497
|
495
|
|
498
|
|
- case 82: // M82: Set E axis normal mode (same as other axes)
|
499
|
|
- gcode_M82();
|
500
|
|
- break;
|
501
|
|
- case 83: // M83: Set E axis relative mode
|
502
|
|
- gcode_M83();
|
503
|
|
- break;
|
|
496
|
+ case 82: M82(); break; // M82: Set E axis normal mode (same as other axes)
|
|
497
|
+ case 83: M83(); break; // M83: Set E axis relative mode
|
|
498
|
+
|
504
|
499
|
case 18: // M18 => M84
|
505
|
500
|
case 84: // M84: Disable all steppers or set timeout
|
506
|
501
|
gcode_M18_M84();
|