HAL_I2C_Mem_Read() put's out a write on the STM32G4?
Hello,
if I call the read function it sends a write on the I2C. What am I doing wrong?
Thanks a lot, Best Regards, Seppel
uint8_t i2cData[8U];
uint8_t i2cDevAdr = (0x53 << 1U);
HAL_I2C_Mem_Read (&hi2c2, i2cDevAdr , 0x00, 1U, i2cData, 1U, HAL_MAX_DELAY);

