Index: firmware/App/Controllers/RTC.h =================================================================== diff -u -r408e6e577818831b985f28e6bf777cd9f65b9849 -rca4b67841f4c9136401a2f1011668eb0a468f19a --- firmware/App/Controllers/RTC.h (.../RTC.h) (revision 408e6e577818831b985f28e6bf777cd9f65b9849) +++ firmware/App/Controllers/RTC.h (.../RTC.h) (revision ca4b67841f4c9136401a2f1011668eb0a468f19a) @@ -19,16 +19,6 @@ #include "Common.h" -void initRTC(); - -void execRTC(); - -void setRTCTimestamp( U08 secs, U08 mins, U08 hours, U08 days, U08 months, U16 years ); - -U32 getRTCTimestamp(); - -SELF_TEST_STATUS_T execRTCSelfTest(); - typedef enum RTC_RAM_STATUS { RTC_RAM_STATUS_IDLE = 0, @@ -47,6 +37,16 @@ } RTC_RAM_STATE_T; +void initRTC(); + +void execRTC(); + +void setRTCTimestamp( U08 secs, U08 mins, U08 hours, U08 days, U08 months, U16 years ); + +U32 getRTCTimestamp(); + +SELF_TEST_STATUS_T execRTCSelfTest(); + RTC_RAM_STATUS_T writeToRAM( U16 address, U16* data, U32 length ); RTC_RAM_STATUS_T readFromRAM( U16 address, U32 length ); @@ -58,10 +58,3 @@ void getDataFromRAM( U16* externalBuffer, U32 length ); #endif - - - - - - -