This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git


The following commit(s) were added to refs/heads/master by this push:
     new cd2633ddcc arm/olimex-stm32-p407: Fix kmodule board profile
cd2633ddcc is described below

commit cd2633ddccf91cb1bd9a62aaf4d66f7a5ccd4cab
Author: Alan Carvalho de Assis <[email protected]>
AuthorDate: Tue Nov 12 12:20:09 2024 -0300

    arm/olimex-stm32-p407: Fix kmodule board profile
    
    Just increase the ksram and usram to avoid compilation issue.
    
    Signed-off-by: Alan C. Assis <[email protected]>
---
 boards/arm/stm32/olimex-stm32-p407/scripts/memory.ld | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/boards/arm/stm32/olimex-stm32-p407/scripts/memory.ld 
b/boards/arm/stm32/olimex-stm32-p407/scripts/memory.ld
index faea5108fc..f877525caa 100644
--- a/boards/arm/stm32/olimex-stm32-p407/scripts/memory.ld
+++ b/boards/arm/stm32/olimex-stm32-p407/scripts/memory.ld
@@ -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
 }

Reply via email to