From 803845ec18fac0bc83c4b31ea19adf68a51b1ed1 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Sun, 10 Apr 2016 18:53:03 -0700 Subject: [PATCH] Add a case for M113 to process_next_command --- Marlin/Marlin_main.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Marlin/Marlin_main.cpp b/Marlin/Marlin_main.cpp index 3759a07b7..0b180c78e 100644 --- a/Marlin/Marlin_main.cpp +++ b/Marlin/Marlin_main.cpp @@ -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;