aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/STM32F30x/SPI/chconf.h
diff options
context:
space:
mode:
Diffstat (limited to 'testhal/STM32F30x/SPI/chconf.h')
-rw-r--r--testhal/STM32F30x/SPI/chconf.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/testhal/STM32F30x/SPI/chconf.h b/testhal/STM32F30x/SPI/chconf.h
index 4fa0bcf4e..b6ca0aa69 100644
--- a/testhal/STM32F30x/SPI/chconf.h
+++ b/testhal/STM32F30x/SPI/chconf.h
@@ -184,6 +184,16 @@
#define CH_CFG_USE_MUTEXES TRUE
/**
+ * @brief Enables recursive behavior on mutexes.
+ * @note Recursive mutexes are heavier and have an increased
+ * memory footprint.
+ *
+ * @note The default is @p FALSE.
+ * @note Requires @p CH_CFG_USE_MUTEXES.
+ */
+#define CH_CFG_USE_MUTEXES_RECURSIVE FALSE
+
+/**
* @brief Conditional Variables APIs.
* @details If enabled then the conditional variables APIs are included
* in the kernel.