mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-12-31 11:50:37 -07:00
Move M250 to cpp
This commit is contained in:
parent
ebb9bd5419
commit
8584f7e390
3 changed files with 12 additions and 10 deletions
|
|
@ -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_M250();
|
||||
extern void gcode_M302();
|
||||
extern void gcode_M350();
|
||||
extern void gcode_M351();
|
||||
|
|
@ -579,10 +578,8 @@ void GcodeSuite::process_next_command() {
|
|||
#endif
|
||||
|
||||
#if HAS_LCD_CONTRAST
|
||||
case 250: // M250: Set LCD contrast
|
||||
gcode_M250();
|
||||
break;
|
||||
#endif // HAS_LCD_CONTRAST
|
||||
case 250: M250(); break; // M250: Set LCD contrast
|
||||
#endif
|
||||
|
||||
#if ENABLED(EXPERIMENTAL_I2CBUS)
|
||||
case 260: M260(); break; // M260: Send data to an i2c slave
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue