InfiniTime.git

ref: ccc8cee07a3a702b31ab3a0f2f93950f0d176198

src/systemtask/SystemMonitor.h


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
#pragma once
#include <FreeRTOS.h> // declares configUSE_TRACE_FACILITY
#include <task.h>

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