diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-08-09 12:57:40 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-08-09 12:57:40 +0000 |
commit | 8576e8da6ab76f07fb877b89f0a3e6afc9bced0c (patch) | |
tree | 19ab677778714ee973b0df62cff9b0fb33a748c9 /os | |
parent | 840b5270c879538e8aaa5ef88e153ab2a083605e (diff) | |
download | ChibiOS-8576e8da6ab76f07fb877b89f0a3e6afc9bced0c.tar.gz ChibiOS-8576e8da6ab76f07fb877b89f0a3e6afc9bced0c.tar.bz2 ChibiOS-8576e8da6ab76f07fb877b89f0a3e6afc9bced0c.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6111 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
-rw-r--r-- | os/hal/include/hal_queues.h | 2 | ||||
-rw-r--r-- | os/hal/src/hal_queues.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/include/hal_queues.h b/os/hal/include/hal_queues.h index de5060bc3..c49d68eb9 100644 --- a/os/hal/include/hal_queues.h +++ b/os/hal/include/hal_queues.h @@ -31,7 +31,7 @@ /* The ChibiOS/RT kernel provides the following definitions by itself, this
check is performed in order to avoid conflicts. */
-#if !defined(_CHIBIOS_RT_) || !CH_USE_QUEUES
+#if !defined(_CHIBIOS_RT_) || !CH_CFG_USE_QUEUES
/**
* @name Queue functions returned status value
diff --git a/os/hal/src/hal_queues.c b/os/hal/src/hal_queues.c index 36016a1e9..5a4465652 100644 --- a/os/hal/src/hal_queues.c +++ b/os/hal/src/hal_queues.c @@ -41,7 +41,7 @@ #include "hal.h"
-#if !defined(_CHIBIOS_RT_) || !CH_USE_QUEUES || defined(__DOXYGEN__)
+#if !defined(_CHIBIOS_RT_) || !CH_CFG_USE_QUEUES || defined(__DOXYGEN__)
/**
* @brief Initializes an input queue.
|