112 #define Int16FromBuf(_buf,_idx) ((int16_t)((_buf[_idx+1]<<8) | _buf[_idx]))
volatile uint8_t buf[I2C_BUF_LEN]
Transaction buffer With I2C_BUF_LEN number of bytes.
uint16_t len_r
Number of bytes to read/receive.
enum I2CTransactionType type
Transaction type.
enum I2CTransactionStatus status
Transaction status.
uint8_t slave_addr
Slave address.
uint8_t len_w
Number of bytes to write/transmit.
static bool i2c_submit(struct i2c_periph *p, struct i2c_transaction *t)
Submit a I2C transaction.
@ I2CTransSuccess
transaction successfully finished by I2C driver
@ I2CTransFailed
transaction failed
@ I2CTransDone
transaction set to done by user level
@ I2CTransTx
transmit only transaction
@ I2CTransTxRx
transmit and receive transaction
static void lsm6_set_default_config(struct Lsm6Config *c)
void lsm6_i2c_read(struct Lsm6_I2c *lsm)
void lsm6_i2c_start_configure(struct Lsm6_I2c *lsm)
static void lsm6_i2c_send_config(struct Lsm6_I2c *lsm)
void lsm6_i2c_init(struct Lsm6_I2c *lsm, struct i2c_periph *i2c_p, uint8_t addr)
static void lsm6_i2c_tx_reg(struct Lsm6_I2c *lsm, uint8_t reg, uint8_t val)
void lsm6_i2c_event(struct Lsm6_I2c *lsm)
#define Int16FromBuf(_buf, _idx)
Driver for the accelerometer and gyrometer LSM6DS33.
union Lsm6_I2c::@338 data_g
volatile bool data_available
data ready flag
enum Lsm6ConfStatus init_status
init status
struct i2c_transaction i2c_trans
struct i2c_periph * i2c_p
union Lsm6_I2c::@337 data_xl
bool initialized
config done flag
#define LSM6_REG_OUTX_L_G
#define LSM6_REG_ORIENT_CFG_G
#define LSM6_REG_CTRL1_XL
unsigned char uint8_t
Typedef defining 8 bit unsigned char type.