Hello,
is the logging module thread-safe?
Do I have to use a mutex when logging from a lot of tasks when using FreeRTOS or is the logging module thread-safe and I do not have to do this?
Hello,
is the logging module thread-safe?
Do I have to use a mutex when logging from a lot of tasks when using FreeRTOS or is the logging module thread-safe and I do not have to do this?
if nrf_mtx or sd_nvic_critical_region_enter or __disable_irq is not used in the driver you are using, then it is not being tested in multi thread scenario. It is then always best to assume that the application has to implement their own thread-safe mechanism for accessing any driver/libraries API in different thread contexts.