diff options
| author | Michele Bini <michele.bini@gmail.com> | 2022-04-21 14:06:42 (GMT) |
|---|---|---|
| committer | Michele Bini <michele.bini@gmail.com> | 2022-04-21 14:06:42 (GMT) |
| commit | 3744e655fa94cc2efece15c3196cf8b398354ca2 (patch) | |
| tree | 1040ff59e6f06fb901ba621856e28957c0b36589 /src/components | |
| parent | 9f062635af3548425102b976e26ebbdfa998d670 (diff) | |
| parent | 8ea7d77d1b1f476c890bf04b44ad9e2c858a4d1c (diff) | |
Merge branch 'rev22-develop' into edge
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/alarm/AlarmController.cpp | 3 | ||||
| -rw-r--r-- | src/components/ble/NimbleController.cpp | 1 | ||||
| -rw-r--r-- | src/components/ble/NimbleController.h | 1 |
3 files changed, 2 insertions, 3 deletions
diff --git a/src/components/alarm/AlarmController.cpp b/src/components/alarm/AlarmController.cpp index 4d20c51..cd011f6 100644 --- a/src/components/alarm/AlarmController.cpp +++ b/src/components/alarm/AlarmController.cpp @@ -67,7 +67,8 @@ void AlarmController::ScheduleAlarm() { auto now = dateTimeController.CurrentDateTime(); alarmTime = now; - time_t ttAlarmTime = std::chrono::system_clock::to_time_t(alarmTime); + time_t ttAlarmTime = std::chrono::system_clock::to_time_t( + std::chrono::time_point_cast<std::chrono::system_clock::duration>(alarmTime)); tm* tmAlarmTime = std::localtime(&ttAlarmTime); // If the time being set has already passed today,the alarm should be set for tomorrow diff --git a/src/components/ble/NimbleController.cpp b/src/components/ble/NimbleController.cpp index 4dee63e..ce54bb7 100644 --- a/src/components/ble/NimbleController.cpp +++ b/src/components/ble/NimbleController.cpp @@ -35,7 +35,6 @@ NimbleController::NimbleController(Pinetime::System::SystemTask& systemTask, : systemTask {systemTask}, bleController {bleController}, dateTimeController {dateTimeController}, - notificationManager {notificationManager}, spiNorFlash {spiNorFlash}, fs {fs}, dfuService {systemTask, bleController, spiNorFlash}, diff --git a/src/components/ble/NimbleController.h b/src/components/ble/NimbleController.h index ad19421..000231f 100644 --- a/src/components/ble/NimbleController.h +++ b/src/components/ble/NimbleController.h @@ -86,7 +86,6 @@ namespace Pinetime { Pinetime::System::SystemTask& systemTask; Ble& bleController; DateTime& dateTimeController; - NotificationManager& notificationManager; Pinetime::Drivers::SpiNorFlash& spiNorFlash; FS& fs; DfuService dfuService; |
