Compare commits

...

2 Commits

Author SHA1 Message Date
InsanityAutomation 58f497023b Merge branch 'bugfix-2.1.x' into FixPIDMenus 2022-10-16 13:01:52 -04:00
InsanityAutomation 5bc856823f Update menu_advanced.cpp 2022-10-11 11:38:01 -04:00
+2 -2
View File
@@ -222,10 +222,10 @@ void menu_backlash();
void apply_PID_p(const int8_t e) {
switch (e) {
#if ENABLED(PIDTEMPBED)
case H_BED: thermalManager.temp_bed.pid.set_Ki(raw_Ki); break;
case H_BED: thermalManager.temp_bed.pid.set_Kp(raw_Kp); break;
#endif
#if ENABLED(PIDTEMPCHAMBER)
case H_CHAMBER: thermalManager.temp_chamber.pid.set_Ki(raw_Ki); break;
case H_CHAMBER: thermalManager.temp_chamber.pid.set_Kp(raw_Kp); break;
#endif
default:
#if ENABLED(PIDTEMP)