Hi,
When running FreeRTOS I'm not able to use the NRF logger module once the task scheduler has started.
I have a low priority task that flushes the logs but whenever the logger tries to perform a transfer it gets stuck on line 86 of nrf_log_backend_uart.c. From what I can see once the transmission ahs started m_xfer_done is never changed to true even though I can clearly see on the console that ti has received what is in the buffer. By using the debugger i can break out of this and this works but after a few logs performed like this it crashes with a hard fault.
What is the recommended method for logging within tasks when using FreeRTOS on a nordic semiconductor?
Thanks in advance