From: Jim Paris Date: Tue, 28 Oct 2014 20:20:16 +0000 (-0400) Subject: nrf51: fix UICR region size X-Git-Tag: v0.9.0-rc1~238 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=6412b0656bb5122f3b7d59729a42191f3ebde9fb 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 --- 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)