Is I2C HAL library for F4 series thread safe?
In my project, my MCU (F411) uses I2C HAL API routinely to read from a sensor device.
When some event happens, my interrupt handler will use I2C API to read from different register from that device; so my question is:
- Is HAL API thread safe? Although I don't use RTOS, there is possibility that my code may try to use I2C interface at the same time.
