I'm sorry my English is not good enough.
I am developing a product that works as a BLE peripheral using nrf52832 and NCS1.6.1.
In addition, the following statement is made in prj.conf to save the bonding information in FLASH.
# Enable bonding
CONFIG_BT_SETTINGS=y
CONFIG_FLASH=y
CONFIG_FLASH_PAGE_LAYOUT=y
CONFIG_FLASH_MAP=y
CONFIG_NVS=y
CONFIG_SETTINGS=y
We have confirmed that the bonding information is saved successfully after pairing.
Next, nrf52832 is considering storing 2000 pieces of bonding information when pairing.
I tried to set "CONFIG_BT_MAX_PAIRED=2000" in prj.conf, but it caused an error. The reason is that the maximum value is 128.
So, I would like to ask you the following questions.
1. Is it possible to store 2000 bonding information in nrf52832?
2. When saving bonding information after pairing in NCS1.6.1, what is the data size per bonding information in bytes?
I need your help.