I have a list of characters and trying to put them in a string.
char line[13]; /* Line buffer */
NRF_LOG_INFO("Playlist : %c", line[0]); this works displaying 1 character at a time
NRF_LOG_INFO("Playlist : %s", line); does not work displaying the 13 character as a string
What I am needing to do is create an array that has about 1000 x string(char(13)) and be able to read it back.
none of the string functions work I assume these are more c++
Thanks