mirror of
https://github.com/openmv/openmv.git
synced 2025-11-04 14:49:50 +08:00
ports/stm32: Fix CM4 boot memory.
This commit is contained in:
parent
b6650f3b9a
commit
0f8b852356
@ -108,12 +108,12 @@ SECTIONS
|
||||
|
||||
/* CM4 boot memory */
|
||||
#if defined(OMV_CM4_BOOT_MEMORY)
|
||||
.cm4_boot_memory (NOLOAD) : ALIGN(4)
|
||||
.cm4_boot_memory (NOLOAD) : ALIGN(32)
|
||||
{
|
||||
_cm4_ram_start = .;
|
||||
. = . + OMV_CM4_BOOT_SIZE;
|
||||
. = ALIGN(4);
|
||||
_cm4_ram_start = .;
|
||||
. = ALIGN(32);
|
||||
_cm4_ram_end = .;
|
||||
} >OMV_CM4_BOOT_MEMORY
|
||||
#endif
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user