summaryrefslogtreecommitdiff
path: root/src/components/ble
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/ble')
-rw-r--r--src/components/ble/NimbleController.cpp7
-rw-r--r--src/components/ble/NimbleController.h1
2 files changed, 3 insertions, 5 deletions
diff --git a/src/components/ble/NimbleController.cpp b/src/components/ble/NimbleController.cpp
index 01230661..3bf1ec80 100644
--- a/src/components/ble/NimbleController.cpp
+++ b/src/components/ble/NimbleController.cpp
@@ -49,9 +49,8 @@ NimbleController::NimbleController(Pinetime::System::SystemTask& systemTask,
batteryInformationService {batteryController},
immediateAlertService {systemTask, notificationManager},
heartRateService {systemTask, heartRateController},
- motionService{systemTask, motionController},
- fs {fs},
- fsService {systemTask,fs},
+ motionService {systemTask, motionController},
+ fsService {systemTask, fs},
serviceDiscovery({&currentTimeClient, &alertNotificationClient}) {
}
@@ -100,7 +99,7 @@ void NimbleController::Init() {
heartRateService.Init();
motionService.Init();
fsService.Init();
-
+
int rc;
rc = ble_hs_util_ensure_addr(0);
ASSERT(rc == 0);
diff --git a/src/components/ble/NimbleController.h b/src/components/ble/NimbleController.h
index 14749b8d..7a387037 100644
--- a/src/components/ble/NimbleController.h
+++ b/src/components/ble/NimbleController.h
@@ -111,7 +111,6 @@ namespace Pinetime {
HeartRateService heartRateService;
MotionService motionService;
ServiceDiscovery serviceDiscovery;
- FS fs;
FSService fsService;
uint8_t addrType;