ports/stm32: Add CYW43 firmware blob to text section.

* If no special memory is defined for CYW43's firmware, add it
to the main firmware text section.
This commit is contained in:
iabdalkader 2022-08-26 18:16:11 +02:00
parent 8dece2d845
commit 3352c20525

View File

@ -85,6 +85,10 @@ SECTIONS
*(.rodata) // .rodata sections (constants, strings, etc.)
. = ALIGN(4);
*(.rodata*) // .rodata* sections (constants, strings, etc.)
#if !defined(OMV_CYW43_MEMORY)
. = ALIGN(512);
*(.big_const*)
#endif
. = ALIGN(4);
_etext = .; // define a global symbols at end of code
} >FLASH_TEXT