RTCReset
Prototype:
void RTCReset();Parameters: None
Description: Resets RTC.
int RTCReadYear(); int RTCReadMonth(); int RTCReadDayOfMonth(); int RTCReadDayOfWeek(); int RTCReadHour(); int RTCReadMinute(); int RTCReadSecond();Parameters: None
void RTCSetYear(unsigned char thousands, unsigned char hundreds, unsigned char tens, unsigned char ones); void RTCSetMonth(unsigned char tens, unsigned char ones); void RTCSetDayOfMonth(unsigned char tens, unsigned char ones); void RTCSetDayOfWeek(unsigned char ones); void RTCSetHour(unsigned char tens, unsigned char ones); void RTCSetMinute(unsigned char tens, unsigned char ones); void RTCSetSecond(unsigned char tens, unsigned char ones);Parameters (Depends):
// Set 2007 as the year into the RTC RTCSetYear(2, 0, 0, 7);