Merge pull request #3992 from thinkyhead/rc_pid_autotune_e_range
Throw an error in PID_autotune for E < -1
This commit is contained in:
commit
27d5794298
@ -206,15 +206,18 @@ unsigned char Temperature::soft_pwm[HOTENDS];
|
|||||||
next_auto_fan_check_ms = temp_ms + 2500UL;
|
next_auto_fan_check_ms = temp_ms + 2500UL;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (false
|
if (hotend >=
|
||||||
#if ENABLED(PIDTEMP)
|
#if ENABLED(PIDTEMP)
|
||||||
|| hotend >= HOTENDS
|
HOTENDS
|
||||||
#else
|
#else
|
||||||
|| hotend >= 0
|
0
|
||||||
#endif
|
#endif
|
||||||
#if DISABLED(PIDTEMPBED)
|
|| hotend <
|
||||||
|| hotend < 0
|
#if ENABLED(PIDTEMPBED)
|
||||||
#endif
|
-1
|
||||||
|
#else
|
||||||
|
0
|
||||||
|
#endif
|
||||||
) {
|
) {
|
||||||
SERIAL_ECHOLN(MSG_PID_BAD_EXTRUDER_NUM);
|
SERIAL_ECHOLN(MSG_PID_BAD_EXTRUDER_NUM);
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user