|
@@ -116,7 +116,6 @@ void GcodeSuite::dwell(millis_t time) {
|
116
|
116
|
//
|
117
|
117
|
// Placeholders for non-migrated codes
|
118
|
118
|
//
|
119
|
|
-extern void gcode_M92();
|
120
|
119
|
extern void gcode_M100();
|
121
|
120
|
extern void gcode_M114();
|
122
|
121
|
extern void gcode_M115();
|
|
@@ -498,9 +497,8 @@ void GcodeSuite::process_next_command() {
|
498
|
497
|
case 84: M18_M84(); break; // M84: Disable all steppers or set timeout
|
499
|
498
|
case 85: M85(); break; // M85: Set inactivity stepper shutdown timeout
|
500
|
499
|
|
501
|
|
- case 92: // M92: Set the steps-per-unit for one or more axes
|
502
|
|
- gcode_M92();
|
503
|
|
- break;
|
|
500
|
+ case 92: M92(); break; // M92: Set the steps-per-unit for one or more axes
|
|
501
|
+
|
504
|
502
|
case 114: // M114: Report current position
|
505
|
503
|
gcode_M114();
|
506
|
504
|
break;
|