Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MHP30: Re-tuning PID #1961

Draft
wants to merge 11 commits into
base: dev
Choose a base branch
from
Prev Previous commit
Next Next commit
removing thermal runaway
tomasrojasc authored and Ralim committed Nov 14, 2024

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
commit ba58d95adb62f61a2d0ff711f7db8a2d71058406
12 changes: 6 additions & 6 deletions source/Core/Threads/UI/logic/Soldering.cpp
Original file line number Diff line number Diff line change
@@ -163,11 +163,11 @@ OperatingMode gui_solderingMode(const ButtonState buttons, guiContext *cxt) {
return OperatingMode::Sleeping;
}

if (heaterThermalRunaway) {
currentTempTargetDegC = 0; // heater control off
heaterThermalRunaway = false;
cxt->transitionMode = TransitionAnimation::Right;
return OperatingMode::ThermalRunaway;
}
// if (heaterThermalRunaway) {
// currentTempTargetDegC = 0; // heater control off
// heaterThermalRunaway = false;
// cxt->transitionMode = TransitionAnimation::Right;
// return OperatingMode::ThermalRunaway;
// }
return handleSolderingButtons(buttons, cxt);
}