rtc.h
上传用户:jinguanrq
上传日期:2022-06-04
资源大小:724k
文件大小:1k
源码类别:

uCOS

开发平台:

C/C++

  1. #ifndef __RTC_H__
  2. #define __RTC_H__
  3. static int  year;
  4. static int  month,day,weekday,hour,min,sec;
  5. int Test_Rtc_Alarm(void);
  6. void Rtc_Init(void);
  7. void Read_Rtc(void);
  8. void Display_Rtc(void);
  9. void Test_Rtc_Tick(void);
  10. void EV40_rtc_Disp(void);
  11. void __irq Rtc_Int(void)  ;
  12. void __irq Rtc_Tick(void) ;
  13. #define TESTYEAR  (0x02)
  14. #define TESTMONTH  (0x12)
  15. #define TESTDAY (0x31)
  16. #define TESTDATE        (0x03)  // SUN:1 MON:2 TUE:3 WED:4 THU:5 FRI:6 SAT:7   
  17. #define TESTHOUR (0x23)
  18. #define TESTMIN (0x59)
  19. #define TESTSEC (0x59)
  20. #define TESTYEAR2 (0x03)
  21. #define TESTMONTH2  (0x01)
  22. #define TESTDAY2 (0x01)
  23. #define TESTHOUR2 (0x00)
  24. #define TESTMIN2 (0x00)
  25. #define TESTSEC2 (0x00)
  26. #endif //__RTC_H__