Browse Source

Make declaration of PID_debug_flag match M303.cpp

vanilla_fb_2.0.x
Roxy-3D 4 years ago
committed by GitHub
parent
commit
a65198882f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      Marlin/src/module/temperature.cpp

4
Marlin/src/module/temperature.cpp

@ -823,7 +823,7 @@ void Temperature::min_temp_error(const heater_ind_t heater) {
#if HOTENDS
#if ENABLED(PID_DEBUG)
extern bool PID_Debug_Flag;
extern bool PID_debug_flag;
#endif
float Temperature::get_pid_output_hotend(const uint8_t E_NAME) {
@ -906,7 +906,7 @@ void Temperature::min_temp_error(const heater_ind_t heater) {
#endif // PID_OPENLOOP
#if ENABLED(PID_DEBUG)
if (ee == active_extruder && PID_Debug_Flag) {
if (ee == active_extruder && PID_debug_flag) {
SERIAL_ECHO_START();
SERIAL_ECHOPAIR(STR_PID_DEBUG, ee, STR_PID_DEBUG_INPUT, temp_hotend[ee].celsius, STR_PID_DEBUG_OUTPUT, pid_output);
#if DISABLED(PID_OPENLOOP)

Loading…
Cancel
Save