diff --git a/src/displayapp/screens/StopWatch.cpp b/src/displayapp/screens/StopWatch.cpp index ff852beb69..9290d6af99 100644 --- a/src/displayapp/screens/StopWatch.cpp +++ b/src/displayapp/screens/StopWatch.cpp @@ -3,6 +3,8 @@ #include "displayapp/screens/Symbols.h" #include "displayapp/InfiniTimeTheme.h" +#include "systemtask/SystemTask.h" + using namespace Pinetime::Applications::Screens; namespace { @@ -34,7 +36,7 @@ namespace { constexpr TickType_t blinkInterval = pdMS_TO_TICKS(1000); } -StopWatch::StopWatch(System::SystemTask& systemTask) : wakeLock(systemTask) { +StopWatch::StopWatch() { static constexpr uint8_t btnWidth = 115; static constexpr uint8_t btnHeight = 80; btnPlayPause = lv_btn_create(lv_scr_act(), nullptr); @@ -134,7 +136,6 @@ void StopWatch::Start() { SetInterfaceRunning(); startTime = xTaskGetTickCount(); currentState = States::Running; - wakeLock.Lock(); } void StopWatch::Pause() { @@ -144,7 +145,6 @@ void StopWatch::Pause() { oldTimeElapsed = laps[lapsDone]; blinkTime = xTaskGetTickCount() + blinkInterval; currentState = States::Halted; - wakeLock.Release(); } void StopWatch::Refresh() { diff --git a/src/displayapp/screens/StopWatch.h b/src/displayapp/screens/StopWatch.h index 55a178dcbe..a84e4943d1 100644 --- a/src/displayapp/screens/StopWatch.h +++ b/src/displayapp/screens/StopWatch.h @@ -6,8 +6,6 @@ #include #include "portmacro_cmsis.h" -#include "systemtask/SystemTask.h" -#include "systemtask/WakeLock.h" #include "displayapp/apps/Apps.h" #include "displayapp/Controllers.h" #include "Symbols.h" @@ -27,7 +25,7 @@ namespace Pinetime { class StopWatch : public Screen { public: - explicit StopWatch(System::SystemTask& systemTask); + explicit StopWatch(); ~StopWatch() override; void Refresh() override; @@ -44,7 +42,6 @@ namespace Pinetime { void Start(); void Pause(); - Pinetime::System::WakeLock wakeLock; States currentState = States::Init; TickType_t startTime; TickType_t oldTimeElapsed = 0; @@ -67,7 +64,7 @@ namespace Pinetime { static constexpr const char* icon = Screens::Symbols::stopWatch; static Screens::Screen* Create(AppControllers& controllers) { - return new Screens::StopWatch(*controllers.systemTask); + return new Screens::StopWatch(); }; }; }