Skip to content

Commit

Permalink
Fix auto_report_temperatures()
Browse files Browse the repository at this point in the history
The `auto_report_temperatures` needs a linefeed to be recognized by Repetier Host.
  • Loading branch information
AnHardt committed Dec 6, 2016
1 parent 1f3e244 commit 59a27ed
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Marlin/Marlin_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}

Expand Down

0 comments on commit 59a27ed

Please sign in to comment.