Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of nRF51822 by
Diff: nordic/app_common/pstorage.cpp
- Revision:
- 65:98215c4f3a25
- Parent:
- 56:a1071b629aa3
- Child:
- 93:0e7a9efee6d7
--- a/nordic/app_common/pstorage.cpp Mon Sep 08 15:45:22 2014 +0000 +++ b/nordic/app_common/pstorage.cpp Mon Sep 08 17:21:46 2014 +0100 @@ -80,7 +80,9 @@ * @brief Verifies block size requested by Application in registration API. */ #define BLOCK_COUNT_CHECK(COUNT, SIZE) \ - if (((COUNT) == 0) || ((m_next_page_addr + ((COUNT) *(SIZE)) > PSTORAGE_SWAP_ADDR))) \ + if (((COUNT) == 0) || \ + ((m_next_page_addr + ((COUNT) *(SIZE)) > PSTORAGE_SWAP_ADDR)) || \ + ((((COUNT) * (SIZE)) > PSTORAGE_FLASH_PAGE_SIZE) && (PSTORAGE_FLASH_PAGE_SIZE % (SIZE)))) \ { \ return NRF_ERROR_INVALID_PARAM; \ } @@ -372,13 +374,10 @@ { // Flash could be accessed by modules other than Bond Manager, hence a busy error is // acceptable, but any other error needs to be indicated to the bond manager. - if (retval != NRF_ERROR_BUSY) + if (retval == NRF_ERROR_BUSY) { - app_notify(retval); - } - else - { - // In case of busy next trigger will be a success or a failure event. + // In case of busy error code, it is possible to attempt to access flash. + retval = NRF_SUCCESS; } } }