Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of nRF51822 by
Revision 265:04673a322cf9, committed 2015-06-19
- Comitter:
- rgrover1
- Date:
- Fri Jun 19 15:55:24 2015 +0100
- Parent:
- 264:5533ac0adf4b
- Child:
- 266:372234aa31e9
- Commit message:
- Synchronized with git rev 17eb78c3
Author: Rohit Grover
an initial implementation for connect()
Changed in this revision
| nRF51Gap.cpp | Show annotated file Show diff for this revision Revisions of this file |
| nRF51Gap.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/nRF51Gap.cpp Fri Jun 19 15:55:24 2015 +0100
+++ b/nRF51Gap.cpp Fri Jun 19 15:55:24 2015 +0100
@@ -206,6 +206,33 @@
return BLE_ERROR_NONE;
}
+ble_error_t nRF51Gap::connect(const Address_t peerAddr, Gap::AddressType_t peerAddrType, const GapScanningParams &scanParamsIn)
+{
+ ble_gap_addr_t addr;
+ addr.addr_type = peerAddrType;
+ memcpy(addr.addr, peerAddr, Gap::ADDR_LEN);
+
+ ble_gap_scan_params_t scanParams = {
+ .active = 0, /**< If 1, perform active scanning (scan requests). */
+ .selective = 0, /**< If 1, ignore unknown devices (non whitelisted). */
+ .p_whitelist = NULL, /**< Pointer to whitelist, NULL if none is given. */
+ .interval = scanParamsIn.getInterval(), /**< Scan interval between 0x0004 and 0x4000 in 0.625ms units (2.5ms to 10.24s). */
+ .window = scanParamsIn.getWindow(), /**< Scan window between 0x0004 and 0x4000 in 0.625ms units (2.5ms to 10.24s). */
+ .timeout = scanParamsIn.getTimeout(), /**< Scan timeout between 0x0001 and 0xFFFF in seconds, 0x0000 disables timeout. */
+ };
+ ble_gap_conn_params_t connParams = {
+ .min_conn_interval = 30,
+ .max_conn_interval = 100,
+ .slave_latency = 0,
+ .conn_sup_timeout = 400,
+ };
+
+ printf("connect returns with %u\r\n", sd_ble_gap_connect(&addr, &scanParams, &connParams));
+
+ return BLE_ERROR_NONE;
+}
+
+
/**************************************************************************/
/*!
@brief Disconnects if we are connected to a central device
--- a/nRF51Gap.h Fri Jun 19 15:55:24 2015 +0100
+++ b/nRF51Gap.h Fri Jun 19 15:55:24 2015 +0100
@@ -51,6 +51,7 @@
virtual ble_error_t startAdvertising(const GapAdvertisingParams &);
virtual ble_error_t stopAdvertising(void);
+ virtual ble_error_t connect(const Address_t, Gap::AddressType_t peerAddrType, const GapScanningParams &scanParams);
virtual ble_error_t disconnect(DisconnectionReason_t reason);
virtual ble_error_t purgeAllBondingState(void) {return btle_purgeAllBondingState();}
