-
-
Notifications
You must be signed in to change notification settings - Fork 983
/
Copy pathTimer.cpp
43 lines (36 loc) · 1.4 KB
/
Timer.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#include "components/timer/Timer.h"
using namespace Pinetime::Controllers;
Timer::Timer(void* const timerData, TimerCallbackFunction_t timerCallbackFunction) {
timer = xTimerCreate("Timer", 1, pdFALSE, timerData, timerCallbackFunction);
}
void Timer::StartTimer(std::chrono::milliseconds duration) {
timerOverflowIntervals = 0;
if (duration.count() > maxTimerMS) {
timerOverflowIntervals = duration.count() / maxTimerMS;
uint32_t remainingMS = duration.count() % maxTimerMS;
uint8_t leftoverMinutes = remainingMS / 60 / 1000;
uint8_t leftoverSeconds = (remainingMS % (60 * 1000)) / 1000;
if (leftoverMinutes == 0 && leftoverSeconds == 0) {
leftoverMinutes = 59;
leftoverSeconds = 60;
timerOverflowIntervals--;
}
xTimerChangePeriod(timer, pdMS_TO_TICKS((leftoverMinutes * 60 * 1000) + (leftoverSeconds * 1000)), 0);
} else {
xTimerChangePeriod(timer, pdMS_TO_TICKS(duration.count()), 0);
}
xTimerStart(timer, 0);
}
std::chrono::milliseconds Timer::GetTimeRemaining() {
if (IsRunning()) {
TickType_t remainingTime = xTimerGetExpiryTime(timer) - xTaskGetTickCount();
return std::chrono::milliseconds((remainingTime * 1000 / configTICK_RATE_HZ) + (timerOverflowIntervals * maxTimerMS));
}
return std::chrono::milliseconds(0);
}
void Timer::StopTimer() {
xTimerStop(timer, 0);
}
bool Timer::IsRunning() {
return (xTimerIsTimerActive(timer) == pdTRUE);
}