diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index a56bcfd13c..4620a99d42 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -570,6 +570,8 @@ list(APPEND RECOVERY_SOURCE_FILES components/ble/NavigationService.cpp components/ble/HeartRateService.cpp components/ble/MotionService.cpp + components/ble/CalendarService.cpp + components/calendar/CalendarManager.cpp components/firmwarevalidator/FirmwareValidator.cpp components/settings/Settings.cpp components/timer/TimerController.cpp diff --git a/src/displayapp/DisplayAppRecovery.cpp b/src/displayapp/DisplayAppRecovery.cpp index 9d6eb22f68..acd5fc343c 100644 --- a/src/displayapp/DisplayAppRecovery.cpp +++ b/src/displayapp/DisplayAppRecovery.cpp @@ -14,6 +14,7 @@ DisplayApp::DisplayApp(Drivers::St7789& lcd, Drivers::Cst816S& touchPanel, Controllers::Battery& batteryController, Controllers::Ble& bleController, + Controllers::CalendarManager& calendarManager, Controllers::DateTime& dateTimeController, Drivers::WatchdogView& watchdog, Pinetime::Controllers::NotificationManager& notificationManager, diff --git a/src/displayapp/DisplayAppRecovery.h b/src/displayapp/DisplayAppRecovery.h index 61f1c9bf5c..c8defd9e65 100644 --- a/src/displayapp/DisplayAppRecovery.h +++ b/src/displayapp/DisplayAppRecovery.h @@ -26,6 +26,7 @@ namespace Pinetime { class Settings; class Battery; class Ble; + class CalendarManager; class DateTime; class NotificationManager; class HeartRateController; @@ -49,6 +50,7 @@ namespace Pinetime { Drivers::Cst816S&, Controllers::Battery& batteryController, Controllers::Ble& bleController, + Controllers::CalendarManager& calendarManager, Controllers::DateTime& dateTimeController, Drivers::WatchdogView& watchdog, Pinetime::Controllers::NotificationManager& notificationManager,