Fix recovery build: missing calendarManager

This commit is contained in:
Zorvalt 2022-03-08 13:47:45 +01:00
parent b41d19ce20
commit 4a5cce71fa
3 changed files with 5 additions and 0 deletions

View File

@ -571,6 +571,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

View File

@ -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,

View File

@ -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,