Skip to content

Commit

Permalink
arm/olimex-stm32-p407: Fix kmodule board profile
Browse files Browse the repository at this point in the history
Just increase the ksram and usram to avoid compilation issue.

Signed-off-by: Alan C. Assis <acassis@gmail.com>
  • Loading branch information
acassis authored and xiaoxiang781216 committed Nov 12, 2024
1 parent bf93c78 commit cd2633d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions boards/arm/stm32/olimex-stm32-p407/scripts/memory.ld
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ MEMORY

/* 112Kb of contiguous SRAM */

ksram (rwx) : ORIGIN = 0x20000000, LENGTH = 8K
usram (rwx) : ORIGIN = 0x20002000, LENGTH = 8K
xsram (rwx) : ORIGIN = 0x20008000, LENGTH = 96K
ksram (rwx) : ORIGIN = 0x20000000, LENGTH = 16K
usram (rwx) : ORIGIN = 0x20004000, LENGTH = 16K
xsram (rwx) : ORIGIN = 0x2000a000, LENGTH = 80K
}

0 comments on commit cd2633d

Please sign in to comment.