summaryrefslogtreecommitdiff
path: root/src/components/timer/TimerController.h
diff options
context:
space:
mode:
authorKieran Cawthray <kieranc@gmail.com>2021-05-21 14:34:25 +0200
committerKieran Cawthray <kieranc@gmail.com>2021-05-21 14:34:25 +0200
commit565601ef5060cd4372be9e5bab130aff64f12223 (patch)
tree5f5156132be07cdb151ae56dca6c9e3cab259e32 /src/components/timer/TimerController.h
parent5c413016a7b9e78040fb8e5b48cd37b7963362df (diff)
parentf88c0f41fac506cc55e026cc67d1d5bce4669d31 (diff)
Merge remote-tracking branch 'upstream/develop' into pinetimestyle
Diffstat (limited to 'src/components/timer/TimerController.h')
-rw-r--r--src/components/timer/TimerController.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/components/timer/TimerController.h b/src/components/timer/TimerController.h
new file mode 100644
index 00000000..5a0b293e
--- /dev/null
+++ b/src/components/timer/TimerController.h
@@ -0,0 +1,36 @@
+#pragma once
+
+#include <cstdint>
+#include "app_timer.h"
+#include "portmacro_cmsis.h"
+
+namespace Pinetime {
+ namespace System {
+ class SystemTask;
+ }
+ namespace Controllers {
+
+ class TimerController {
+ public:
+ TimerController(Pinetime::System::SystemTask& systemTask);
+
+ void Init();
+
+ void StartTimer(uint32_t duration);
+
+ void StopTimer();
+
+ uint32_t GetTimeRemaining();
+
+ bool IsRunning();
+
+ private:
+ System::SystemTask& systemTask;
+
+ static void timerEnd(void* p_context);
+
+ TickType_t endTicks;
+ bool timerRunning = false;
+ };
+ }
+} \ No newline at end of file