Merge pull request #5393 from AnHardt/Fix-auto_report_temperatures

Fix auto_report_temperatures()
This commit is contained in:
Scott Lahteine 2016-12-05 19:38:23 -06:00 committed by GitHub
commit b203901143

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