ESP32c6 align text.handler_execute same as C3

This commit is contained in:
Austin Lane
2026-01-02 10:15:14 -05:00
committed by Austin
parent aa506ce4ab
commit 14e9cb0fc3
3 changed files with 3 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
/* 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;