fork of Nordic nRF51822 library

Fork of nRF51822 by Nordic Semiconductor

Revision:
638:f822ec741b45
Parent:
608:d9f8ffc6fc07
--- a/source/nordic_sdk/components/libraries/fstorage/fstorage_config.h	Tue Jan 12 19:58:03 2016 +0000
+++ b/source/nordic_sdk/components/libraries/fstorage/fstorage_config.h	Sat Aug 13 01:20:53 2016 +0000
@@ -82,7 +82,12 @@
  */
 static __INLINE uint32_t fs_flash_page_end_addr()
 {
+// sc: refer to https://developer.mbed.org/questions/68259/nRF51822-library-not-compiling/
+#if 0
     uint32_t const bootloader_addr = NRF_UICR->NRFFW[0];
+#else
+    uint32_t const bootloader_addr = NRF_UICR->BOOTLOADERADDR;
+#endif
     return  ((bootloader_addr != FS_EMPTY_MASK) ?
              bootloader_addr : NRF_FICR->CODESIZE * FS_PAGE_SIZE);
 }