Fix CHAMBER_MAXTEMP security margin (#16600)
This commit is contained in:
committed by
Scott Lahteine
parent
d9cdb4ae19
commit
ef8f829513
@ -711,7 +711,7 @@ class Temperature {
|
||||
static void setTargetChamber(const int16_t celsius) {
|
||||
temp_chamber.target =
|
||||
#ifdef CHAMBER_MAXTEMP
|
||||
_MIN(celsius, CHAMBER_MAXTEMP)
|
||||
_MIN(celsius, CHAMBER_MAXTEMP - 10)
|
||||
#else
|
||||
celsius
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user