Question
What is the LL equivalent of HAL_I2C_Mem_Read?
Hi,
I found a tutorial for using a BME280 sensor with I2C in HAL (https://controllerstech.com/bme280-with-stm32/).
However, I need to use LL for it to fit into the rest of the program.
The main part I'm having an issue with is below as I can't find a command within LL that would easily replace it.
HAL_I2C_Mem_Read(BME280_I2C, BME280_ADDRESS, 0x88, 1, trimdata, 25, HAL_MAX_DELAY);Any help or links to good I2C LL tutorials would be greatly apprecaited.
