X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=mware%2Fpgm.h;h=87b46b2822c49ba598766fb9163cef380d5e9b65;hb=377c8e6cb7776c1b7d0368928fc619e20077b87f;hp=d8ef9f5426df09b5996b9c0c0ce64a7cf70d762c;hpb=64969cdb6b48f50b642178779baf9e1e317e0645;p=bertos.git diff --git a/mware/pgm.h b/mware/pgm.h index d8ef9f54..87b46b28 100755 --- a/mware/pgm.h +++ b/mware/pgm.h @@ -22,7 +22,7 @@ #ifndef MWARE_PGM_H #define MWARE_PGM_H -#include +#include #if CPU_AVR @@ -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 */