esp_ble_gattc_cache_assoc() function
Add or remove the association between the address in the local GATTC cache with the source address of the remote device
Arguments
gattc_if
GATT Client access interface
src_addr
The source address intended to be associated to the `assoc_addr` which has been stored in the local GATTC cache
assoc_addr
The associated device address intended to share the attribute table with the source address
is_assoc
True if adding the association; false if removing the association.
Return value
- ESP_OK: Success - ESP_FAIL: Failure
Notes
1. This API is primarily used when the client has a stored server-side database (`assoc_addr`) and needs to connect to another device (`src_addr`) with the same attribute database. By invoking this API, the stored database is utilized as the peer server database, eliminating the need for attribute database search and discovery. This reduces processing time and accelerates the connection process. 2. The attribute table of a device with `assoc_addr` must be stored in the local GATTC cache first. Then, the attribute table of the device with `src_addr` must be the same as the one with `assoc_addr`. 3. This function triggers `ESP_GATTC_SET_ASSOC_EVT`.