|
@@ -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_M115();
|
120
|
119
|
extern void gcode_M117();
|
121
|
120
|
extern void gcode_M118();
|
122
|
121
|
extern void gcode_M119();
|
|
@@ -496,9 +495,9 @@ void GcodeSuite::process_next_command() {
|
496
|
495
|
case 92: M92(); break; // M92: Set the steps-per-unit for one or more axes
|
497
|
496
|
|
498
|
497
|
case 114: M114(); break; // M114: Report current position
|
499
|
|
- case 115: // M115: Report capabilities
|
500
|
|
- gcode_M115();
|
501
|
|
- break;
|
|
498
|
+
|
|
499
|
+ case 115: M115(); break; // M115: Report capabilities
|
|
500
|
+
|
502
|
501
|
case 117: // M117: Set LCD message text, if possible
|
503
|
502
|
gcode_M117();
|
504
|
503
|
break;
|