This commit is contained in:
Kieran Cawthray 2021-05-18 15:23:26 +02:00
parent 9ab298c09e
commit 378fa6b401
45 changed files with 101 additions and 865 deletions

View file

@ -12,9 +12,8 @@ void NrfLogger::Init() {
NRF_LOG_DEFAULT_BACKENDS_INIT();
if (pdPASS != xTaskCreate(NrfLogger::Process, "LOGGER", 200, this, 0, &m_logger_thread)) {
if (pdPASS != xTaskCreate(NrfLogger::Process, "LOGGER", 200, this, 0, &m_logger_thread))
APP_ERROR_HANDLER(NRF_ERROR_NO_MEM);
}
}
void NrfLogger::Process(void*) {
@ -22,7 +21,7 @@ void NrfLogger::Process(void*) {
// Suppress endless loop diagnostic
#pragma clang diagnostic push
#pragma ide diagnostic ignored "EndlessLoop"
while (true) {
while (1) {
NRF_LOG_FLUSH();
vTaskDelay(100); // Not good for power consumption, it will wake up every 100ms...
}