文件名稱:ds12c887.c
適用范圍:時(shí)鐘芯片ds12c887的驅(qū)動(dòng)程序
*************************************************************/
#i nclude
/* 命令常量定義*/
#define CMD_START_DS12C887 0x20 /* 開(kāi)啟時(shí)鐘芯片
*/
#define CMD_START_OSCILLATOR 0x70 /* 開(kāi)啟振蕩器,
處于抑制狀態(tài)*/
#define CMD_CLOSE_DS12C887 0x30 /* 關(guān)掉時(shí)鐘芯片
*/
/* 所有的置位使用或操作,清除使用與操作*/
#define MASK_SETB_SET 0x80 /* 禁止刷新*/
#define MASK_CLR_SET 0x7f /* 使能刷新*/
#define MASK_SETB_DM 0x04 /* 使用HEX格式
*/
#define MASK_CLR_DM 0xfb /* 使
用BCD碼格式*/
#define MASK_SETB_2412 0x02 /* 使
用24小時(shí)模式*/
#define MASK_CLR_2412 0xfd /* 使用12小時(shí)模
式*/
#define MASK_SETB_DSE 0x01 /* 使用夏令時(shí)*/
#define MASK_CLR_DSE 0xfe /* 不使用夏令時(shí)
*/
/* 寄存器地址通道定義*/
xdata char chSecondsChannel _at_ 0xdf00;
xdata char chMinutesChannel _at_ 0xdf02;
xdata char chHoursChannel _at_ 0xdf04;
xdata char chDofWChannel _at_ 0xdf06;
xdata char chDateChannel _at_ 0xdf07;
xdata char chMonthChannel _at_ 0xdf08;
xdata char chYearChannel _at_ 0xdf09;