aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/STM32F4xx/UART/chconf.h
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-02-12 14:10:50 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-02-12 14:10:50 +0000
commitbb5a512f595f95bfade58077f2798e64bdb14987 (patch)
treec9c6a513fc9b28169a7f3e0ce962aa2e521c6bb8 /testhal/STM32F4xx/UART/chconf.h
parentc3f2655db931f2a166a3a5d9b8ba4f2be184522e (diff)
downloadChibiOS-bb5a512f595f95bfade58077f2798e64bdb14987.tar.gz
ChibiOS-bb5a512f595f95bfade58077f2798e64bdb14987.tar.bz2
ChibiOS-bb5a512f595f95bfade58077f2798e64bdb14987.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6709 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32F4xx/UART/chconf.h')
-rw-r--r--testhal/STM32F4xx/UART/chconf.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/testhal/STM32F4xx/UART/chconf.h b/testhal/STM32F4xx/UART/chconf.h
index 4fa0bcf4e..b6ca0aa69 100644
--- a/testhal/STM32F4xx/UART/chconf.h
+++ b/testhal/STM32F4xx/UART/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.