hi,
sdk 17.1.0
Can I call "NRF_LOG_INFO" API back to back ? Does it copy the contents of the buffer (var) to an internal buffer ?
For example, in the below code, does the second call "NRF_LOG_INFO" corrupt the buffer 'var' ?
uint8_t var[31];
//fill var[]
NRF_LOG_INFO("%s", var);
//changing var[] array
NRF_LOG_INFO("%s", var);