Index: RTC.h =================================================================== diff -u -re8828d66e4a76e0590c3f06b7f6235f33df64e80 -r6c500be6ac0c5adffc0d91b666862e35ba27e2db --- RTC.h (.../RTC.h) (revision e8828d66e4a76e0590c3f06b7f6235f33df64e80) +++ RTC.h (.../RTC.h) (revision 6c500be6ac0c5adffc0d91b666862e35ba27e2db) @@ -20,7 +20,16 @@ #include "Common.h" -/// RTC RAM status +/** + * @defgroup RTC RTC + * @brief Real time clock module. This module controls the clock and + * the RAM of the RTC chip + * + * @addtogroup RTC + * @{ + */ + +/// RTC RAM status enumeration. typedef enum RTC_RAM_STATUS { RTC_RAM_STATUS_IDLE = 0, ///< Status idle @@ -32,7 +41,7 @@ } RTC_RAM_STATUS_T; -/// RTC RAM states +/// RTC RAM states enumeration. typedef enum RTC_RAM_STATE { RTC_RAM_STATE_READY = 0, ///< RAM ready @@ -60,4 +69,6 @@ void getDataFromRAM( U08* externalBuffer, U32 length ); +/**@}*/ + #endif