Hi there,
I was using app_uart_put to print out data from a nRF52, but now I need use printf to use AT commands more easily(more readable) instead the working around app_uart_put.
I found this post https://devzone.nordicsemi.com/f/nordic-q-a/18483/sdk-12-app_uart_put-is-working-but-printf-does-not a guy with a similar issue and he solved it enablig RETARGET_ENABLED 1 on sdk_config.h I did the same with no luck
what I have done:
added the header #include <stdio.h> on my file
included retarget.c to my project
enabled RETARGET_ENABLED 1 on sdk_config.h
printf("\r\ test: \r\n"); // <--- not working on my end
details:
SDK14
GCC compiler
##UPDATE
I solved it removing ##UPDATE NRF_LOG_USES_RTT =1 from processor definitions. is it still safe?