Searched refs:thresholdLow (Results 1 – 8 of 8) sorted by relevance
| /hal_ti-latest/simplelink_lpf3/source/ti/drivers/batterymonitor/ |
| D | BatteryMonitorLPF3.c | 71 static void updateThresholds(uint16_t thresholdHigh, uint16_t thresholdLow); 73 static void setBatLowerLimit(uint16_t thresholdLow); 115 static void setBatLowerLimit(uint16_t thresholdLow) in setBatLowerLimit() argument 117 uint32_t voltageCode = millivoltsToCode(thresholdLow); in setBatLowerLimit() 121 currentThresholdLow = thresholdLow; in setBatLowerLimit() 198 nextThresholdLow = Math_MAX(nextThresholdLow, notifyObject->thresholdLow); in setNextThresholds() 237 … if (currentVoltage <= notifyObject->thresholdLow || currentVoltage >= notifyObject->thresholdHigh) in walkNotifyList() 243 … uint16_t threshold = (currentVoltage <= notifyObject->thresholdLow) ? notifyObject->thresholdLow in walkNotifyList() 259 static void updateThresholds(uint16_t thresholdHigh, uint16_t thresholdLow) in updateThresholds() argument 267 if (thresholdLow > currentThresholdLow) in updateThresholds() [all …]
|
| /hal_ti-latest/simplelink/source/ti/drivers/temperature/ |
| D | TemperatureCC26X2.c | 104 static void updateThresholds(int16_t thresholdHigh, int16_t thresholdLow); 106 static void setTempLowerLimit(int16_t thresholdLow); 200 static void setTempLowerLimit(int16_t thresholdLow) { in setTempLowerLimit() argument 201 uint32_t temperatureCode = degreesToCode(thresholdLow - DISTRIBUTION_OFFSET); in setTempLowerLimit() 205 currentThresholdLow = thresholdLow; in setTempLowerLimit() 280 notifyObject->thresholdLow); in setNextThresholds() 318 if (currentTemperature <= notifyObject->thresholdLow || in walkNotifyList() 324 int16_t threshold = (currentTemperature <= notifyObject->thresholdLow) ? in walkNotifyList() 325 notifyObject->thresholdLow : notifyObject->thresholdHigh; in walkNotifyList() 343 static void updateThresholds(int16_t thresholdHigh, int16_t thresholdLow) { in updateThresholds() argument [all …]
|
| /hal_ti-latest/simplelink_lpf3/source/ti/drivers/temperature/ |
| D | TemperatureLPF3.c | 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() [all …]
|
| /hal_ti-latest/simplelink_lpf3/source/ti/drivers/ |
| D | BatteryMonitor.h | 307 uint16_t thresholdLow; /*!< Low threshold in millivolts */ member 388 uint16_t thresholdLow, 426 uint16_t thresholdLow, 482 return notifyObject->thresholdLow; in BatteryMonitor_getThresholdLow() 506 uint16_t *thresholdLow) in BatteryMonitor_getThresholdRange() argument 509 *thresholdLow = notifyObject->thresholdLow; in BatteryMonitor_getThresholdRange()
|
| D | Temperature.c | 56 return notifyObject->thresholdLow; in Temperature_getThresholdLow() 62 …tThresholdRange(Temperature_NotifyObj *notifyObject, int16_t *thresholdHigh, int16_t *thresholdLow) in Temperature_getThresholdRange() argument 65 *thresholdLow = notifyObject->thresholdLow; in Temperature_getThresholdRange()
|
| D | Temperature.h | 326 int16_t thresholdLow; /*!< Low threshold in degrees C */ member 410 int16_t thresholdLow, 447 int16_t thresholdLow, 519 …ThresholdRange(Temperature_NotifyObj *notifyObject, int16_t *thresholdHigh, int16_t *thresholdLow);
|
| /hal_ti-latest/simplelink/source/ti/drivers/ |
| D | Temperature.c | 54 return notifyObject->thresholdLow; in Temperature_getThresholdLow() 62 int16_t *thresholdLow) { in Temperature_getThresholdRange() argument 64 *thresholdLow = notifyObject->thresholdLow; in Temperature_getThresholdRange()
|
| D | Temperature.h | 325 int16_t thresholdLow; /*!< Low threshold in degrees C */ member 407 int16_t thresholdLow, 444 int16_t thresholdLow, 519 int16_t *thresholdLow);
|