You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ja...@apache.org on 2022/04/01 07:05:09 UTC

[mynewt-core] 01/02: Fix flash hole in Adafruit Feather nrf52 BSP

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

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

commit dfc7ece9cf91af6961de9e4d247672f2282331e6
Author: Matt Thompson <mt...@hexwave.com>
AuthorDate: Tue Mar 15 22:22:35 2022 -0700

    Fix flash hole in Adafruit Feather nrf52 BSP
    
    The bootloader linker script currently has a flash length of 0x4000, while the image linker has an origin of 0x8000.
    
    This closes the hole and doubles the usable bootloader space.
---
 hw/bsp/ada_feather_nrf52/boot-nrf52xxaa.ld | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hw/bsp/ada_feather_nrf52/boot-nrf52xxaa.ld b/hw/bsp/ada_feather_nrf52/boot-nrf52xxaa.ld
index d1f1b99..d7eba7a 100644
--- a/hw/bsp/ada_feather_nrf52/boot-nrf52xxaa.ld
+++ b/hw/bsp/ada_feather_nrf52/boot-nrf52xxaa.ld
@@ -17,7 +17,7 @@
  */
 MEMORY
 {
-  FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 0x4000
+  FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 0x8000
   RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 0x10000
 }