diff options
| author | Riku Isokoski <riksu9000@gmail.com> | 2023-02-23 21:34:06 +0200 |
|---|---|---|
| committer | Riku Isokoski <riksu9000@gmail.com> | 2023-02-25 16:57:12 +0200 |
| commit | ff34cf196ef16d5c06278e45567015e0e06a8c48 (patch) | |
| tree | 397dc1e29930ed7e476b6f960c5ded813ef96ad7 /src/main.cpp | |
| parent | 26478d9006ea1ce92305c8995d2d2ac61d1964c4 (diff) | |
watchdog: Replace WatchdogView with const Watchdog
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index 6cb52a81..df8425ca 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -106,7 +106,6 @@ Pinetime::Controllers::MotorController motorController {}; Pinetime::Controllers::DateTime dateTimeController {settingsController}; Pinetime::Drivers::Watchdog watchdog; -Pinetime::Drivers::WatchdogView watchdogView(watchdog); Pinetime::Controllers::NotificationManager notificationManager; Pinetime::Controllers::MotionController motionController; Pinetime::Controllers::TimerController timerController; @@ -121,7 +120,7 @@ Pinetime::Applications::DisplayApp displayApp(lcd, batteryController, bleController, dateTimeController, - watchdogView, + watchdog, notificationManager, heartRateController, settingsController, |
