mirror of
https://github.com/meshtastic/firmware.git
synced 2025-12-31 07:01:03 +00:00
11 lines
259 B
Plaintext
11 lines
259 B
Plaintext
|
|
/* Arduino fix: catch esp_event's orphaned .text.handler_execute section and align to 4 bytes */
|
||
|
|
SECTIONS
|
||
|
|
{
|
||
|
|
.text.handler_execute :
|
||
|
|
{
|
||
|
|
KEEP(*(.text.handler_execute))
|
||
|
|
KEEP(*(.text.handler_execute.*))
|
||
|
|
. = ALIGN(4);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
INSERT AFTER .flash.text;
|