Repository: incubator-mynewt-larva
Updated Branches:
  refs/heads/master 9c7b7fcdd -> 17c1bff6d


Move one sector from NFFS to scratch.


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-larva/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-mynewt-larva/commit/4de676a8
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-mynewt-larva/tree/4de676a8
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-mynewt-larva/diff/4de676a8

Branch: refs/heads/master
Commit: 4de676a8d657046333e868db74758992fb32ff66
Parents: 9c7b7fc
Author: Marko Kiiskila <ma...@runtime.io>
Authored: Wed Feb 3 15:17:25 2016 -0800
Committer: Marko Kiiskila <ma...@runtime.io>
Committed: Wed Feb 3 15:17:25 2016 -0800

----------------------------------------------------------------------
 hw/bsp/nrf51dk/src/os_bsp.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-larva/blob/4de676a8/hw/bsp/nrf51dk/src/os_bsp.c
----------------------------------------------------------------------
diff --git a/hw/bsp/nrf51dk/src/os_bsp.c b/hw/bsp/nrf51dk/src/os_bsp.c
index 24b8c94..8f69f55 100644
--- a/hw/bsp/nrf51dk/src/os_bsp.c
+++ b/hw/bsp/nrf51dk/src/os_bsp.c
@@ -40,12 +40,12 @@ static struct flash_area bsp_flash_areas[] = {
     [FLASH_AREA_IMAGE_SCRATCH] = {
         .fa_flash_id = 0,
         .fa_off = 0x0003f000,
-        .fa_size = (1 * 1024)
+        .fa_size = (2 * 1024)
     },
     [FLASH_AREA_NFFS] = {
         .fa_flash_id = 0,
-        .fa_off = 0x0003f400,
-        .fa_size = (3 * 1024)
+        .fa_off = 0x0003f800,
+        .fa_size = (2 * 1024)
     }
 };
 

Reply via email to