Searched refs:sc_cal_blob (Results 1 – 2 of 2) sorted by relevance
239 sc->sc_cal_blob.dig_T1 = (uint16_t)b[1] << 8; in bmx280_store_raw_blob_tp()240 sc->sc_cal_blob.dig_T1 = sc->sc_cal_blob.dig_T1 | (uint16_t)b[0]; in bmx280_store_raw_blob_tp()241 sc->sc_cal_blob.dig_T2 = (int16_t)b[3] << 8; in bmx280_store_raw_blob_tp()242 sc->sc_cal_blob.dig_T2 = sc->sc_cal_blob.dig_T2 | (int16_t)b[2]; in bmx280_store_raw_blob_tp()243 sc->sc_cal_blob.dig_T3 = (int16_t)b[5] << 8; in bmx280_store_raw_blob_tp()244 sc->sc_cal_blob.dig_T3 = sc->sc_cal_blob.dig_T3 | (int16_t)b[4]; in bmx280_store_raw_blob_tp()246 sc->sc_cal_blob.dig_P1 = (uint16_t)b[7] << 8; in bmx280_store_raw_blob_tp()247 sc->sc_cal_blob.dig_P1 = sc->sc_cal_blob.dig_P1 | (uint16_t)b[6]; in bmx280_store_raw_blob_tp()248 sc->sc_cal_blob.dig_P2 = (int16_t)b[9] << 8; in bmx280_store_raw_blob_tp()249 sc->sc_cal_blob.dig_P2 = sc->sc_cal_blob.dig_P2 | (int16_t)b[8]; in bmx280_store_raw_blob_tp()[all …]
60 struct bmx280_calibration_blob sc_cal_blob; member