mirror of
https://github.com/nodemcu/nodemcu-firmware.git
synced 2025-01-30 21:12:55 +08:00
7abda5c9e0
- Switched hardcoded interrupts to new IDF interrupt allocation framework. - gpio module switched to the IDF's per-pin interrupt callback service. - Improved NodeMCU linker script since it broke with the IDF upgrade. - Various compatibility updates.
17 lines
478 B
Plaintext
17 lines
478 B
Plaintext
SECTIONS {
|
|
.flash.rodata : ALIGN(4)
|
|
{
|
|
/* Link-time arrays containing the defs for the included modules */
|
|
lua_libs = ABSOLUTE(.);
|
|
KEEP(*(.lua_libs))
|
|
LONG(0) LONG(0) /* Null-terminate the array */
|
|
lua_rotable = ABSOLUTE(.);
|
|
KEEP(*(.lua_rotable))
|
|
LONG(0) LONG(0) /* Null-terminate the array */
|
|
esp_event_cb_table = ABSOLUTE(.);
|
|
KEEP(*(.esp_event_cb_table))
|
|
LONG(0) LONG(0) /* Null-terminate the array */
|
|
}
|
|
}
|
|
INSERT BEFORE .flash.text
|