aboutsummaryrefslogtreecommitdiffstats
path: root/docs/src
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-05-03 09:51:01 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-05-03 09:51:01 +0000
commit62a6638eb544f2c3d9022bcb34cae181aa8f7aae (patch)
tree2824331e6e59e511963608603d65010d70ebf140 /docs/src
parenta8df5dfb84dc37224222520ead47d4cef40ebd9f (diff)
downloadChibiOS-62a6638eb544f2c3d9022bcb34cae181aa8f7aae.tar.gz
ChibiOS-62a6638eb544f2c3d9022bcb34cae181aa8f7aae.tar.bz2
ChibiOS-62a6638eb544f2c3d9022bcb34cae181aa8f7aae.zip
Added I/O queue checks to the channels, added notes in the readme, improved the FullDuplexDriver.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@940 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'docs/src')
-rw-r--r--docs/src/concepts.dox4
-rw-r--r--docs/src/main.dox2
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/src/concepts.dox b/docs/src/concepts.dox
index 725be9b52..ed37ed349 100644
--- a/docs/src/concepts.dox
+++ b/docs/src/concepts.dox
@@ -35,8 +35,8 @@
* ChibiOS/RT APIs are all named following this convention:
* @a ch\<group\>\<action\>\<suffix\>().
* The possible groups are: @a Sys, @a Sch, @a Time, @a VT, @a Thd, @a Sem,
- * @a Mtx, @a Cond, @a Evt, @a Msg, @a IQ, @a OQ, @a HQ, @a FDD, @a HDD,
- * @a Dbg, @a Heap, @a Pool.
+ * @a Mtx, @a Cond, @a Evt, @a Msg, @a IQ, @a OQ, @a IO, @a FDD, @a Dbg,
+ * @a Heap, @a Pool.
*
* @section api_suffixes API Names Suffixes
* The suffix can be one of the following:
diff --git a/docs/src/main.dox b/docs/src/main.dox
index ea30d420f..2e76e0a75 100644
--- a/docs/src/main.dox
+++ b/docs/src/main.dox
@@ -313,7 +313,7 @@
* you should look at the systems as to a set of abstract C++ classes (even if
* implemented in C). Specific device drivers can use/extend the interfaces
* and implement them.<br>
- * This system has the advantage to make the access to the device drivers
+ * This system has the advantage to make the access to channels
* independent from the implementation logic. As example, an I/O channel
* interface can hide the access to a serial driver, to a networking socket
* and so on.