From 6412b0656bb5122f3b7d59729a42191f3ebde9fb Mon Sep 17 00:00:00 2001 From: Jim Paris Date: Tue, 28 Oct 2014 16:20:16 -0400 Subject: [PATCH] nrf51: fix UICR region size The UICR region is actually 0x100 bytes in size. Besides making the full region accessible, having the right value is important because GDB rounds flash addresses to the nearest multiple of the block size when determing which flash blocks to erase. Change-Id: I416c391cbfc7be41a03a9b9c6e42326c87391f38 Signed-off-by: Jim Paris Reviewed-on: http://openocd.zylin.com/2361 Reviewed-by: Andreas Fritiofson Tested-by: jenkins --- src/flash/nor/nrf51.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/flash/nor/nrf51.c b/src/flash/nor/nrf51.c index 711d6fbaad..8f6760d8c4 100644 --- a/src/flash/nor/nrf51.c +++ b/src/flash/nor/nrf51.c @@ -73,7 +73,7 @@ enum nrf51_uicr_registers { NRF51_UICR_BASE = 0x10001000, /* User Information * Configuration Regsters */ - NRF51_UICR_SIZE = 252, + NRF51_UICR_SIZE = 0x100, #define NRF51_UICR_REG(offset) (NRF51_UICR_BASE + offset) -- 2.30.2