mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-18 23:49:49 +00:00
Merge pull request #3454 from thinkyhead/rc_host_timeout_mods
Add a case for M113 to process_next_command
This commit is contained in:
commit
b30e4528f1
1 changed files with 8 additions and 0 deletions
|
@ -6416,6 +6416,14 @@ void process_next_command() {
|
|||
gcode_M112();
|
||||
break;
|
||||
|
||||
#if ENABLED(HOST_KEEPALIVE_FEATURE)
|
||||
|
||||
case 113: // M113: Set Host Keepalive interval
|
||||
gcode_M113();
|
||||
break;
|
||||
|
||||
#endif
|
||||
|
||||
case 140: // M140: Set bed temp
|
||||
gcode_M140();
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue