Skip to content

Commit

Permalink
Fix recovery build: missing calendarManager
Browse files Browse the repository at this point in the history
  • Loading branch information
Zorvalt committed Mar 8, 2022
1 parent 8493f09 commit d60ec3d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions src/displayapp/DisplayAppRecovery.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 2 additions & 0 deletions src/displayapp/DisplayAppRecovery.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ namespace Pinetime {
class Settings;
class Battery;
class Ble;
class CalendarManager;
class DateTime;
class NotificationManager;
class HeartRateController;
Expand All @@ -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,
Expand Down

0 comments on commit d60ec3d

Please sign in to comment.