Fix auto_report_temperatures()

The `auto_report_temperatures` needs a linefeed to be recognized by Repetier Host.
master
AnHardt 8 years ago
parent 1f3e2440bc
commit 59a27ed27d

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

Loading…
Cancel
Save