(Time)DS1302时钟芯片驱动程序
扫描二维码
随时随地手机看文章
DS1302的驱动是和应用是分开写的,这里的代码是DS1302的驱动:
DS1302.H代码
#ifndef _DS1302_H_
#define _DS1302_H_
#include
#include "TYPEDEF.H"
// 宏定义是否为闰年
#define LEAP_YEAR_NO 0//非闰年
#define LEAP_YEAR_YES 1//闰年
//将二进制数转换为BCD数
#define BinToBCD(x)( (((uint8)(x)/10)<<4) + ((uint8)(x)) )
//将BCD数转换为二进制数
#define BCDToBin(x)( (((uint8)(x)>>4)*10) + ((uint8)(x)&0x0f) )
//定义二进制时间信息结构体
struct BinTime_Typedef
{
int8 second;
int8 minute;
int8 hour;
int8 day;
int8 month;
int8 week;
int8 year;
};
//DS1302单次写操作函数
void DS1302_SingleWrite( uint8 reg, uint8 dat );
//DS1302单次读操作函数
uint8 DS1302_SingleRead( uint8 reg );
//DS1302突发模式写
void DS1302_BurstWrite( const uint8 *dat);
//DS1302突发模式读
void DS1302_BurstRead( uint8 *dat );
//获取当前星期
uint8 Get_Week( uint8 year, uint8 month, uint8 day );
//设置当前时间
void Set_Present_Time( struct BinTime_Typedef *time );
//获取当前时间
void Get_Present_BinTime( struct BinTime_Typedef *time );
#endif
DS1302.C代码
#include "DS1302.H"
#include "TYPEDEF.H"
#include
#include "CONFIG.H"
//存储每月天数1, 2, 3, 4, 5, 6, 7, 8, 9,10,11,12月
const uint8 code PerMonth_Day[]={31,28,31,30,31,30,31,31,30,31,30,31};
//写数据前初始化函数
static void DS1302_WriteInit( void );
//DS1302写字节函数
static void DS1302_ByteWrite( uint8 dat );
//DS1302读字节函数
static uint8 DS1302_ByteRead( void );
//DS1302写保护
static void DS1302_SetWP( void );
//DS1302清保护
static void DS1302_ClearWP( void );
//判断是否为闰年函数
static uint8 If_LeapYear( uint16 year );
void DS1302_SingleWrite( uint8 reg, uint8 dat )
{
DS1302_WriteInit();//ds1302写初始化
DS1302_ByteWrite( reg );//写入操作寄存器地址
DS1302_ByteWrite( dat );//写入数据
DS1302_CE = 0;//CE拉低,高阻态保护数据
DS1302_IO = 0;//数据线拉低
}
uint8 DS1302_SingleRead( uint8 reg )
{
uint8 dat = 0;
DS1302_WriteInit();//DS1302写初始化
DS1302_ByteWrite( reg );//写入寄存器地址
dat = DS1302_ByteRead();//读取数据
DS1302_CE = 0;//CE拉低,保护数据
DS1302_IO = 0;//数据线拉低
return dat;//返回读取的数值
}
void DS1302_BurstWrite( const uint8 *dat)
{
uint8 i;
uint8 BurstWrite_Reg = 0xbe;//突发模式写地址
DS1302_ClearWP();//清保
DS1302_WriteInit();//写使能
DS1302_ByteWrite( BurstWrite_Reg );// 写入突发模式写寄存器地址
for( i = 0;i < 8; i ++ )//数据有七个,有一个是打酱油的,但必须操作8次不可少
{
DS1302_ByteWrite( dat[i] );//写入数据
}
DS1302_SetWP();//设置保护
}
void DS1302_BurstRead( uint8 *dat )
{
uint8 i;//
uint8 BurstRead_Reg = 0xbf;//突发模式读寄存器地址
DS1302_ClearWP();//清保护
DS1302_WriteInit();//写使能
DS1302_ByteWrite( BurstRead_Reg );//写入突发模式读寄存器地址
for( i = 0; i < 8; i ++ )//有一次无用的读不可少
{
dat[i] = DS1302_ByteRead();//读取数据
}
DS1302_SetWP();//写保护
}
uint8 Get_Week( uint8 year, uint8 month, uint8 day )
{
uint16 i;
uint16 DifferDay_Sum = 0;//相差总天数
uint16 DifferDay_Year = 0;//年相差天数
uint16 DifferDay_Month = 0;//月相差天数
uint16 year_temp = 0;//年变量
uint8 week_temp = 0;//星期临时变量
year_temp = 2000 + year;//年的基础是2000年
//计算从2000年1月1日,到输入年份1月1日,共多少天
for( i = 2000; i < year_temp; i ++ )
{
if( If_LeapYear(i) == LEAP_YEAR_YES )
{
DifferDay_Year += 366;
}
else
{
DifferDay_Year += 365;
}
}
//计算从输入年份的1月1日,到输入月份1日,共多少天
//先判断输入月份是否在2月份以后
if( (If_LeapYear(year_temp) == LEAP_YEAR_YES)&&( month > 2 ) )
{
DifferDay_Month += 1;
}