replace instances of BLEProtocol::AddressType::Type with BLEProtocol::AddressType_t
This commit is contained in:
parent
752e2ba43b
commit
ca8b3d2135
1 changed files with 2 additions and 2 deletions
|
@ -154,8 +154,8 @@ static void btle_handler(ble_evt_t *p_ble_evt)
|
|||
const ble_gap_addr_t *own = &p_ble_evt->evt.gap_evt.params.connected.own_addr;
|
||||
nRF5xGap::getInstance().processConnectionEvent(handle,
|
||||
role,
|
||||
static_cast<BLEProtocol::AddressType::Type>(peer->addr_type), peer->addr,
|
||||
static_cast<BLEProtocol::AddressType::Type>(own->addr_type), own->addr,
|
||||
static_cast<BLEProtocol::AddressType_t>(peer->addr_type), peer->addr,
|
||||
static_cast<BLEProtocol::AddressType_t>(own->addr_type), own->addr,
|
||||
params);
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue