summaryrefslogtreecommitdiff
path: root/src/components/timer/TimerController.h
diff options
context:
space:
mode:
authorMichele Bini <michele.bini@gmail.com>2022-03-25 02:56:04 (GMT)
committerMichele Bini <michele.bini@gmail.com>2022-03-25 03:20:18 (GMT)
commitac8bc2a0a0662b19ee6c286f105dac20a375a9f4 (patch)
tree55b6d51236a65d7be871cb369f0c1d373bde3dae /src/components/timer/TimerController.h
parent0dcdc37ab00fbc73932df94ec67f39421c266a6d (diff)
Remove stopwatch and countdown timer
Diffstat (limited to 'src/components/timer/TimerController.h')
-rw-r--r--src/components/timer/TimerController.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/components/timer/TimerController.h b/src/components/timer/TimerController.h
deleted file mode 100644
index fa7bc90..0000000
--- a/src/components/timer/TimerController.h
+++ /dev/null
@@ -1,37 +0,0 @@
-#pragma once
-
-#include <cstdint>
-#include "app_timer.h"
-#include "portmacro_cmsis.h"
-
-namespace Pinetime {
- namespace System {
- class SystemTask;
- }
- namespace Controllers {
-
- class TimerController {
- public:
- TimerController() = default;
-
- void Init();
-
- void StartTimer(uint32_t duration);
-
- void StopTimer();
-
- uint32_t GetTimeRemaining();
-
- bool IsRunning();
-
- void OnTimerEnd();
-
- void Register(System::SystemTask* systemTask);
-
- private:
- System::SystemTask* systemTask = nullptr;
- TickType_t endTicks;
- bool timerRunning = false;
- };
- }
-} \ No newline at end of file