mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-10-02 14:44:42 +00:00
47 lines
1.0 KiB
Plaintext
47 lines
1.0 KiB
Plaintext
|
|
/* before memory.x to allow override */
|
|
ENTRY(ESP32Reset)
|
|
|
|
/* after memory.x to allow override */
|
|
PROVIDE(__pre_init = DefaultPreInit);
|
|
PROVIDE(__zero_bss = default_mem_hook);
|
|
PROVIDE(__init_data = default_mem_hook);
|
|
PROVIDE(__post_init = default_post_init);
|
|
|
|
INCLUDE exception.x
|
|
|
|
/* ESP32 fixups */
|
|
INCLUDE "fixups/rtc_fast_rwdata_dummy.x"
|
|
/* END ESP32 fixups */
|
|
|
|
/* Shared sections - ordering matters */
|
|
INCLUDE "text.x"
|
|
INCLUDE "rodata.x"
|
|
INCLUDE "rwtext.x"
|
|
INCLUDE "rwdata.x"
|
|
INCLUDE "rtc_fast.x"
|
|
INCLUDE "rtc_slow.x"
|
|
/* End of Shared sections */
|
|
|
|
/* an uninitialized section for use as the wifi-heap in esp-wifi */
|
|
SECTIONS {
|
|
.dram2_uninit (NOLOAD) : ALIGN(4) {
|
|
*(.dram2_uninit)
|
|
} > dram2_seg
|
|
}
|
|
|
|
_stack_region_top = ABSOLUTE(ORIGIN(dram_seg))+LENGTH(dram_seg);
|
|
_stack_region_bottom = _stack_end;
|
|
|
|
/*
|
|
use the whole remaining memory as core-0's stack
|
|
*/
|
|
_stack_end_cpu0 = _stack_region_top;
|
|
_stack_start_cpu0 = _stack_region_bottom;
|
|
|
|
EXTERN(DefaultHandler);
|
|
|
|
EXTERN(WIFI_EVENT); /* Force inclusion of WiFi libraries */
|
|
|
|
INCLUDE "device.x"
|