No changes
Fork of nRF51822 by
Diff: source/nRF5xGap.cpp
- Revision:
- 622:5b9728d28fdc
- Parent:
- 616:69ea3a4b7243
diff -r 1d79da5c393e -r 5b9728d28fdc source/nRF5xGap.cpp --- a/source/nRF5xGap.cpp Fri Apr 08 11:05:55 2016 +0100 +++ b/source/nRF5xGap.cpp Fri Apr 08 11:05:56 2016 +0100 @@ -681,7 +681,7 @@ /* Test for invalid parameters before we change the internal state */ for (uint8_t i = 0; i < whitelistIn.size; ++i) { - if (whitelistIn.addresses[i].type == BLEProtocol::AddressType_t::RANDOM_PRIVATE_NON_RESOLVABLE) { + if (whitelistIn.addresses[i].type == BLEProtocol::AddressType::RANDOM_PRIVATE_NON_RESOLVABLE) { /* This is not allowed because it is completely meaningless */ return BLE_ERROR_INVALID_PARAM; } @@ -898,7 +898,7 @@ whitelist.irk_count = 0; whitelist.addr_count = 0; for (uint8_t i = 0; i < whitelistAddressesSize; ++i) { - if (whitelistAddresses[i].addr_type == BLEProtocol::AddressType_t::RANDOM_PRIVATE_RESOLVABLE) { + if (whitelistAddresses[i].addr_type == BLEProtocol::AddressType::RANDOM_PRIVATE_RESOLVABLE) { /* Test if there is a matching IRK for this private resolvable address */ for (uint8_t j = 0; j < whitelistFromBondTable.irk_count; ++j) { if (securityManager.matchAddressAndIrk(&whitelistAddresses[i], whitelistFromBondTable.pp_irks[j])) {