AIROC Memory Management Interface.
More...
|
| GKI |
| Defines the interfaces for Buffer Management Services.
|
|
AIROC Memory Management Interface.
UINT16 wiced_bt_buffer_poolutilization |
( |
UINT8 |
pool_id | ) |
|
Get specific buffer pool utilization.
- Parameters
-
[in] | pool_id | : (input) pool ID |
- Returns
- % of buffers used from 0 to 100
Function wiced_bt_create_pool.
Creates a private buffer pool dedicated for the application usage.
- Parameters
-
[in] | buffer_size | : size of the buffers in the pool |
[in] | buffer_cnt | : number of buffers in the pool |
- Returns
- pointer to the created pool on success NULL on failure
Note : The max number of buffer pools configured in wiced_bt_cfg_settings_t.max_number_of_buffer_pools must be increased for each buffer pool the application creates.
void wiced_bt_free_buffer |
( |
void * |
p_buf | ) |
|
Function wiced_bt_free_buffer.
Frees the buffer
- Parameters
-
[in] | p_buf | : pointer to the start of the buffer to be freed |
- Returns
- None
void* wiced_bt_get_buffer |
( |
uint16_t |
buffer_size | ) |
|
Function wiced_bt_get_buffer.
Allocates a buffer from the public pools. Public pools shall be specified using wiced_bt_cfg_buf_pool_t from the application.
- Parameters
-
[in] | buffer_size | : size of the buffer |
- Returns
- the pointer to the buffer NULL on failure
Function wiced_bt_get_buffer_count.
To get the number of buffers available in the pool
- Parameters
-
- Returns
- the number of buffers available in the pool
Function wiced_bt_get_buffer_from_pool.
Allocates a buffer from the private pool. Pass the pool pointer to get the buffer from the desired pool
- Parameters
-
- Returns
- the pointer to the buffer NULL on failure
uint32_t wiced_bt_get_buffer_size |
( |
void * |
p_buf | ) |
|
Function wiced_bt_get_buffer_size.
Gets the buffer size
- Parameters
-
[in] | p_buf | : pointer to the start of the buffer |
- Returns
- the buffer size
Function wiced_bt_get_buffer_usage.
Dumps dynamic buffer usage (see wiced_bt_buffer_statistics_t), from the last start of the system.
- Parameters
-
[in] | p_buffer_stat | - pointer buffer to fill statistics. |
[in] | size | - size of the memory to get the statistics. |
- Returns
- WICED_BT_SUCCESS on success else error
void* wiced_memory_allocate |
( |
uint32_t |
size | ) |
|
Function wiced_memory_allocate.
Allocates memory from Dynamic Memory pools
- Parameters
-
[in] | size | :size of the memory to be allocated |
- Returns
- pointer to the allocated memory on success NULL on failure
void wiced_memory_free |
( |
void * |
memoryBlock | ) |
|
Function wiced_memory_free.
Frees the buffer
- Parameters
-
[in] | p_buf | : free memory allocated from Dynamic Memory pools |
- Returns
- None
uint32_t wiced_memory_get_free_bytes |
( |
void |
| ) |
|
Function wiced_memory_get_free_bytes.
Returns the number of free bytes of RAM left
- Returns
- the number of free bytes of RAM left
void* wiced_memory_permanent_allocate |
( |
uint32_t |
size | ) |
|
Allocates memory for permanent usage.
- Parameters
-
[in] | size | : The size of the memory to be allocated |
- Returns
- The pointer to the allocated memory on success NULL on failure
wiced_bool_t wiced_memory_set_application_thread_stack_size |
( |
uint16_t |
new_stack_size | ) |
|
Function wiced_memory_set_application_thread_stack_size.
Update the stack size of the application thread (MPAF)
NOTE : This API will work only when invoked from SPAR_CRT_SETUP()
- Parameters
-
[in] | new_stack_size | - required size of the stack. |
- Returns
- TRUE on success else FALSE