Skip to content

Commit 1470489

Browse files
committed
Fix Failed rebase.
1 parent 0a0d1f2 commit 1470489

2 files changed

Lines changed: 3 additions & 5 deletions

File tree

src/components/ble/NimbleController.cpp

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,8 @@ NimbleController::NimbleController(Pinetime::System::SystemTask& systemTask,
4949
batteryInformationService {batteryController},
5050
immediateAlertService {systemTask, notificationManager},
5151
heartRateService {systemTask, heartRateController},
52-
motionService{systemTask, motionController},
53-
fs {fs},
54-
fsService {systemTask,fs},
52+
motionService {systemTask, motionController},
53+
fsService {systemTask, fs},
5554
serviceDiscovery({&currentTimeClient, &alertNotificationClient}) {
5655
}
5756

@@ -100,7 +99,7 @@ void NimbleController::Init() {
10099
heartRateService.Init();
101100
motionService.Init();
102101
fsService.Init();
103-
102+
104103
int rc;
105104
rc = ble_hs_util_ensure_addr(0);
106105
ASSERT(rc == 0);

src/components/ble/NimbleController.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@ namespace Pinetime {
111111
HeartRateService heartRateService;
112112
MotionService motionService;
113113
ServiceDiscovery serviceDiscovery;
114-
FS fs;
115114
FSService fsService;
116115

117116
uint8_t addrType;

0 commit comments

Comments
 (0)