From 59a27ed27d422b906bc5aed41b6179b1e02b20e0 Mon Sep 17 00:00:00 2001 From: AnHardt Date: Mon, 5 Dec 2016 21:04:53 +0100 Subject: [PATCH] Fix auto_report_temperatures() The `auto_report_temperatures` needs a linefeed to be recognized by Repetier Host. --- Marlin/Marlin_main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Marlin/Marlin_main.cpp b/Marlin/Marlin_main.cpp index 4e7a1b8f3..de7232719 100755 --- a/Marlin/Marlin_main.cpp +++ b/Marlin/Marlin_main.cpp @@ -5235,6 +5235,7 @@ inline void gcode_M105() { if (auto_report_temp_interval && ELAPSED(millis(), next_temp_report_ms)) { next_temp_report_ms = millis() + 1000UL * auto_report_temp_interval; print_heaterstates(); + SERIAL_EOL; } }