Resolved! Low Layer API for I2C Communication in Stm32L031
Hi, I have created a code snippet to communicate with I2C using LL API instead of HAL. The code is given below uint8_t temp[2]={0xF9,0x00}; while(LL_I2C_IsActiveFlag_BUSY(I2C1)); // Wait until the I2C bus is not busy LL_I2C_HandleTransfer(I2C1,...