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