From 4335268a932f69b494d98da91b33d7f74e4d3cd0 Mon Sep 17 00:00:00 2001 From: Andrew Scheller Date: Thu, 25 Feb 2021 15:52:21 +0000 Subject: [PATCH] Default PARAM_ASSERTIONS_ENABLED_LOCK_CORE to 0 (#184) so that it matches all the other PARAM_ASSERTIONS_* default values --- src/common/pico_sync/include/pico/lock_core.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/common/pico_sync/include/pico/lock_core.h b/src/common/pico_sync/include/pico/lock_core.h index 9c6893e..d8f36f2 100644 --- a/src/common/pico_sync/include/pico/lock_core.h +++ b/src/common/pico_sync/include/pico/lock_core.h @@ -10,9 +10,9 @@ #include "pico.h" #include "hardware/sync.h" -// PICO_CONFIG: PARAM_ASSERTIONS_ENABLED_LOCK_CORE, Enable/disable assertions in the lock core, type=bool, default=1, group=pico_sync +// PICO_CONFIG: PARAM_ASSERTIONS_ENABLED_LOCK_CORE, Enable/disable assertions in the lock core, type=bool, default=0, group=pico_sync #ifndef PARAM_ASSERTIONS_ENABLED_LOCK_CORE -#define PARAM_ASSERTIONS_ENABLED_LOCK_CORE 1 +#define PARAM_ASSERTIONS_ENABLED_LOCK_CORE 0 #endif /** \file lock_core.h @@ -30,4 +30,4 @@ typedef struct lock_core { void lock_init(lock_core_t *core, uint lock_num); -#endif \ No newline at end of file +#endif