summaryrefslogtreecommitdiff
path: root/src/components/ble/NimbleController.h
diff options
context:
space:
mode:
authorMichele Bini <michele.bini@gmail.com>2022-03-26 01:19:51 (GMT)
committerMichele Bini <michele.bini@gmail.com>2022-03-26 01:37:03 (GMT)
commit9acd3ff0f8d12d2e97095ac562cbff3c7e8647ac (patch)
tree9d0e69a9ce4a38733cf1bdc5a150ecef5d73e8e2 /src/components/ble/NimbleController.h
parent268ddbdc7622ab2a6b0490701064ffdde13fee51 (diff)
sans fs; sans settings persist
Diffstat (limited to 'src/components/ble/NimbleController.h')
-rw-r--r--src/components/ble/NimbleController.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/components/ble/NimbleController.h b/src/components/ble/NimbleController.h
index dfa42f7..263d498 100644
--- a/src/components/ble/NimbleController.h
+++ b/src/components/ble/NimbleController.h
@@ -14,12 +14,10 @@
#include "components/ble/CurrentTimeService.h"
#include "components/ble/DeviceInformationService.h"
#include "components/ble/DfuService.h"
-#include "components/ble/FSService.h"
#include "components/ble/HeartRateService.h"
#include "components/ble/ImmediateAlertService.h"
#include "components/ble/ServiceDiscovery.h"
#include "components/ble/MotionService.h"
-#include "components/fs/FS.h"
namespace Pinetime {
namespace Drivers {
@@ -45,8 +43,7 @@ namespace Pinetime {
Battery& batteryController,
Pinetime::Drivers::SpiNorFlash& spiNorFlash,
HeartRateController& heartRateController,
- MotionController& motionController,
- FS& fs);
+ MotionController& motionController);
void Init();
void StartAdvertising();
int OnGAPEvent(ble_gap_event* event);
@@ -70,7 +67,6 @@ namespace Pinetime {
DateTime& dateTimeController;
NotificationManager& notificationManager;
Pinetime::Drivers::SpiNorFlash& spiNorFlash;
- FS& fs;
DfuService dfuService;
DeviceInformationService deviceInformationService;
@@ -82,7 +78,6 @@ namespace Pinetime {
ImmediateAlertService immediateAlertService;
HeartRateService heartRateService;
MotionService motionService;
- FSService fsService;
ServiceDiscovery serviceDiscovery;
uint8_t addrType;