12345678910111213141516 |
- /**********************************************************************
- *RTC.h
- *
- ***********************************************************************/
- #ifndef __RTC_H
- #define __RTC_H
- void RTC_Configuration(void) ;
- void ShowTime(void);
- void SetTime(int h,int m,int s);
- void RTC_ConfigurationSTP1(void);
- void RTC_ConfigurationSTP2(void);
- void Delay_us(int us_cnt);
- void Delay_Timer_Init(void);
- #endif
- /**********************************************************************/
|