Searched refs:temp (Results 1 – 4 of 4) sorted by relevance
189 float temp = (float) (rawPressure - P_MIN_VAL_PDUS); in PDUS_convertPressureToFloat() local193 *presskPa = ((temp * 7.63f) / 1000000) - 0.1f; in PDUS_convertPressureToFloat()197 *presskPa = ((temp * 7.63f) / 100000) - 1.0f; in PDUS_convertPressureToFloat()201 *presskPa = ((temp * 7.63f) / 10000) - 10.0f; in PDUS_convertPressureToFloat()205 *presskPa = ((temp * 3.815f) / 1000); in PDUS_convertPressureToFloat()209 *presskPa = ((temp * 4.196f) / 100) - 100.0f; in PDUS_convertPressureToFloat()213 *presskPa = ((temp * 5.722f) / 100); in PDUS_convertPressureToFloat()
1111 int16_t temp; in HIDS_get_H0_T0_out() local1118 temp = (((int16_t) buffer) << 8); in HIDS_get_H0_T0_out()1125 hidsCalibrationData.H0_T0_out = temp | buffer; in HIDS_get_H0_T0_out()1138 int16_t temp; in HIDS_get_H1_T0_out() local1145 temp = (((int16_t) buffer) << 8); in HIDS_get_H1_T0_out()1152 hidsCalibrationData.H1_T0_out = temp | buffer; in HIDS_get_H1_T0_out()1203 int16_t temp; in HIDS_get_T0_OUT() local1210 temp = (((int16_t) buffer) << 8); in HIDS_get_T0_OUT()1217 hidsCalibrationData.T0_out = temp | buffer; in HIDS_get_T0_OUT()1230 int16_t temp; in HIDS_get_T1_OUT() local[all …]
121 uint8_t temp = meausurementCmd; in HIDS_Set_Measurement_Type() local122 status = HIDS_WriteData(sensorInterface, &temp, 1); in HIDS_Set_Measurement_Type()251 uint8_t temp = HIDS_SOFT_RESET; in HIDS_Reset() local252 status = HIDS_WriteData(sensorInterface, &temp, 1); in HIDS_Reset()
2241 uint8_t temp[2] = {0}; in ITDS_getRawTemperature12bit() local2243 if (WE_FAIL == ITDS_ReadReg(sensorInterface, ITDS_T_OUT_L_REG, 2, temp)) in ITDS_getRawTemperature12bit()2248 *temp12bit = (int16_t) (temp[1] << 8); in ITDS_getRawTemperature12bit()2249 *temp12bit |= (int16_t) temp[0]; in ITDS_getRawTemperature12bit()