Lines Matching refs:t_fine
283 static int bme680_get_t_fine(struct bme680_data *data, s32 *t_fine) in bme680_get_t_fine() argument
292 *t_fine = bme680_calc_t_fine(data, adc_temp); in bme680_get_t_fine()
336 u32 adc_press, s32 t_fine) in bme680_compensate_press() argument
341 var1 = (t_fine >> 1) - 64000; in bme680_compensate_press()
401 u16 adc_humid, s32 t_fine) in bme680_compensate_humid() argument
406 temp_scaled = (t_fine * 5 + 128) >> 8; in bme680_compensate_humid()
672 s32 t_fine; in bme680_read_press() local
674 ret = bme680_get_t_fine(data, &t_fine); in bme680_read_press()
682 *val = bme680_compensate_press(data, adc_press, t_fine); in bme680_read_press()
692 s32 t_fine; in bme680_read_humid() local
694 ret = bme680_get_t_fine(data, &t_fine); in bme680_read_humid()
702 comp_humidity = bme680_compensate_humid(data, adc_humidity, t_fine); in bme680_read_humid()