2019-11-17 19:47:04 +00:00
|
|
|
#include <libraries/log/nrf_log_ctrl.h>
|
|
|
|
#include <libraries/log/nrf_log_default_backends.h>
|
|
|
|
#include <FreeRTOS.h>
|
|
|
|
#include <task.h>
|
|
|
|
#include <libraries/log/nrf_log.h>
|
|
|
|
#include "NrfLogger.h"
|
|
|
|
|
|
|
|
using namespace Pinetime::Logging;
|
|
|
|
|
|
|
|
void NrfLogger::Init() {
|
|
|
|
auto result = NRF_LOG_INIT(nullptr);
|
|
|
|
APP_ERROR_CHECK(result);
|
|
|
|
|
|
|
|
NRF_LOG_DEFAULT_BACKENDS_INIT();
|
|
|
|
|
2020-07-02 19:38:52 +00:00
|
|
|
if (pdPASS != xTaskCreate(NrfLogger::Process, "LOGGER", 200, this, 0, &m_logger_thread))
|
2019-11-17 19:47:04 +00:00
|
|
|
APP_ERROR_HANDLER(NRF_ERROR_NO_MEM);
|
|
|
|
}
|
|
|
|
|
|
|
|
void NrfLogger::Process(void*) {
|
|
|
|
NRF_LOG_INFO("Logger task started!");
|
|
|
|
while (1) {
|
|
|
|
NRF_LOG_FLUSH();
|
2020-01-05 10:09:07 +00:00
|
|
|
vTaskDelay(100); // Not good for power consumption, it will wake up every 100ms...
|
2019-11-17 19:47:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void NrfLogger::Resume() {
|
|
|
|
vTaskResume(m_logger_thread);
|
|
|
|
}
|
|
|
|
|
|
|
|
|