aboutsummaryrefslogtreecommitdiffstats
path: root/docs/src
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-06-01 19:50:42 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-06-01 19:50:42 +0000
commit6d9146901cd9503180ec272f5b3af12e08553277 (patch)
treeafaf26bfc91c221fc1872160f721cd9fefc10611 /docs/src
parent080e6abe804c5404c4d81614cf130b4ce332efcd (diff)
downloadChibiOS-6d9146901cd9503180ec272f5b3af12e08553277.tar.gz
ChibiOS-6d9146901cd9503180ec272f5b3af12e08553277.tar.bz2
ChibiOS-6d9146901cd9503180ec272f5b3af12e08553277.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1007 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'docs/src')
-rw-r--r--docs/src/main.dox8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/src/main.dox b/docs/src/main.dox
index d62ebda3e..f38920462 100644
--- a/docs/src/main.dox
+++ b/docs/src/main.dox
@@ -359,7 +359,7 @@
* @brief Abstract digital I/O ports.
* @details This module defines an abstract interface for digital I/O ports.
* Note that no code is present, I/O ports are just a set of macros that must
- * be implemented by a low level I/O port driver.<br>
+ * be implemented by an @ref IOPortsLLD.<br>
* Currently the I/O ports interface does not handle physical port programming
* like direction, pull up/down resistors etc. The interface only allows input
* and output operations but this may change in future releases.
@@ -367,10 +367,10 @@
* independent from the implementation logic.
*
* <h2>Implementation Rules</h2>
- * In implementing an I/O port low level driver there are some rules that
+ * In implementing an @ref IOPortsLLD there are some rules/behaviors that
* should be respected.
*
- * <h3>Write on input pads</h3>
+ * <h3>Writing on input pads</h3>
* The behavior is not specified but there are implementations better than
* others, this is the list of possible implementations, preferred options
* are on top:
@@ -381,7 +381,7 @@
* pull up/down resistors or changing the pad direction. This scenario is
* discouraged, please try to avoid this scenario.
* .
- * <h3>Read from output pads</h3>
+ * <h3>Reading from output pads</h3>
* The behavior is not specified but there are implementations better than
* others, this is the list of possible implementations, preferred options
* are on top: