Browse Source

Fix compile errors & temp range

pull/1/head
Giuliano Zaro 5 years ago
committed by Scott Lahteine
parent
commit
43aba9f918
  1. 6
      Marlin/src/module/temperature.cpp

6
Marlin/src/module/temperature.cpp

@ -389,7 +389,7 @@ volatile bool Temperature::temp_meas_ready = false;
next_auto_fan_check_ms = next_temp_ms + 2500UL; next_auto_fan_check_ms = next_temp_ms + 2500UL;
#endif #endif
if (target > GHV(BED_MAXTEMP, temp_range[heater].maxtemp) - 15) { if (target > GHV(BED_MAXTEMP - 10, temp_range[heater].maxtemp - 15)) {
SERIAL_ECHOLNPGM(MSG_PID_TEMP_TOO_HIGH); SERIAL_ECHOLNPGM(MSG_PID_TEMP_TOO_HIGH);
return; return;
} }
@ -857,7 +857,7 @@ void Temperature::min_temp_error(const heater_ind_t heater) {
#if HOTENDS == 1 #if HOTENDS == 1
constexpr bool this_hotend = true; constexpr bool this_hotend = true;
#else #else
const bool this_hotend = (e == active_extruder); const bool this_hotend = (ee == active_extruder);
#endif #endif
work_pid[ee].Kc = 0; work_pid[ee].Kc = 0;
if (this_hotend) { if (this_hotend) {
@ -886,7 +886,7 @@ void Temperature::min_temp_error(const heater_ind_t heater) {
#endif // PID_OPENLOOP #endif // PID_OPENLOOP
#if ENABLED(PID_DEBUG) #if ENABLED(PID_DEBUG)
if (e == active_extruder) { if (ee == active_extruder) {
SERIAL_ECHO_START(); SERIAL_ECHO_START();
SERIAL_ECHOPAIR( SERIAL_ECHOPAIR(
MSG_PID_DEBUG, ee, MSG_PID_DEBUG, ee,

Loading…
Cancel
Save