From: bernie Date: Mon, 11 Apr 2005 18:10:45 +0000 (+0000) Subject: Doxygen fixes. X-Git-Tag: 1.0.0~843 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=cdf3e45aaa38fc701dceeb57e6ceedd6ca68f408;p=bertos.git Doxygen fixes. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@398 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/mware/pgm.h b/mware/pgm.h index d8ef9f54..20bb416e 100755 --- a/mware/pgm.h +++ b/mware/pgm.h @@ -164,9 +164,7 @@ typedef PROGMEM uint32_t pgm_uint32_t; /*\}*/ /*! - * \def PGM_READ_CHAR - * \def PGM_FUNC - * \def PGM_ATTR + * \name PGM support macros. * * These macros enable dual compilation of code for both program * and data memory. @@ -193,6 +191,8 @@ typedef PROGMEM uint32_t pgm_uint32_t; * // To be used when invoking inside other PGM_FUNC functions: * PGM_FUNC(lcd_puts)(some_string); * \endcode + * + * \{ */ #ifdef _PROGMEM #define PGM_READ_CHAR(s) pgm_read_char(s) @@ -203,6 +203,7 @@ typedef PROGMEM uint32_t pgm_uint32_t; #define PGM_FUNC(x) x #define PGM_ATTR /* nothing */ #endif +/* \} */ #endif /* MWARE_PGM_H */ diff --git a/mware/strtol10.c b/mware/strtol10.c index 13777223..67ac010d 100755 --- a/mware/strtol10.c +++ b/mware/strtol10.c @@ -13,6 +13,9 @@ /*#* *#* $Log$ + *#* Revision 1.2 2005/04/11 18:10:45 bernie + *#* Doxygen fixes. + *#* *#* Revision 1.1 2005/03/15 00:06:30 bernie *#* Simpler, smaller, faster. *#* @@ -29,7 +32,7 @@ * * \param first Pointer to first byte of input range (STL-style). * \param last Pointer to end of input range (STL-style). - * Pass NULL to parse up to the first \0. + * Pass NULL to parse up to the first \\0. * \param val Pointer to converted value. * * \return true for success, false for failure.