Browse Source

Add a case for M113 to process_next_command

Scott Lahteine 8 years ago
parent
commit
803845ec18
1 changed files with 8 additions and 0 deletions
  1. 8
    0
      Marlin/Marlin_main.cpp

+ 8
- 0
Marlin/Marlin_main.cpp View File

@@ -6416,6 +6416,14 @@ void process_next_command() {
6416 6416
         gcode_M112();
6417 6417
         break;
6418 6418
 
6419
+      #if ENABLED(HOST_KEEPALIVE_FEATURE)
6420
+
6421
+        case 113: // M113: Set Host Keepalive interval
6422
+          gcode_M113();
6423
+          break;
6424
+
6425
+      #endif
6426
+
6419 6427
       case 140: // M140: Set bed temp
6420 6428
         gcode_M140();
6421 6429
         break;

Loading…
Cancel
Save