-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Timer App #355
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Timer App #355
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
63484f1
built timer app
Raupinger 807a19d
Style improvements
Raupinger f370dc9
making sure buttons stay hidden when the app is reopened and reappear…
Raupinger 0a680a4
more sensible calculations of time deltas. eliminated that mysterious…
Raupinger f09f894
changing the timer icon
Raupinger File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,64 @@ | ||
| // | ||
| // Created by florian on 16.05.21. | ||
| // | ||
|
|
||
| #include "TimerController.h" | ||
| #include "systemtask/SystemTask.h" | ||
| #include "app_timer.h" | ||
| #include "task.h" | ||
|
|
||
| using namespace Pinetime::Controllers; | ||
|
|
||
|
|
||
| APP_TIMER_DEF(timerAppTimer); | ||
|
|
||
|
|
||
| TimerController::TimerController(System::SystemTask& systemTask) : systemTask{systemTask} { | ||
| } | ||
|
|
||
|
|
||
Raupinger marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| void TimerController::Init() { | ||
| app_timer_create(&timerAppTimer, APP_TIMER_MODE_SINGLE_SHOT, timerEnd); | ||
|
|
||
| } | ||
|
|
||
| void TimerController::StartTimer(uint32_t duration) { | ||
| app_timer_stop(timerAppTimer); | ||
| auto currentTicks = xTaskGetTickCount(); | ||
| app_timer_start(timerAppTimer, APP_TIMER_TICKS(duration), this); | ||
| endTicks = currentTicks + APP_TIMER_TICKS(duration); | ||
| timerRunning = true; | ||
| } | ||
|
|
||
| uint32_t TimerController::GetTimeRemaining() { | ||
| if (!timerRunning) { | ||
| return 0; | ||
| } | ||
| auto currentTicks = xTaskGetTickCount(); | ||
|
|
||
| TickType_t deltaTicks = 0; | ||
| if (currentTicks > endTicks) { | ||
| deltaTicks = 0xffffffff - currentTicks; | ||
| deltaTicks += (endTicks + 1); | ||
| } else { | ||
| deltaTicks = endTicks - currentTicks; | ||
| } | ||
|
|
||
| return (static_cast<TickType_t>(deltaTicks) / static_cast<TickType_t>(configTICK_RATE_HZ)) * 1000; | ||
| } | ||
|
|
||
| void TimerController::timerEnd(void* p_context) { | ||
|
|
||
| auto* controller = static_cast<Controllers::TimerController*> (p_context); | ||
| controller->timerRunning = false; | ||
| controller->systemTask.PushMessage(System::SystemTask::Messages::OnTimerDone); | ||
| } | ||
|
|
||
| void TimerController::StopTimer() { | ||
| app_timer_stop(timerAppTimer); | ||
| timerRunning = false; | ||
| } | ||
|
|
||
| bool TimerController::IsRunning() { | ||
| return timerRunning; | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -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; | ||
| }; | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.