RTC.h 353 B

12345678910111213
  1. /**********************************************************************
  2. *RTC.h
  3. *
  4. ***********************************************************************/
  5. #ifndef __RTC_H
  6. #define __RTC_H
  7. void RTC_Configuration(void) ;
  8. void ShowTime(void);
  9. void SetTime(int h,int m,int s);
  10. #endif
  11. /**********************************************************************/