diff options
| author | JF <JF002@users.noreply.github.com> | 2021-12-11 15:09:56 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-11 15:09:56 (GMT) |
| commit | bccd77d5c9286223c29c037ec88d8f92ba8e91ed (patch) | |
| tree | 0c4699aa138f8b651b92a0eec54c2c40ea05d9cc /src/components/ble/NimbleController.cpp | |
| parent | 42a5cdb5b776c2cdeb08a8c6f26606282a809178 (diff) | |
| parent | 1470489e7b14fdfe4871cdc714c4a3c98917c4bb (diff) | |
Merge pull request #756 from geekbozu/BLE_FS
BLE FS Using adafruits Simple (not fast) BLE FS Api
Diffstat (limited to 'src/components/ble/NimbleController.cpp')
| -rw-r--r-- | src/components/ble/NimbleController.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/components/ble/NimbleController.cpp b/src/components/ble/NimbleController.cpp index acf4f94..3bf1ec8 100644 --- a/src/components/ble/NimbleController.cpp +++ b/src/components/ble/NimbleController.cpp @@ -30,7 +30,7 @@ NimbleController::NimbleController(Pinetime::System::SystemTask& systemTask, Pinetime::Drivers::SpiNorFlash& spiNorFlash, Controllers::HeartRateController& heartRateController, Controllers::MotionController& motionController, - Pinetime::Controllers::FS& fs) + Controllers::FS& fs) : systemTask {systemTask}, bleController {bleController}, dateTimeController {dateTimeController}, @@ -50,6 +50,7 @@ NimbleController::NimbleController(Pinetime::System::SystemTask& systemTask, immediateAlertService {systemTask, notificationManager}, heartRateService {systemTask, heartRateController}, motionService {systemTask, motionController}, + fsService {systemTask, fs}, serviceDiscovery({¤tTimeClient, &alertNotificationClient}) { } @@ -97,6 +98,7 @@ void NimbleController::Init() { immediateAlertService.Init(); heartRateService.Init(); motionService.Init(); + fsService.Init(); int rc; rc = ble_hs_util_ensure_addr(0); |
