Fix auto_report_temperatures()

The `auto_report_temperatures` needs a linefeed to be recognized by Repetier Host.
This commit is contained in:
AnHardt 2016-12-05 21:04:53 +01:00
parent 1f3e2440bc
commit 59a27ed27d

View File

@ -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;
}
}