Searched refs:bmi08x_gyro_transceive (Results 1 – 1 of 1) sorted by relevance
/Zephyr-latest/drivers/sensor/bosch/bmi08x/ |
D | bmi08x_gyro.c | 93 static int bmi08x_gyro_transceive(const struct device *dev, uint8_t reg, bool write, void *data, in bmi08x_gyro_transceive() function 103 return bmi08x_gyro_transceive(dev, reg_addr | BIT(7), false, data, len); in bmi08x_gyro_read() 108 return bmi08x_gyro_transceive(dev, reg_addr | BIT(7), false, byte, 1); in bmi08x_gyro_byte_read() 113 return bmi08x_gyro_transceive(dev, reg_addr & 0x7F, true, &byte, 1); in bmi08x_gyro_byte_write() 120 return bmi08x_gyro_transceive(dev, reg_addr & 0x7F, true, tx_word, 2); in bmi08x_gyro_word_write()
|