You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ut...@apache.org on 2018/03/30 09:39:50 UTC

[mynewt-core] branch master updated: Fix slot0 size in f3disco to avoid writing after end

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

utzig pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git


The following commit(s) were added to refs/heads/master by this push:
     new ebc6bd1  Fix slot0 size in f3disco to avoid writing after end
ebc6bd1 is described below

commit ebc6bd1606b0abac16f939f78df64173bb8c15e4
Author: Fabio Utzig <ut...@apache.org>
AuthorDate: Thu Mar 29 16:32:01 2018 -0300

    Fix slot0 size in f3disco to avoid writing after end
    
    Signed-off-by: Fabio Utzig <ut...@apache.org>
---
 hw/bsp/stm32f3discovery/stm32f3discovery.ld | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hw/bsp/stm32f3discovery/stm32f3discovery.ld b/hw/bsp/stm32f3discovery/stm32f3discovery.ld
index 58ee95e..0316a34 100755
--- a/hw/bsp/stm32f3discovery/stm32f3discovery.ld
+++ b/hw/bsp/stm32f3discovery/stm32f3discovery.ld
@@ -22,7 +22,7 @@ ENTRY(Reset_Handler)
  * Memory map
  */
 MEMORY {
-    FLASH (rx): ORIGIN = 0x08004000, LENGTH = 240K
+    FLASH (rx): ORIGIN = 0x08004000, LENGTH = 88K
     CCRAM (rw): ORIGIN = 0x10000000, LENGTH = 8K
     SRAM  (rw): ORIGIN = 0x20000000, LENGTH = 40K
 }

-- 
To stop receiving notification emails like this one, please contact
utzig@apache.org.