summaryrefslogtreecommitdiff
path: root/src/components/ble/ServiceDiscovery.h
diff options
context:
space:
mode:
authorJF <jf@codingfield.com>2021-05-21 09:38:38 (GMT)
committerGitea <gitea@fake.local>2021-05-21 09:38:38 (GMT)
commitde69905c0647997091d9e385538c96de30be93e6 (patch)
tree4775001d808da520c93a7552da1bea80e7714a30 /src/components/ble/ServiceDiscovery.h
parenta80e782f267cd2424d22da23d809c0c6a8ff8761 (diff)
parent7c9513be8a3bf36fda5706cb0fb1bd6232d42ffd (diff)
Merge branch 'develop' of JF/PineTime into master
Diffstat (limited to 'src/components/ble/ServiceDiscovery.h')
-rw-r--r--src/components/ble/ServiceDiscovery.h17
1 files changed, 8 insertions, 9 deletions
diff --git a/src/components/ble/ServiceDiscovery.h b/src/components/ble/ServiceDiscovery.h
index 0b26bd1..fc3b38c 100644
--- a/src/components/ble/ServiceDiscovery.h
+++ b/src/components/ble/ServiceDiscovery.h
@@ -8,17 +8,16 @@ namespace Pinetime {
class BleClient;
class ServiceDiscovery {
- public:
- ServiceDiscovery(std::array<BleClient*, 2>&& bleClients);
+ public:
+ ServiceDiscovery(std::array<BleClient*, 2>&& bleClients);
- void StartDiscovery(uint16_t connectionHandle);
+ void StartDiscovery(uint16_t connectionHandle);
-
- private:
- BleClient** clientIterator;
- std::array<BleClient*, 2> clients;
- void OnServiceDiscovered(uint16_t connectionHandle);
- void DiscoverNextService(uint16_t connectionHandle);
+ private:
+ BleClient** clientIterator;
+ std::array<BleClient*, 2> clients;
+ void OnServiceDiscovered(uint16_t connectionHandle);
+ void DiscoverNextService(uint16_t connectionHandle);
};
}
}