RTC.h 476 B

12345678910111213141516
  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. void RTC_ConfigurationSTP1(void);
  11. void RTC_ConfigurationSTP2(void);
  12. void Delay_us(int us_cnt);
  13. void Delay_Timer_Init(void);
  14. #endif
  15. /**********************************************************************/