Merge pull request #5393 from AnHardt/Fix-auto_report_temperatures

Fix auto_report_temperatures()
master
Scott Lahteine 8 years ago committed by GitHub
commit b203901143

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