aboutsummaryrefslogtreecommitdiffstats
path: root/src/systemtask/SystemMonitor.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Restrict debugging monitor to debug buildsmark90642024-09-141-1/+1
|
* Apply clang-format to all C++ filesFinlay Davidson2022-06-051-7/+8
|
* SystemMonitor: implement FreeRtosMonitor only if trace facility is setReinhold Gschweicher2022-03-081-0/+26
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.