clock_func.h
上传用户:poi891205
上传日期:2013-07-15
资源大小:9745k
文件大小:1k
源码类别:

DVD

开发平台:

C/C++

  1. #ifndef __CLOCK_FUNC_H_
  2. #define __CLOCK_FUNC_H_
  3. /*****************************************************
  4. Creater: xiongyuyue
  5. Date   : 2004-10-11
  6. Description: for oritron power receiver clock function
  7.              when the system enter into standby mode.
  8. *****************************************************/
  9. #define PCF8563 0xa2
  10. //register define
  11. #define CONTRL1  0x00   //bit7--bit0: TEST  0  STOP  0  TESTC  0  0  0
  12. #define CONTRL2  0x01   //bit7--bit0: 0  0  0  TI/TF  AF  TF  AIE  TIE
  13. #define SECONDS  0x02   //current seconds value coded in BCD format 00--59
  14. #define MINUTES  0x03   //current minutes value coded in BCD format 00--59
  15. #define HOURS    0x04   //current hours value coded in BCD format   00--23
  16. #define RTC_NORMAL 0x00
  17. #define RTC_SET  0x01
  18. #define RTC_DISP  0
  19. #define RTC_INPUT 1
  20. BYTE uRtcMode;
  21. BYTE uInputIndex;
  22. BYTE uRtcTimeHour;
  23. BYTE uRtcTimeMin;
  24. BYTE uRtcTimeSec;
  25. BYTE uRtcState;
  26. UINT32 uTimeSetVal;
  27. #endif