aboutsummaryrefslogtreecommitdiffstats
path: root/test/coverage/chconf.h
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-05-01 13:11:26 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-05-01 13:11:26 +0000
commitc989a8967cdcbd54109d686678936a3581fd2c70 (patch)
tree6919cca79a2a1652db0006456b8c71c0142a4aec /test/coverage/chconf.h
parent46e56d73491d9141b7ed3f79f2a26d3d9addc8ef (diff)
downloadChibiOS-c989a8967cdcbd54109d686678936a3581fd2c70.tar.gz
ChibiOS-c989a8967cdcbd54109d686678936a3581fd2c70.tar.bz2
ChibiOS-c989a8967cdcbd54109d686678936a3581fd2c70.zip
Removed the CH_USE_SERIAL_HALFDUPLEX, CH_USE_QUEUES_TIMEOUT and CH_USE_QUEUES_HALFDUPLEX configuration options.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@927 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'test/coverage/chconf.h')
-rw-r--r--test/coverage/chconf.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/test/coverage/chconf.h b/test/coverage/chconf.h
index 3666deae2..e739fa365 100644
--- a/test/coverage/chconf.h
+++ b/test/coverage/chconf.h
@@ -243,25 +243,6 @@
#endif
/**
- * If specified then the half duplex queues APIs are included in the kernel.
- * @note The default is @p TRUE.
- * @note Requires @p CH_USE_SEMAPHORES.
- */
-#if !defined(CH_USE_QUEUES_HALFDUPLEX) || defined(__DOXYGEN__)
-#define CH_USE_QUEUES_HALFDUPLEX TRUE
-#endif
-
-/**
- * If specified then the I/O queues with timeout APIs are included in the
- * kernel.
- * @note The default is @p TRUE.
- * @note Requires @p CH_USE_QUEUES and @p CH_USE_SEMAPHORES_TIMEOUT.
- */
-#if !defined(CH_USE_QUEUES_TIMEOUT) || defined(__DOXYGEN__)
-#define CH_USE_QUEUES_TIMEOUT TRUE
-#endif
-
-/**
* If specified then the full duplex serial driver APIs are included in the
* kernel.
* @note The default is @p TRUE.
@@ -272,16 +253,6 @@
#endif
/**
- * If specified then the half duplex serial driver APIs are included in the
- * kernel.
- * @note The default is @p TRUE.
- * @note Requires @p CH_USE_QUEUES_HALFDUPLEX.
- */
-#if !defined(CH_USE_SERIAL_HALFDUPLEX) || defined(__DOXYGEN__)
-#define CH_USE_SERIAL_HALFDUPLEX TRUE
-#endif
-
-/**
* If specified then the memory heap allocator APIs are included in the kernel.
* @note The default is @p TRUE.
* @note Requires @p CH_USE_MUTEXES or @p CH_USE_SEMAPHORES.