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:08 UTC

[mynewt-core] branch master updated (f493b02 -> 070ec06)

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

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


    from f493b02  sys/console: Fix typos
     new dfc7ece  Fix flash hole in Adafruit Feather nrf52 BSP
     new 070ec06  Update to use 24kB bootloader region, and 8kB reboot log region

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 hw/bsp/ada_feather_nrf52/boot-nrf52xxaa.ld | 2 +-
 hw/bsp/ada_feather_nrf52/bsp.yml           | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

[mynewt-core] 02/02: Update to use 24kB bootloader region, and 8kB reboot log region

Posted by ja...@apache.org.
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 070ec06f75ca61262f626bf673f8317a964f7aa0
Author: Matt Thompson <ma...@prevailion.com>
AuthorDate: Wed Mar 16 21:00:21 2022 -0700

    Update to use 24kB bootloader region, and 8kB reboot log region
---
 hw/bsp/ada_feather_nrf52/boot-nrf52xxaa.ld | 2 +-
 hw/bsp/ada_feather_nrf52/bsp.yml           | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/hw/bsp/ada_feather_nrf52/boot-nrf52xxaa.ld b/hw/bsp/ada_feather_nrf52/boot-nrf52xxaa.ld
index d7eba7a..85cd035 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 = 0x8000
+  FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 0x6000
   RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 0x10000
 }
 
diff --git a/hw/bsp/ada_feather_nrf52/bsp.yml b/hw/bsp/ada_feather_nrf52/bsp.yml
index 7109faf..d67c932 100644
--- a/hw/bsp/ada_feather_nrf52/bsp.yml
+++ b/hw/bsp/ada_feather_nrf52/bsp.yml
@@ -40,7 +40,7 @@ bsp.flash_map:
         FLASH_AREA_BOOTLOADER:
             device: 0
             offset: 0x00000000
-            size: 16kB
+            size: 24kB
         FLASH_AREA_IMAGE_0:
             device: 0
             offset: 0x00008000
@@ -58,8 +58,8 @@ bsp.flash_map:
         FLASH_AREA_REBOOT_LOG:
             user_id: 0
             device: 0
-            offset: 0x00004000
-            size: 16kB
+            offset: 0x00006000
+            size: 8kB
         FLASH_AREA_NFFS:
             user_id: 1
             device: 0

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

Posted by ja...@apache.org.
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
 }