aboutsummaryrefslogtreecommitdiffstats
path: root/demos/TIVA/RT-TM4C123G-LAUNCHPAD/chconf.h
diff options
context:
space:
mode:
authormarcoveeneman <marco-veeneman@hotmail.com>2017-11-24 22:23:27 +0100
committermarcoveeneman <marco-veeneman@hotmail.com>2017-11-24 22:23:27 +0100
commit93dd54ecdcfce8ad063a4d951473f110e15c28df (patch)
treeb6e47518c4a86ce80b14dae5d56af7dd52f5a01a /demos/TIVA/RT-TM4C123G-LAUNCHPAD/chconf.h
parent77bf52e0428392acc83bc12c4699b61dae43467e (diff)
downloadChibiOS-Contrib-93dd54ecdcfce8ad063a4d951473f110e15c28df.tar.gz
ChibiOS-Contrib-93dd54ecdcfce8ad063a4d951473f110e15c28df.tar.bz2
ChibiOS-Contrib-93dd54ecdcfce8ad063a4d951473f110e15c28df.zip
Fixed compile errors in demos
Diffstat (limited to 'demos/TIVA/RT-TM4C123G-LAUNCHPAD/chconf.h')
-rw-r--r--demos/TIVA/RT-TM4C123G-LAUNCHPAD/chconf.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/demos/TIVA/RT-TM4C123G-LAUNCHPAD/chconf.h b/demos/TIVA/RT-TM4C123G-LAUNCHPAD/chconf.h
index 0d24275..9c9f341 100644
--- a/demos/TIVA/RT-TM4C123G-LAUNCHPAD/chconf.h
+++ b/demos/TIVA/RT-TM4C123G-LAUNCHPAD/chconf.h
@@ -183,6 +183,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.