File tree Expand file tree Collapse file tree 2 files changed +174
-113
lines changed Expand file tree Collapse file tree 2 files changed +174
-113
lines changed Original file line number Diff line number Diff line change @@ -113,6 +113,16 @@ class GenericGap : public ::Gap,
113
113
*/
114
114
virtual ble_error_t stopScan ();
115
115
116
+ /* *
117
+ * @see Gap::connect
118
+ */
119
+ virtual ble_error_t connect (
120
+ const BLEProtocol::AddressBytes_t peerAddr,
121
+ PeerAddressType_t peerAddrType,
122
+ const ConnectionParams_t *connectionParams,
123
+ const GapScanningParams *scanParams
124
+ );
125
+
116
126
/* *
117
127
* @see Gap::connect
118
128
*/
@@ -295,11 +305,13 @@ class GenericGap : public ::Gap,
295
305
void processConnectionEvent (
296
306
Handle_t handle,
297
307
Role_t role,
298
- BLEProtocol::AddressType_t peerAddrType,
308
+ peer_address_type_t peerAddrType,
299
309
const BLEProtocol::AddressBytes_t peerAddr,
300
310
BLEProtocol::AddressType_t ownAddrType,
301
311
const BLEProtocol::AddressBytes_t ownAddr,
302
- const ConnectionParams_t *connectionParams
312
+ const ConnectionParams_t *connectionParams,
313
+ const uint8_t *peerResolvableAddr,
314
+ const uint8_t *localResolvableAddr
303
315
);
304
316
305
317
/* *
You can’t perform that action at this time.
0 commit comments