/hal_wurthelektronik-latest/sensors/WeSensorsSDK/WSEN_HIDS_2525020210001_hal/ |
D | WSEN_HIDS_2525020210001_hal.c | 672 int8_t HIDS_getRawTemperature(WE_sensorInterface_t* sensorInterface, int16_t *rawTemp) in HIDS_getRawTemperature() argument 678 *rawTemp = 0; in HIDS_getRawTemperature() 682 *rawTemp = (int16_t) (buffer[1] << 8); in HIDS_getRawTemperature() 683 *rawTemp |= (int16_t) buffer[0]; in HIDS_getRawTemperature() 695 …_t HIDS_getRawValues(WE_sensorInterface_t* sensorInterface, int16_t *rawHumidity, int16_t *rawTemp) in HIDS_getRawValues() argument 702 *rawTemp = 0; in HIDS_getRawValues() 709 *rawTemp = (int16_t) (buffer[3] << 8); in HIDS_getRawValues() 710 *rawTemp |= (int16_t) buffer[2]; in HIDS_getRawValues() 803 int8_t HIDS_convertTemperature_float(WE_sensorInterface_t* sensorInterface, int16_t rawTemp, float … in HIDS_convertTemperature_float() argument 818 …*tempDegC = (float) (((int16_t) rawTemp - (int16_t) hidsCalibrationData.T0_out) * (float) ((int16_… in HIDS_convertTemperature_float() [all …]
|
D | WSEN_HIDS_2525020210001_hal.h | 285 int8_t HIDS_getRawTemperature(WE_sensorInterface_t* sensorInterface, int16_t *rawTemp); 286 …t HIDS_getRawValues(WE_sensorInterface_t* sensorInterface, int16_t *rawHumidity, int16_t *rawTemp); 293 …int8_t HIDS_convertTemperature_float(WE_sensorInterface_t* sensorInterface, int16_t rawTemp, float… 300 …int8_t HIDS_convertTemperature_int8(WE_sensorInterface_t* sensorInterface, int16_t rawTemp, int8_t… 306 …int8_t HIDS_convertTemperature_int16(WE_sensorInterface_t* sensorInterface, int16_t rawTemp, int16…
|
/hal_wurthelektronik-latest/sensors/WeSensorsSDK/WSEN_TIDS_2521020222501_hal/ |
D | WSEN_TIDS_2521020222501_hal.c | 502 int8_t TIDS_getRawTemperature(WE_sensorInterface_t* sensorInterface, int16_t *rawTemp) in TIDS_getRawTemperature() argument 516 *rawTemp = (int16_t)(tmp[1] << 8); in TIDS_getRawTemperature() 517 *rawTemp |= (int16_t)tmp[0]; in TIDS_getRawTemperature() 531 int16_t rawTemp = 0; in TIDS_getTemperature() local 532 if (WE_FAIL == TIDS_getRawTemperature(sensorInterface, &rawTemp)) in TIDS_getTemperature() 537 *tempDegC = (float) rawTemp; in TIDS_getTemperature()
|
D | WSEN_TIDS_2521020222501_hal.h | 171 int8_t TIDS_getRawTemperature(WE_sensorInterface_t* sensorInterface, int16_t *rawTemp);
|
/hal_wurthelektronik-latest/sensors/WeSensorsSDK/WSEN_PADS_2511020213301_hal/ |
D | WSEN_PADS_2511020213301_hal.c | 1761 int8_t PADS_getRawTemperature(WE_sensorInterface_t* sensorInterface, int16_t *rawTemp) in PADS_getRawTemperature() argument 1770 *rawTemp = (int16_t) (tmp[1] << 8); in PADS_getRawTemperature() 1771 *rawTemp |= (int16_t) tmp[0]; in PADS_getRawTemperature() 1814 …_getFifoRawTemperature(WE_sensorInterface_t* sensorInterface, uint8_t numSamples, int16_t *rawTemp) in PADS_getFifoRawTemperature() argument 1827 for (uint8_t i = 0; i < numSamples; i++, bufferPtr += 5, rawTemp++) in PADS_getFifoRawTemperature() 1829 *rawTemp = (int16_t) (bufferPtr[4] << 8); in PADS_getFifoRawTemperature() 1830 *rawTemp |= (int16_t) bufferPtr[3]; in PADS_getFifoRawTemperature() 1844 …lues(WE_sensorInterface_t* sensorInterface, uint8_t numSamples, int32_t *rawPres, int16_t *rawTemp) in PADS_getFifoRawValues() argument 1857 for (uint8_t i = 0; i < numSamples; i++, bufferPtr += 5, rawPres++, rawTemp++) in PADS_getFifoRawValues() 1864 *rawTemp = (int16_t) (bufferPtr[4] << 8); in PADS_getFifoRawValues() [all …]
|
D | WSEN_PADS_2511020213301_hal.h | 510 int8_t PADS_getRawTemperature(WE_sensorInterface_t* sensorInterface, int16_t *rawTemp); 513 …getFifoRawTemperature(WE_sensorInterface_t* sensorInterface, uint8_t numSamples, int16_t *rawTemp); 514 …ues(WE_sensorInterface_t* sensorInterface, uint8_t numSamples, int32_t *rawPres, int16_t *rawTemp);
|
/hal_wurthelektronik-latest/sensors/WeSensorsSDK/WSEN_PDUS_25131308XXX01_hal/ |
D | WSEN_PDUS_25131308XXX01_hal.c | 166 uint16_t rawTemp = 0; in PDUS_getPressureAndTemperature_float() local 168 if (WE_FAIL == PDUS_getRawPressureAndTemperature(sensorInterface, &rawPres, &rawTemp)) in PDUS_getPressureAndTemperature_float() 174 *tempDegC = (((float) (rawTemp - T_MIN_VAL_PDUS) * 4.272f) / 1000); in PDUS_getPressureAndTemperature_float()
|
/hal_wurthelektronik-latest/sensors/WeSensorsSDK/WSEN_ITDS_2533020201601_hal/ |
D | WSEN_ITDS_2533020201601_hal.c | 2266 int16_t rawTemp = 0; in ITDS_getTemperature12bit() local 2267 if (WE_SUCCESS == ITDS_getRawTemperature12bit(sensorInterface, &rawTemp)) in ITDS_getTemperature12bit() 2269 *tempDegC = (((float) rawTemp) / 16.0f) + 25.0f; in ITDS_getTemperature12bit()
|