diff options
| author | Michele Bini <michele.bini@gmail.com> | 2022-03-26 01:19:51 (GMT) |
|---|---|---|
| committer | Michele Bini <michele.bini@gmail.com> | 2022-03-26 01:37:03 (GMT) |
| commit | 9acd3ff0f8d12d2e97095ac562cbff3c7e8647ac (patch) | |
| tree | 9d0e69a9ce4a38733cf1bdc5a150ecef5d73e8e2 /src/components/ble/NimbleController.cpp | |
| parent | 268ddbdc7622ab2a6b0490701064ffdde13fee51 (diff) | |
sans fs; sans settings persist
Diffstat (limited to 'src/components/ble/NimbleController.cpp')
| -rw-r--r-- | src/components/ble/NimbleController.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/components/ble/NimbleController.cpp b/src/components/ble/NimbleController.cpp index a1597e2..a5bc41b 100644 --- a/src/components/ble/NimbleController.cpp +++ b/src/components/ble/NimbleController.cpp @@ -18,7 +18,6 @@ #include "components/ble/BleController.h" #include "components/ble/NotificationManager.h" #include "components/datetime/DateTimeController.h" -#include "components/fs/FS.h" #include "systemtask/SystemTask.h" using namespace Pinetime::Controllers; @@ -30,14 +29,12 @@ NimbleController::NimbleController(Pinetime::System::SystemTask& systemTask, Battery& batteryController, Pinetime::Drivers::SpiNorFlash& spiNorFlash, HeartRateController& heartRateController, - MotionController& motionController, - FS& fs) + MotionController& motionController) : systemTask {systemTask}, bleController {bleController}, dateTimeController {dateTimeController}, notificationManager {notificationManager}, spiNorFlash {spiNorFlash}, - fs {fs}, dfuService {systemTask, bleController, spiNorFlash}, currentTimeClient {dateTimeController}, @@ -48,7 +45,6 @@ NimbleController::NimbleController(Pinetime::System::SystemTask& systemTask, immediateAlertService {systemTask, notificationManager}, heartRateService {systemTask, heartRateController}, motionService {systemTask, motionController}, - fsService {systemTask, fs}, serviceDiscovery({¤tTimeClient, &alertNotificationClient}) { } @@ -93,7 +89,6 @@ void NimbleController::Init() { immediateAlertService.Init(); heartRateService.Init(); motionService.Init(); - fsService.Init(); int rc; rc = ble_hs_util_ensure_addr(0); |
