Hi Nordic,
I am writing a simple boot-loader, which is working fine without NRF_LOG module enabled. But if I enable the NRF_LOG module, the main app stops working when it is initializing the NRF_LOG again.
I cannot seem to find a way to de-initialize the NRF_LOG module after enabling it. Can you please help me to find a way to do that?
This is what I do to initialize the LOG module (besides enabling it in sdk_config):
int rc = NRF_LOG_INIT(NULL);
APP_ERROR_CHECK(rc);
NRF_LOG_DEFAULT_BACKENDS_INIT();