mirror of https://github.com/ARMmbed/mbed-os.git
BLE: Fix GapExtendedAdvertisingParams::getPeerAddress return type.
parent
426de4a2d9
commit
e951fa15ff
|
@ -450,8 +450,8 @@ class GapExtendedAdvertisingParams {
|
|||
return _maxInterval;
|
||||
}
|
||||
|
||||
BLEProtocol::AddressBytes_t* getPeerAddress() const {
|
||||
return &_peerAddress;
|
||||
const BLEProtocol::AddressBytes_t& getPeerAddress() const {
|
||||
return _peerAddress;
|
||||
};
|
||||
|
||||
ble::peer_address_type_t getPeerAddressType() const {
|
||||
|
|
Loading…
Reference in New Issue