1
6
7
8
9
10
11
12
13
14
15
21
22
23
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/* ... */
#pragma once
#include "esp_err.h"
#include "esp_heap_caps.h"
#ifdef __cplusplus
extern "C" {
#endif
/* ... */
void heap_caps_init(void);
/* ... */
void heap_caps_enable_nonos_stack_heaps(void);
/* ... */
esp_err_t heap_caps_add_region(intptr_t start, intptr_t end);
/* ... */
esp_err_t heap_caps_add_region_with_caps(const uint32_t caps[], intptr_t start, intptr_t end);
#ifdef __cplusplus
}{...}
#endif