|
@@ -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_M118();
|
120
|
119
|
extern void gcode_M119();
|
121
|
120
|
extern void gcode_M120();
|
122
|
121
|
extern void gcode_M121();
|
|
@@ -498,9 +497,8 @@ void GcodeSuite::process_next_command() {
|
498
|
497
|
case 115: M115(); break; // M115: Report capabilities
|
499
|
498
|
|
500
|
499
|
case 117: M117(); break; // M117: Set LCD message text, if possible
|
501
|
|
- case 118: // M118: Display a message in the host console
|
502
|
|
- gcode_M118();
|
503
|
|
- break;
|
|
500
|
+ case 118: M118(); break; // M118: Display a message in the host console
|
|
501
|
+
|
504
|
502
|
case 119: // M119: Report endstop states
|
505
|
503
|
gcode_M119();
|
506
|
504
|
break;
|