git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6111 35acf78f-673a-0410-8e92-d51de3d6d3f4

master
gdisirio 2013-08-09 12:57:40 +00:00
parent 840b5270c8
commit 8576e8da6a
3 changed files with 3 additions and 3 deletions

View File

@ -290,7 +290,7 @@
* @note The default is @p TRUE.
*/
#if !defined(CH_CFG_USE_QUEUES) || defined(__DOXYGEN__)
#define CH_CFG_USE_QUEUES FALSE
#define CH_CFG_USE_QUEUES TRUE
#endif
/**

View File

@ -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

View File

@ -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.