No changes
Fork of nRF51822 by
Diff: source/nRF5xGap.h
- Revision:
- 565:cf03471a4ec4
- Parent:
- 563:9c4b96f7be8d
- Child:
- 566:e425ad9e5d6e
--- a/source/nRF5xGap.h Mon Jan 11 10:19:17 2016 +0000 +++ b/source/nRF5xGap.h Mon Jan 11 10:19:18 2016 +0000 @@ -44,8 +44,6 @@ class nRF5xGap : public Gap { public: - static nRF5xGap &getInstance(); - /* Functions that must be implemented from Gap */ virtual ble_error_t setAddress(AddressType_t type, const Address_t address); virtual ble_error_t getAddress(AddressType_t *typeP, Address_t address); @@ -76,6 +74,8 @@ virtual ble_error_t setPreferredConnectionParams(const ConnectionParams_t *params); virtual ble_error_t updateConnectionParams(Handle_t handle, const ConnectionParams_t *params); + virtual ble_error_t reset(void); + virtual ble_error_t initRadioNotification(void) { if (ble_radio_notification_init(NRF_APP_PRIORITY_HIGH, NRF_RADIO_NOTIFICATION_DISTANCE_800US, radioNotificationStaticCallback) == NRF_SUCCESS) { return BLE_ERROR_NONE; @@ -196,6 +196,12 @@ private: uint16_t m_connectionHandle; + + /* + * Allow instantiation from nRF5xn when required. + */ + friend class nRF5xn; + nRF5xGap() { m_connectionHandle = BLE_CONN_HANDLE_INVALID; }