Hi,
Using nRF51DK with softdevice 8.0 and sdk8.
I found the max number of whitelist in "ble_gap.h"...
/**@brief Maximum amount of addresses in a whitelist. */
#define BLE_GAP_WHITELIST_ADDR_MAX_COUNT (8)
/**@brief Maximum amount of IRKs in a whitelist.
* @note The number of IRKs is limited to 8, even if the hardware supports more.
*/
#define BLE_GAP_WHITELIST_IRK_MAX_COUNT (8)
The question is that does it mean the nRF51 only can store 8 address and 8 irk in the same time? The total devices that can be stored is 16, is it right?
The other question is that can I store more than 20 bondings and also have more than 20 devices in the whitelist?
Thanks in advance!