aboutsummaryrefslogtreecommitdiffstats
path: root/docs
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 /docs
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 'docs')
-rw-r--r--docs/src/main.dox6
1 files changed, 0 insertions, 6 deletions
diff --git a/docs/src/main.dox b/docs/src/main.dox
index a17c4e008..f5870a276 100644
--- a/docs/src/main.dox
+++ b/docs/src/main.dox
@@ -338,18 +338,12 @@
* lower side and the reader is the upper side.
* - <b>Output queue</b>, unidirectional queue where the writer is the
* upper side and the reader is the lower side.
- * - <b>Half duplex queue</b>, bidirectional queue where the buffer is shared
- * between a receive and a transmit queues. This means that concurrent
- * buffered input and output operations are not possible, this is perfectly
- * acceptable for a lot of applications however, as example an RS485 driver.
* - <b>Full duplex queue</b>, bidirectional queue where read and write
* operations can happen at the same time. Full duplex queues
* are implemented by pairing an input queue and an output queue together.
* .
* In order to use the I/O queues the @p CH_USE_QUEUES option must
* be specified in @p chconf.h.<br>
- * In order to use the half duplex queues the @p CH_USE_QUEUES_HALFDUPLEX
- * option must be specified in @p chconf.h.
*/
/** @} */