aboutsummaryrefslogtreecommitdiffstats
path: root/ports/MSP430
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-06-21 10:01:35 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-06-21 10:01:35 +0000
commitc33d090881ca0a6fc4dc4eaa8c5e8bd8ea4ab7fa (patch)
treeaa0c96878759d3912ecc13e0fe3ec5ae5be69579 /ports/MSP430
parent8183016f1cb574d923c83eab468ca37617051d78 (diff)
downloadChibiOS-c33d090881ca0a6fc4dc4eaa8c5e8bd8ea4ab7fa.tar.gz
ChibiOS-c33d090881ca0a6fc4dc4eaa8c5e8bd8ea4ab7fa.tar.bz2
ChibiOS-c33d090881ca0a6fc4dc4eaa8c5e8bd8ea4ab7fa.zip
Doxygen related fixes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1044 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'ports/MSP430')
-rw-r--r--ports/MSP430/pal_lld.c2
-rw-r--r--ports/MSP430/pal_lld.h2
-rw-r--r--ports/MSP430/port.dox12
3 files changed, 12 insertions, 4 deletions
diff --git a/ports/MSP430/pal_lld.c b/ports/MSP430/pal_lld.c
index 9b8652263..c5f59c2e9 100644
--- a/ports/MSP430/pal_lld.c
+++ b/ports/MSP430/pal_lld.c
@@ -30,7 +30,7 @@
/**
* @brief MSP430 I/O ports configuration.
*
- * @param[in] the MSP430 ports configuration
+ * @param[in] config the MSP430 ports configuration
*
* @note The @p PxIFG, @p PxIE and @p PxSEL registers are cleared. @p PxOUT
* and @p PxDIR are configured as specified.
diff --git a/ports/MSP430/pal_lld.h b/ports/MSP430/pal_lld.h
index cb47b4259..9f977c8c2 100644
--- a/ports/MSP430/pal_lld.h
+++ b/ports/MSP430/pal_lld.h
@@ -212,7 +212,7 @@ typedef union __ioport * ioportid_t;
* @brief Low level PAL subsystem initialization.
* @details In MSP430 programs all the ports as input.
*
- * @param[in] the MSP430 ports configuration
+ * @param[in] config the MSP430 ports configuration
*/
#define pal_lld_init(config) _pal_lld_init(config)
diff --git a/ports/MSP430/port.dox b/ports/MSP430/port.dox
index 3300f4441..e91670709 100644
--- a/ports/MSP430/port.dox
+++ b/ports/MSP430/port.dox
@@ -98,8 +98,16 @@
* - Output latched regardless of the pad setting.
* - Direct read of input pads regardless of the pad setting.
* .
- * The only non atomic operations are bus/group writing.
- *
+ * The only non atomic operations are bus/group writing and pads/group/bus
+ * setup.<br>
+ * The supported setup modes are:
+ * - @p PAL_MODE_RESET.
+ * - @p PAL_MODE_UNCONNECTED.
+ * - @p PAL_MODE_INPUT.
+ * - @p PAL_MODE_OUTPUT_PUSHPULL.
+ * .
+ * The macros for the other modes are disabled, any attempt to setup an invalid
+ * mode is ignored.
* @ingroup MSP430_DRIVERS
*/