Lines Matching refs:thresholdLow

99 static void updateThresholds(int16_t thresholdHigh, int16_t thresholdLow);
101 static void setTempLowerLimit(int16_t thresholdLow);
150 static void setTempLowerLimit(int16_t thresholdLow) in setTempLowerLimit() argument
152 uint32_t temperatureCode = degreesToCode(thresholdLow - DISTRIBUTION_OFFSET); in setTempLowerLimit()
156 currentThresholdLow = thresholdLow; in setTempLowerLimit()
233 nextThresholdLow = Math_MAX(nextThresholdLow, notifyObject->thresholdLow); in setNextThresholds()
273 …if (currentTemperature <= notifyObject->thresholdLow || currentTemperature >= notifyObject->thresh… in walkNotifyList()
279 …int16_t threshold = (currentTemperature <= notifyObject->thresholdLow) ? notifyObject->thresholdLow in walkNotifyList()
295 static void updateThresholds(int16_t thresholdHigh, int16_t thresholdLow) in updateThresholds() argument
303 if (thresholdLow > currentThresholdLow) in updateThresholds()
305 setTempLowerLimit(thresholdLow); in updateThresholds()
416 notifyObject->thresholdLow = INVALID_TEMPERATURE_MIN; in Temperature_registerNotifyHigh()
431 updateThresholds(notifyObject->thresholdHigh, notifyObject->thresholdLow); in Temperature_registerNotifyHigh()
442 int16_t thresholdLow, in Temperature_registerNotifyLow() argument
451 notifyObject->thresholdLow = thresholdLow; in Temperature_registerNotifyLow()
466 updateThresholds(notifyObject->thresholdHigh, notifyObject->thresholdLow); in Temperature_registerNotifyLow()
478 int16_t thresholdLow, in Temperature_registerNotifyRange() argument
487 notifyObject->thresholdLow = thresholdLow; in Temperature_registerNotifyRange()
502 updateThresholds(notifyObject->thresholdHigh, notifyObject->thresholdLow); in Temperature_registerNotifyRange()