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 BLE_API by
Diff: public/Gap.h
- Revision:
- 405:8fc6e6855806
- Parent:
- 402:0e714ad205b4
- Child:
- 406:cec6778acc66
--- a/public/Gap.h Mon May 18 09:54:26 2015 +0100
+++ b/public/Gap.h Mon May 18 09:54:27 2015 +0100
@@ -141,8 +141,8 @@
typedef void (*EventCallback_t)(void);
typedef void (*ConnectionEventCallback_t)(Handle_t,
- addr_type_t peerAddrType, const address_t peerAddr,
- addr_type_t ownAddrType, const address_t ownAddr,
+ addr_type_t peerAddrType, const Address_t peerAddr,
+ addr_type_t ownAddrType, const Address_t ownAddr,
const ConnectionParams_t *);
typedef void (*HandleSpecificEvent_t)(Handle_t handle);
typedef void (*DisconnectionEventCallback_t)(Handle_t, DisconnectionReason_t);
@@ -163,8 +163,8 @@
private:
/* These functions must be defined in the sub-class */
- virtual ble_error_t setAddress(addr_type_t type, const address_t address) = 0;
- virtual ble_error_t getAddress(addr_type_t *typeP, address_t address) = 0;
+ virtual ble_error_t setAddress(addr_type_t type, const Address_t address) = 0;
+ virtual ble_error_t getAddress(addr_type_t *typeP, Address_t address) = 0;
virtual ble_error_t setAdvertisingData(const GapAdvertisingData &, const GapAdvertisingData &) = 0;
virtual ble_error_t startAdvertising(const GapAdvertisingParams &) = 0;
virtual ble_error_t stopAdvertising(void) = 0;
@@ -271,7 +271,7 @@
}
public:
- void processConnectionEvent(Handle_t handle, addr_type_t peerAddrType, const address_t peerAddr, addr_type_t ownAddrType, const address_t ownAddr, const ConnectionParams_t *params) {
+ void processConnectionEvent(Handle_t handle, addr_type_t peerAddrType, const Address_t peerAddr, addr_type_t ownAddrType, const Address_t ownAddr, const ConnectionParams_t *params) {
state.connected = 1;
if (onConnection) {
onConnection(handle, peerAddrType, peerAddr, ownAddrType, ownAddr, params);
@@ -316,7 +316,7 @@
}
}
- void processAdvertisementReport(const address_t peerAddr,
+ void processAdvertisementReport(const Address_t peerAddr,
int8_t rssi,
bool isScanResponse,
AdvertisementType_t type,
