If I receive some string from BLE and I want to log it to RTT how do I do it?
I tried this:
char str[] = "NameX";
NRF_LOG_INFO("dev nm: %s",str);
but it can not be compiled - error is:
......\main.c(1455): error: #167: argument of type "char *" is incompatible with parameter of type "uint32_t"
I assume there shale be something simple how to log string...