aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Common
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-04-15 14:22:06 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-04-15 14:22:06 +0000
commit1f682ca2de8df89e3fef0077b33070cf2c85e798 (patch)
treeabebf57dfeeeab8473b80ab67f0ce4789cb90728 /LUFA/Common
parent3eb81df998349e90c3d973e6301f19382c5b2e84 (diff)
downloadlufa-1f682ca2de8df89e3fef0077b33070cf2c85e798.tar.gz
lufa-1f682ca2de8df89e3fef0077b33070cf2c85e798.tar.bz2
lufa-1f682ca2de8df89e3fef0077b33070cf2c85e798.zip
Minor documentation improvements.
Diffstat (limited to 'LUFA/Common')
-rw-r--r--LUFA/Common/Attributes.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/LUFA/Common/Attributes.h b/LUFA/Common/Attributes.h
index 62d40734a..fed511a50 100644
--- a/LUFA/Common/Attributes.h
+++ b/LUFA/Common/Attributes.h
@@ -122,12 +122,16 @@
#endif
/** Places the function in one of the initialization sections, which execute before the main function
- * of the application. The init function number can be specified as "x", as an integer. Refer to the
- * avr-libc manual for more information on the initialization sections.
+ * of the application. Refer to the avr-libc manual for more information on the initialization sections.
+ *
+ * \param[in] x Initialization section number where the function should be placed
*/
#define ATTR_INIT_SECTION(x) __attribute__ ((naked, section (".init" #x )))
- /** Marks a function as an alias for another function of name "x". */
+ /** Marks a function as an alias for another function.
+ *
+ * \param[in] x Name of the function which the given function name should alias
+ */
#define ATTR_ALIAS(x) __attribute__ ((alias( #x )))
#endif