Update comments, rename next_ping_ms, followup to #3797

This commit is contained in:
Scott Lahteine
2016-05-14 17:37:42 -07:00
parent 6d68b12e28
commit 8218558953
20 changed files with 41 additions and 40 deletions

View File

@ -516,6 +516,7 @@ float Temperature::get_pid_output(int e) {
/**
* Manage heating activities for extruder hot-ends and a heated bed
* - Acquire updated temperature readings
* - Also resets the watchdog timer
* - Invoke thermal runaway protection
* - Manage extruder auto-fan
* - Apply filament width to the extrusion rate (may move)
@ -525,7 +526,7 @@ void Temperature::manage_heater() {
if (!temp_meas_ready) return;
updateTemperaturesFromRawValues();
updateTemperaturesFromRawValues(); // also resets the watchdog
#if ENABLED(HEATER_0_USES_MAX6675)
float ct = current_temperature[0];