these devices can automatically connect 52832 without having to restart the pairing and bonding process
these devices can automatically connect 52832 without having to restart the pairing and bonding process
Hi,
You should be able to bond to 8 devices(BLE_GAP_WHITELIST_ADDR_MAX_COUNT
). The default behavior is to reject pairing request from an already bonded peer. You can change this by setting .allow_repairing to true. i.e in pm_evt_handler()
, pm_conn_sec_config_t conn_sec_config = {.allow_repairing = true};
You should be able to bond to 8 devices(BLE_GAP_WHITELIST_ADDR_MAX_COUNT
). The default behavior is to reject pairing request from an already bonded peer. You can change this by setting .allow_repairing to true. i.e in pm_evt_handler()
, pm_conn_sec_config_t conn_sec_config = {.allow_repairing = true};