git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6111 35acf78f-673a-0410-8e92-d51de3d6d3f4
parent
840b5270c8
commit
8576e8da6a
|
@ -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
|
||||
|
||||
/**
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue