Hello,
For my project I need to send raw data (without prefix or timestamps) along with system logs trough the same UART.
So far one possible solution is to use NRF_LOG_RAW_INFO, e.g.:
NRF_LOG_RAW_INFO("%c",0x61); // prints the ascii code of 'a' NRF_LOG_RAW_INFO("%c",0x62); // prints the ascii code of 'b'
The question is whether this will be efficient enough and is there any better way to accomplish the result.