make use of GapAdvertisingParams::AdvertisingType_t instead of Gap::AdvertisementType_t
This commit is contained in:
parent
a6b456c75c
commit
832347de91
1 changed files with 1 additions and 1 deletions
|
@ -172,7 +172,7 @@ static void btle_handler(ble_evt_t *p_ble_evt)
|
|||
nRF51Gap::getInstance().processAdvertisementReport(advReport->peer_addr.addr,
|
||||
advReport->rssi,
|
||||
advReport->scan_rsp,
|
||||
static_cast<Gap::AdvertisementType_t>(advReport->type),
|
||||
static_cast<GapAdvertisingParams::AdvertisingType_t>(advReport->type),
|
||||
advReport->dlen,
|
||||
advReport->data);
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue