diff options
author | barthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-11-01 18:51:45 +0000 |
---|---|---|
committer | barthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-11-01 18:51:45 +0000 |
commit | ca14dc68facb6fb81862199229e677526d0ee1f1 (patch) | |
tree | 14ac46deea7778f84a8f81089799496b00170762 /testhal/STM32/STM32F4xx/RTC/chconf.h | |
parent | 6d74608aff3f7623cdf63a509d9def131e66b956 (diff) | |
download | ChibiOS-ca14dc68facb6fb81862199229e677526d0ee1f1.tar.gz ChibiOS-ca14dc68facb6fb81862199229e677526d0ee1f1.tar.bz2 ChibiOS-ca14dc68facb6fb81862199229e677526d0ee1f1.zip |
RTCv2. Fixed testhal application.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7454 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32/STM32F4xx/RTC/chconf.h')
-rw-r--r-- | testhal/STM32/STM32F4xx/RTC/chconf.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/testhal/STM32/STM32F4xx/RTC/chconf.h b/testhal/STM32/STM32F4xx/RTC/chconf.h index b6ca0aa69..9294d4f03 100644 --- a/testhal/STM32/STM32F4xx/RTC/chconf.h +++ b/testhal/STM32/STM32F4xx/RTC/chconf.h @@ -259,7 +259,7 @@ * @note The default is @p TRUE.
* @note Requires @p CH_CFG_USE_SEMAPHORES.
*/
-#define CH_CFG_USE_MAILBOXES TRUE
+#define CH_CFG_USE_MAILBOXES FALSE
/**
* @brief I/O Queues APIs.
@@ -276,7 +276,7 @@ *
* @note The default is @p TRUE.
*/
-#define CH_CFG_USE_MEMCORE TRUE
+#define CH_CFG_USE_MEMCORE FALSE
/**
* @brief Heap Allocator APIs.
@@ -288,7 +288,7 @@ * @p CH_CFG_USE_SEMAPHORES.
* @note Mutexes are recommended.
*/
-#define CH_CFG_USE_HEAP TRUE
+#define CH_CFG_USE_HEAP FALSE
/**
* @brief Memory Pools Allocator APIs.
@@ -297,7 +297,7 @@ *
* @note The default is @p TRUE.
*/
-#define CH_CFG_USE_MEMPOOLS TRUE
+#define CH_CFG_USE_MEMPOOLS FALSE
/**
* @brief Dynamic Threads APIs.
@@ -308,7 +308,7 @@ * @note Requires @p CH_CFG_USE_WAITEXIT.
* @note Requires @p CH_CFG_USE_HEAP and/or @p CH_CFG_USE_MEMPOOLS.
*/
-#define CH_CFG_USE_DYNAMIC TRUE
+#define CH_CFG_USE_DYNAMIC FALSE
/** @} */
|