Select one of the symbols to view example projects that use it.
 
Outline
#define __ESP_NIMBLE_MEM_H__
#include <stdlib.h>
#include "bt_osi_mem.h"
#define nimble_platform_mem_malloc
#define nimble_platform_mem_calloc
#define nimble_platform_mem_free
Files
loading (3/5)...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/bt/host/nimble/port/include/esp_nimble_mem.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #ifndef __ESP_NIMBLE_MEM_H__ #define __ESP_NIMBLE_MEM_H__ #include <stdlib.h> #ifdef __cplusplus extern "C" { #endif // #pragma message "This file should be replaced with bt_osi_mem.h, used here for compatibility" #include "bt_osi_mem.h" #define nimble_platform_mem_malloc bt_osi_mem_malloc #define nimble_platform_mem_calloc bt_osi_mem_calloc #define nimble_platform_mem_free bt_osi_mem_free #ifdef __cplusplus }{...} #endif /* ... */ #endif /* __ESP_NIMBLE_MEM_H__ */
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.