时钟芯片ds12c887的C51驱动程序
2015-10-22
文件名称:ds12c887.c
适用范围:时钟芯片ds12c887的驱动程序
*************************************************************/
#i nclude
/* 命令常量定义*/
#define CMD_START_DS12C887 0x20 /* 开启时钟芯片
*/
#define CMD_START_OSCILLATOR 0x70 /* 开启振荡器,
处于抑制状态*/
#define CMD_CLOSE_DS12C887 0x30 /* 关掉时钟芯片
*/
/* 所有的置位使用或操作,清除使用与操作*/
#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小时模式*/
#define MASK_CLR_2412 0xfd /* 使用12小时模
式*/
#define MASK_SETB_DSE 0x01 /* 使用夏令时*/
#define MASK_CLR_DSE 0xfe /* 不使用夏令时
*/
/* 寄存器地址通道定义*/
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;