How to read or write via I2C with slave 16 bits register adress
How can i modify this part of code to can send the register address of 16 bits /* Implementation of I2C read for 16-bit values */ int32_t mlx90632_i2c_read(uint16_t Reg, uint16_t *value) { uint8_t data[2]; int32_t ret; ret = I2C_TxRx1(MLX_I2C_Adre...