From 2d70b38dbe1e0c5b6abb10a5839a73cc659423d6 Mon Sep 17 00:00:00 2001 From: Rohit Grover Date: Fri, 29 Aug 2014 08:38:20 +0100 Subject: [PATCH] disable pstorage by default --- nordic/app_common/pstorage.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nordic/app_common/pstorage.cpp b/nordic/app_common/pstorage.cpp index 31caea3..02308d9 100644 --- a/nordic/app_common/pstorage.cpp +++ b/nordic/app_common/pstorage.cpp @@ -10,6 +10,8 @@ * */ +#if NEED_PSTORAGE /* disabled by default */ + #include "pstorage.h" #include #include @@ -1120,3 +1122,5 @@ uint32_t pstorage_raw_clear(pstorage_handle_t * p_dest, pstorage_size_t size) } #endif // PSTORAGE_RAW_MODE_ENABLE + +#endif /* #if NEED_PSTORAGE */