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
Revision 33:8efbbf54b66f, committed 2014-06-26
- Comitter:
- Rohit Grover
- Date:
- Thu Jun 26 14:58:41 2014 +0100
- Parent:
- 32:84dea0924a63
- Child:
- 34:48d24b1d2fe6
- Commit message:
- disabling the persistent storage module; will be re-enabled as necessary
Is needed only for storing bonding information.
Was taking up excessive amounts of RAM.
Changed in this revision
| btle/btle.cpp | Show annotated file Show diff for this revision Revisions of this file |
| nordic/app_common/pstorage.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/btle/btle.cpp Thu Jun 26 14:06:37 2014 +0100
+++ b/btle/btle.cpp Thu Jun 26 14:58:41 2014 +0100
@@ -57,7 +57,9 @@
/**************************************************************************/
static void sys_evt_dispatch(uint32_t sys_evt)
{
+#if NEED_PSTORAGE /* disabled by default */
pstorage_sys_event_handler(sys_evt);
+#endif
}
/**************************************************************************/
--- a/nordic/app_common/pstorage.cpp Thu Jun 26 14:06:37 2014 +0100 +++ b/nordic/app_common/pstorage.cpp Thu Jun 26 14:58:41 2014 +0100 @@ -10,6 +10,8 @@ * */ +#if NEED_PSTORAGE /* disabled by default */ + #include <stdlib.h> #include <stdint.h> #include <string.h> @@ -757,3 +759,4 @@ } #endif // PSTORAGE_RAW_MODE_ENABLE +#endif /* #if NEED_PSTORAGE */
