Move M220 to cpp
This commit is contained in:
@ -119,7 +119,6 @@ void GcodeSuite::dwell(millis_t time) {
|
||||
extern void gcode_M163();
|
||||
extern void gcode_M164();
|
||||
extern void gcode_M165();
|
||||
extern void gcode_M220();
|
||||
extern void gcode_M226();
|
||||
extern void gcode_M240();
|
||||
extern void gcode_M250();
|
||||
@ -559,9 +558,7 @@ void GcodeSuite::process_next_command() {
|
||||
break;
|
||||
#endif
|
||||
|
||||
case 220: // M220: Set Feedrate Percentage: S<percent> ("FR" on your LCD)
|
||||
gcode_M220();
|
||||
break;
|
||||
case 220: M220(); break; // M220: Set Feedrate Percentage: S<percent> ("FR" on your LCD)
|
||||
|
||||
case 221: // M221: Set Flow Percentage
|
||||
M221();
|
||||
|
Reference in New Issue
Block a user