diff options
| author | Adam Pigg <adam@piggz.co.uk> | 2020-05-04 21:43:51 +0100 |
|---|---|---|
| committer | Adam Pigg <adam@piggz.co.uk> | 2020-05-05 20:58:15 +0100 |
| commit | 206bdbf5eb94ac967284862b5d7a270ed50195db (patch) | |
| tree | 4a7faae0ea7530c6a217a8ba8c94ea205bb6a62d /src/Components/Ble/NimbleController.cpp | |
| parent | d33be52bc9cec10e530e1390f1cf812c12cd830e (diff) | |
Move PinetimeService to CurrentTimeService witha view to implement CTS
for time handling
Diffstat (limited to 'src/Components/Ble/NimbleController.cpp')
| -rw-r--r-- | src/Components/Ble/NimbleController.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Components/Ble/NimbleController.cpp b/src/Components/Ble/NimbleController.cpp index eb765b80..826d255b 100644 --- a/src/Components/Ble/NimbleController.cpp +++ b/src/Components/Ble/NimbleController.cpp @@ -32,7 +32,7 @@ NimbleController::NimbleController(Pinetime::System::SystemTask& systemTask, currentTimeClient{dateTimeController}, alertNotificationClient{systemTask, notificationManager}, anService{systemTask, notificationManager}, - pinetimeService{dateTimeController} { + currentTimeService{dateTimeController} { } @@ -76,7 +76,7 @@ void NimbleController::Init() { deviceInformationService.Init(); currentTimeClient.Init(); - pinetimeService.Init(); + currentTimeService.Init(); anService.Init(); |
