diff options
| author | Reinhold Gschweicher <pyro4hell@gmail.com> | 2022-01-27 22:10:59 (GMT) |
|---|---|---|
| committer | JF <JF002@users.noreply.github.com> | 2022-03-08 19:28:54 (GMT) |
| commit | 187d99c0f710cf4827a026f02e41ebbd2b1271e2 (patch) | |
| tree | a9b0ad6b065b70ba5be73db23cdd19414f64e88c /src/systemtask/SystemTask.h | |
| parent | 5fe5cee9ef76fdb57810a4434517ebc6442393fb (diff) | |
SystemMonitor: implement FreeRtosMonitor only if trace facility is set
Split SystemMonitor into h and cpp file and move the logging code of the
`Process` function into the cpp file.
Depending of the `configUSE_TRACE_FACILITY` define from
`src/FreeRTOSConfig.h` create either a "FreeRtosMonitor" or a
"DummyMonitor".
Make the `Process()` function non-const, as the FreeRtosMonitor changes
the member variable `lastTick`.
In `SystemTask.h` we then only need to use `SystemMonitor`, without
knowledge of the `configUSE_TRACE_FACILITY` define.
Diffstat (limited to 'src/systemtask/SystemTask.h')
| -rw-r--r-- | src/systemtask/SystemTask.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/systemtask/SystemTask.h b/src/systemtask/SystemTask.h index 517ed1a..c5b0379 100644 --- a/src/systemtask/SystemTask.h +++ b/src/systemtask/SystemTask.h @@ -148,11 +148,7 @@ namespace Pinetime { bool stepCounterMustBeReset = false; static constexpr TickType_t batteryMeasurementPeriod = pdMS_TO_TICKS(10 * 60 * 1000); -#if configUSE_TRACE_FACILITY == 1 - SystemMonitor<FreeRtosMonitor> monitor; -#else - SystemMonitor<DummyMonitor> monitor; -#endif + SystemMonitor monitor; }; } } |
