Lines Matching refs:thresholdHigh
104 static void updateThresholds(int16_t thresholdHigh, int16_t thresholdLow);
107 static void setTempUpperLimit(int16_t thresholdHigh);
211 static void setTempUpperLimit(int16_t thresholdHigh) { in setTempUpperLimit() argument
212 uint32_t temperatureCode = degreesToCode(thresholdHigh + DISTRIBUTION_OFFSET); in setTempUpperLimit()
216 currentThresholdHigh = thresholdHigh; in setTempUpperLimit()
278 notifyObject->thresholdHigh); in setNextThresholds()
319 currentTemperature >= notifyObject->thresholdHigh) { in walkNotifyList()
325 notifyObject->thresholdLow : notifyObject->thresholdHigh; in walkNotifyList()
343 static void updateThresholds(int16_t thresholdHigh, int16_t thresholdLow) { in updateThresholds() argument
344 if (thresholdHigh < currentThresholdHigh) { in updateThresholds()
345 setTempUpperLimit(thresholdHigh); in updateThresholds()
442 int16_t thresholdHigh, in Temperature_registerNotifyHigh() argument
449 notifyObject->thresholdHigh = thresholdHigh; in Temperature_registerNotifyHigh()
464 updateThresholds(notifyObject->thresholdHigh, notifyObject->thresholdLow); in Temperature_registerNotifyHigh()
482 notifyObject->thresholdHigh = INVALID_TEMPERATURE_MAX; in Temperature_registerNotifyLow()
497 updateThresholds(notifyObject->thresholdHigh, notifyObject->thresholdLow); in Temperature_registerNotifyLow()
508 int16_t thresholdHigh, in Temperature_registerNotifyRange() argument
516 notifyObject->thresholdHigh = thresholdHigh; in Temperature_registerNotifyRange()
531 updateThresholds(notifyObject->thresholdHigh, notifyObject->thresholdLow); in Temperature_registerNotifyRange()