summaryrefslogtreecommitdiff
path: root/src/components/timer
diff options
context:
space:
mode:
authorMichele Bini <michele.bini@gmail.com>2022-04-20 17:45:20 (GMT)
committerMichele Bini <michele.bini@gmail.com>2022-04-20 17:45:20 (GMT)
commit822ec38fde294dfc2a19fd83fe463fc0d7b3ee2d (patch)
tree43e006a2890832c3778a4dbcc0920483ce63ed17 /src/components/timer
parentbe01602fcb6dc9cd91df702658c0b52da74023a9 (diff)
parentaca605d4fb4040cc80c1acf101023aa86e7694ba (diff)
Merge branch 'alarm-reliability-and-switch-to-freertos-timers' into rev22-develop
Diffstat (limited to 'src/components/timer')
-rw-r--r--src/components/timer/TimerController.cpp37
-rw-r--r--src/components/timer/TimerController.h18
2 files changed, 25 insertions, 30 deletions
diff --git a/src/components/timer/TimerController.cpp b/src/components/timer/TimerController.cpp
index 79e44d6..31635a5 100644
--- a/src/components/timer/TimerController.cpp
+++ b/src/components/timer/TimerController.cpp
@@ -4,32 +4,29 @@
#include "components/timer/TimerController.h"
#include "systemtask/SystemTask.h"
-#include "app_timer.h"
#include "task.h"
using namespace Pinetime::Controllers;
-
-APP_TIMER_DEF(timerAppTimer);
-
namespace {
- void TimerEnd(void* p_context) {
- auto* controller = static_cast<Pinetime::Controllers::TimerController*> (p_context);
- if(controller != nullptr)
- controller->OnTimerEnd();
+ void TimerEnd(TimerHandle_t xTimer) {
+ auto controller = static_cast<Pinetime::Controllers::TimerController*>(pvTimerGetTimerID(xTimer));
+ controller->OnTimerEnd();
}
}
-
-void TimerController::Init() {
- app_timer_create(&timerAppTimer, APP_TIMER_MODE_SINGLE_SHOT, TimerEnd);
+void TimerController::Init(System::SystemTask* systemTask) {
+ this->systemTask = systemTask;
+ timerAppTimer = xTimerCreate("timerAppTm", 1, pdFALSE, this, TimerEnd);
}
void TimerController::StartTimer(uint32_t duration) {
- app_timer_stop(timerAppTimer);
+ xTimerStop(timerAppTimer, 0);
auto currentTicks = xTaskGetTickCount();
- app_timer_start(timerAppTimer, APP_TIMER_TICKS(duration), this);
- endTicks = currentTicks + APP_TIMER_TICKS(duration);
+ TickType_t durationTicks = APP_TIMER_TICKS(duration);
+ xTimerChangePeriod(timerAppTimer, durationTicks, 0);
+ xTimerStart(timerAppTimer, 0);
+ endTicks = currentTicks + durationTicks;
timerRunning = true;
}
@@ -38,7 +35,7 @@ uint32_t TimerController::GetTimeRemaining() {
return 0;
}
auto currentTicks = xTaskGetTickCount();
-
+
TickType_t deltaTicks = 0;
if (currentTicks > endTicks) {
deltaTicks = 0xffffffff - currentTicks;
@@ -46,12 +43,12 @@ uint32_t TimerController::GetTimeRemaining() {
} else {
deltaTicks = endTicks - currentTicks;
}
-
+
return (static_cast<TickType_t>(deltaTicks) / static_cast<TickType_t>(configTICK_RATE_HZ)) * 1000;
}
void TimerController::StopTimer() {
- app_timer_stop(timerAppTimer);
+ xTimerStop(timerAppTimer, 0);
timerRunning = false;
}
@@ -60,10 +57,6 @@ bool TimerController::IsRunning() {
}
void TimerController::OnTimerEnd() {
timerRunning = false;
- if(systemTask != nullptr)
+ if (systemTask != nullptr)
systemTask->PushMessage(System::Messages::OnTimerDone);
}
-
-void TimerController::Register(Pinetime::System::SystemTask* systemTask) {
- this->systemTask = systemTask;
-}
diff --git a/src/components/timer/TimerController.h b/src/components/timer/TimerController.h
index fa7bc90..24d7150 100644
--- a/src/components/timer/TimerController.h
+++ b/src/components/timer/TimerController.h
@@ -1,5 +1,7 @@
#pragma once
+#include <FreeRTOS.h>
+#include <timers.h>
#include <cstdint>
#include "app_timer.h"
#include "portmacro_cmsis.h"
@@ -9,27 +11,27 @@ namespace Pinetime {
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);
+ protected:
+ friend class Pinetime::System::SystemTask;
+ void Init(System::SystemTask* systemTask);
private:
System::SystemTask* systemTask = nullptr;
+ TimerHandle_t timerAppTimer;
TickType_t endTicks;
bool timerRunning = false;
};