We have a device (in central mode) initiating a secure connection to a peripheral (slave) via the usage of `pm_conn_secure(conn_handle, false)`. This results in a `PM_EVT_CONN_SEC_SUCCEEDED` event being generated by the peer manager.
Checking the status of the bond in `p_evt->params.conn_sec_succeeded.data_stored` and `p_evt->params.conn_sec_succeeded.procedure` results in a true value and `PM_CONN_SEC_PROCEDURE_BONDING` respectively.
Furthermore when checking the status of the connection via `pm_conn_sec_status_get` the values returned are connected:true, encrypted:true, mitm_protection:false, bonded:true
At this point we try to retrieve the bonding information from the peer manager via `pm_peer_data_bonding_load` using `p_evt->peer_id` (which has a value 0, i.e. not invalid) however the `pm_peer_data_bonding_t` structure is filled with 0s and the return from the function is 5 (which I believe is NRF_ERROR_NOT_FOUND).
All of the calls are performed from within the callback from the peer_manager event handler associated with `PM_EVT_CONN_SEC_SUCCEEDED`.
What is the correct way to retrieve the stored bonding information?
I could not add tags for the following so mentioning the crucial versions here. We are using the following:
SDK 15.0.0
SoftDevice S132 V6.0.0