#pragma once #include // declares configUSE_TRACE_FACILITY #include namespace Pinetime { namespace System { class SystemMonitor { public: void Process(); #if configUSE_TRACE_FACILITY == 1 private: mutable TickType_t lastTick = 0; #endif }; } }