X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/3eb81df998349e90c3d973e6301f19382c5b2e84..1f682ca2de8df89e3fef0077b33070cf2c85e798:/LUFA/Common/Attributes.h?ds=inline 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