/**@brief Function for finding out whether a peer ID is in use.
*
* @param[in] peer_id The peer ID to inquire about.
*
* @retval true peer_id is in use.
* @retval false peer_id is free, or the module is not initialized.
*/
bool pds_peer_id_is_allocated(pm_peer_id_t peer_id);
Hi All,
someone can be explain me what means "peer_id is free"? This function sometimes return false and cause an assert of my application, but i don't understand why.