nRF51 SDK - S110 SoftDevice
 All Data Structures Functions Variables Typedefs Enumerations Enumerator Groups Pages
Functions for managing memory for user memory request in application device.

Application auxiliary functions for synchronizing user memory with the one stored in the connectivity device. More...

Data Structures

struct  ser_ble_user_mem_t
 Connection - user memory mapping structure. More...
 

Functions

uint32_t app_ble_user_mem_context_create (uint16_t conn_handle, uint32_t *p_index)
 allocates instance in m_user_mem_table[] for storage. More...
 
uint32_t app_ble_user_mem_context_destroy (uint16_t conn_handle)
 release instance identified by a connection handle. More...
 
uint32_t app_ble_user_mem_context_find (uint16_t conn_handle, uint32_t *p_index)
 finds index of instance identified by a connection handle in m_user_mem_table[]. More...
 

Detailed Description

Application auxiliary functions for synchronizing user memory with the one stored in the connectivity device.

Function Documentation

uint32_t app_ble_user_mem_context_create ( uint16_t  conn_handle,
uint32_t *  p_index 
)

allocates instance in m_user_mem_table[] for storage.

Parameters
[in]conn_handleconn_handle
[out]p_indexpointer to the index of allocated instance
Return values
NRF_SUCCESSContext allocated.
NRF_ERROR_NO_MEMNo free instance available.
uint32_t app_ble_user_mem_context_destroy ( uint16_t  conn_handle)

release instance identified by a connection handle.

Parameters
[in]conn_handleconn_handle
Return values
NRF_SUCCESSContext released.
NRF_ERROR_NOT_FOUNDinstance with conn_handle not found
uint32_t app_ble_user_mem_context_find ( uint16_t  conn_handle,
uint32_t *  p_index 
)

finds index of instance identified by a connection handle in m_user_mem_table[].

Parameters
[in]conn_handleconn_handle
[out]p_indexPointer to the index of the entry in the context table corresponding to the given conn_handle
Return values
NRF_SUCCESSContext found
NRF_ERROR_NOT_FOUNDinstance with conn_handle not found