Doxygen fixes.
authorbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 11 Apr 2005 18:10:45 +0000 (18:10 +0000)
committerbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 11 Apr 2005 18:10:45 +0000 (18:10 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@398 38d2e660-2303-0410-9eaa-f027e97ec537

mware/pgm.h
mware/strtol10.c

index d8ef9f5426df09b5996b9c0c0ce64a7cf70d762c..20bb416e3aab2e202629bf562b3681a8d0db7549 100755 (executable)
@@ -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 */
index 137772232e57d12c9b4646de1c016e3776913175..67ac010d11267519d2df4730b45657aae104ce8a 100755 (executable)
@@ -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.