Lines Matching full:pressure
60 /* Set IIR filter for the temperature and pressure measurements */
73 /* Read calibration coefficients for temperature, humifity and pressure */
102 /* Pressure */ in read_calibration_coeffs()
103 TC_PRINT("Reading pressure calibration coefficients\n"); in read_calibration_coeffs()
119 /* Configure temperature, pressure and humidity measurements */
139 /* Pressure */ in configure_measurements()
176 /* Read the raw ADC pressure measurement result */
181 TC_PRINT("Reading ADC pressure\n"); in read_adc_pressure()
252 uint32_t pressure = 0; in ZTEST() local
285 pressure = calculate_pressure(read_adc_pressure(), t_fine, &cal_coeffs); in ZTEST()
289 TC_PRINT("Pressure: %d hPa\n", pressure / 100); in ZTEST()
302 zassert_true((pressure / 100 >= 700) && (pressure / 100 <= 1300), in ZTEST()
303 "Pressure is outside of the allowed range for labroatory use"); in ZTEST()