mirror of
https://github.com/openmv/openmv.git
synced 2025-11-04 14:49:50 +08:00
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:
parent
8dece2d845
commit
3352c20525
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user