Addind Delay between I2C Master to Slave Address Send and Data for Read Operation
Hello,
I am interfacing with a sensor via I2C, with my STM32G0 MCU as the master. The sensor (Panasonic SN-GCJA5 air particulate sensor) requires a 500us delay between the I2C address read byte, and the data being read from that register:

This is definitely an uncommon requirement, but here we are. To be clear, this is not clock stretching. It appears the device expects a hard coded delay for some kind of internal processes to complete before data is available. I have tried without the delay, and sure enough no data from the sensor is presented. I have found other forum posts that have similar questions, with no answer yet:
I have gone below the I2C's HAL to see if there are register level manipulations that can make this possible, but I don't see a way to do it. Anything below byte level reads and writes seems to be abstracted in hardware. However I am not an STM32 I2C expert. Does anyone know of a clean way of doing this?
Generating a bit-bang I2C software interface is not an option for this design.
Thank you.
