Index: RTC.h =================================================================== diff -u -rf6f638e2d46b6b4581ac599e38fae339ea478750 -r383eddc9d7e0487233d3a774f7d425a71c19e29a --- RTC.h (.../RTC.h) (revision f6f638e2d46b6b4581ac599e38fae339ea478750) +++ RTC.h (.../RTC.h) (revision 383eddc9d7e0487233d3a774f7d425a71c19e29a) @@ -29,6 +29,8 @@ * @{ */ +// ********** public definitions ********** + /// RTC RAM status enumeration. typedef enum RTC_RAM_STATUS { @@ -49,6 +51,14 @@ } RTC_RAM_STATE_T; +/// Real time clock data structure +typedef struct +{ + U32 epochTime; ///< Epoch time +} RTC_DATA_T; + +// ********** public function prototypes ********** + void initRTC( void ); void execRTC( void );