ESP-IDF
SOC_RESERVE_MEMORY_REGION
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading (2/5)...
Summary
Syntax
Arguments
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
SOC_RESERVE_MEMORY_REGION
SOC_RESERVE_MEMORY_REGION macro
Syntax
Show:
Summary
Declaration
from
heap_memory_layout.h:66
#define
SOC_RESERVE_MEMORY_REGION
(
START
,
END
,
NAME
)
\
__attribute__
(
(
section
(
".reserved_memory_address"
)
)
)
__attribute__
(
(
used
)
)
\
static
soc_reserved_region_t
reserved_region_
##
NAME
=
{
START
,
END
}
;
Arguments
Argument
START
END
NAME
Examples
References
from
examples
Code
Location
#define
SOC_RESERVE_MEMORY_REGION
(
START
,
END
,
NAME
)
\
heap_memory_layout.h:66
SOC_RESERVE_MEMORY_REGION
(
SOC_MEM_BT_EM_START
,
SOC_MEM_BT_EM_BREDR_REAL_END
,
rom_bt_em
)
;
bt.c:433
SOC_RESERVE_MEMORY_REGION
(
SOC_MEM_BT_BSS_START
,
SOC_MEM_BT_BSS_END
,
rom_bt_bss
)
;
bt.c:434
SOC_RESERVE_MEMORY_REGION
(
SOC_MEM_BT_MISC_START
,
SOC_MEM_BT_MISC_END
,
rom_bt_misc
)
;
bt.c:435
SOC_RESERVE_MEMORY_REGION
(
SOC_MEM_BT_DATA_START
,
SOC_MEM_BT_DATA_END
,
rom_bt_data
)
;
bt.c:436
SOC_RESERVE_MEMORY_REGION
(
SOC_CACHE_PRO_LOW
,
SOC_CACHE_PRO_HIGH
,
cpu0_cache
)
;
memory_layout.c:128
SOC_RESERVE_MEMORY_REGION
(
SOC_CACHE_APP_LOW
,
SOC_CACHE_APP_HIGH
,
cpu1_cache
)
;
memory_layout.c:130
SOC_RESERVE_MEMORY_REGION
(
0x3ffe0000
,
0x3ffe0440
,
rom_pro_data
)
;
//Reserve ROM PRO data region
memory_layout.c:149
SOC_RESERVE_MEMORY_REGION
(
0x3ffe3f20
,
0x3ffe4350
,
rom_app_data
)
;
//Reserve ROM APP data region
memory_layout.c:151
SOC_RESERVE_MEMORY_REGION
(
0x3ffae000
,
0x3ffae6e0
,
rom_data
)
;
memory_layout.c:154
SOC_RESERVE_MEMORY_REGION
(
0x3fff8000
,
0x40000000
,
trace_mem
)
;
//Reserve trace mem region, 32K for both cpu
memory_layout.c:158
SOC_RESERVE_MEMORY_REGION
(
SOC_EXTRAM_DATA_LOW
,
SOC_EXTRAM_DATA_HIGH
,
spi_ram
)
;
memory_layout.c:167
SOC_RESERVE_MEMORY_REGION
(
(
intptr_t
)
&
_data_start
,
(
intptr_t
)
&
_heap_start
,
dram_data
)
;
memory_layout.c:175
SOC_RESERVE_MEMORY_REGION
(
(
intptr_t
)
&
_iram_start
,
(
intptr_t
)
&
_iram_end
,
iram_code
)
;
memory_layout.c:179
SOC_RESERVE_MEMORY_REGION
(
SOC_RTC_DRAM_LOW
,
(
intptr_t
)
&
_rtc_force_fast_end
,
rtcram_data
)
;
memory_layout.c:191
SOC_RESERVE_MEMORY_REGION
(
(
intptr_t
)
&
_rtc_fast_reserved_start
,
(
intptr_t
)
&
_rtc_fast_reserved_end
,
rtc_fast_reserved_data
)
;
memory_layout.c:195
SOC_RESERVE_MEMORY_REGION
(
(
intptr_t
)
&
_rtc_slow_reserved_start
,
(
intptr_t
)
&
_rtc_slow_reserved_end
,
rtc_reserved_data
)
;
memory_layout.c:196
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out