Searched refs:out_h (Results 1 – 1 of 1) sorted by relevance
/Zephyr-latest/drivers/sensor/st/lsm9ds0_mfd/ |
D | lsm9ds0_mfd.c | 214 uint8_t out_l, out_h; in lsm9ds0_mfd_sample_fetch_accel() local 218 i2c_reg_read_byte_dt(&config->i2c, LSM9DS0_MFD_REG_OUT_X_H_A, &out_h) < 0) { in lsm9ds0_mfd_sample_fetch_accel() 224 ((uint16_t)(out_h) << 8)); in lsm9ds0_mfd_sample_fetch_accel() 229 i2c_reg_read_byte_dt(&config->i2c, LSM9DS0_MFD_REG_OUT_Y_H_A, &out_h) < 0) { in lsm9ds0_mfd_sample_fetch_accel() 235 ((uint16_t)(out_h) << 8)); in lsm9ds0_mfd_sample_fetch_accel() 240 i2c_reg_read_byte_dt(&config->i2c, LSM9DS0_MFD_REG_OUT_Z_H_A, &out_h) < 0) { in lsm9ds0_mfd_sample_fetch_accel() 246 ((uint16_t)(out_h) << 8)); in lsm9ds0_mfd_sample_fetch_accel() 262 uint8_t out_l, out_h; in lsm9ds0_mfd_sample_fetch_magn() local 265 i2c_reg_read_byte_dt(&config->i2c, LSM9DS0_MFD_REG_OUT_X_H_M, &out_h) < 0) { in lsm9ds0_mfd_sample_fetch_magn() 271 ((uint16_t)(out_h) << 8)); in lsm9ds0_mfd_sample_fetch_magn() [all …]
|