(Time)DS1302時(shí)鐘芯片驅(qū)動(dòng)程序
掃描二維碼
隨時(shí)隨地手機(jī)看文章
DS1302的驅(qū)動(dòng)是和應(yīng)用是分開(kāi)寫(xiě)的,這里的代碼是DS1302的驅(qū)動(dòng):
DS1302.H代碼
#ifndef _DS1302_H_
#define _DS1302_H_
#include
#include "TYPEDEF.H"
// 宏定義是否為閏年
#define LEAP_YEAR_NO 0//非閏年
#define LEAP_YEAR_YES 1//閏年
//將二進(jìn)制數(shù)轉(zhuǎn)換為BCD數(shù)
#define BinToBCD(x)( (((uint8)(x)/10)<<4) + ((uint8)(x)) )
//將BCD數(shù)轉(zhuǎn)換為二進(jìn)制數(shù)
#define BCDToBin(x)( (((uint8)(x)>>4)*10) + ((uint8)(x)&0x0f) )
//定義二進(jìn)制時(shí)間信息結(jié)構(gòu)體
struct BinTime_Typedef
{
int8 second;
int8 minute;
int8 hour;
int8 day;
int8 month;
int8 week;
int8 year;
};
//DS1302單次寫(xiě)操作函數(shù)
void DS1302_SingleWrite( uint8 reg, uint8 dat );
//DS1302單次讀操作函數(shù)
uint8 DS1302_SingleRead( uint8 reg );
//DS1302突發(fā)模式寫(xiě)
void DS1302_BurstWrite( const uint8 *dat);
//DS1302突發(fā)模式讀
void DS1302_BurstRead( uint8 *dat );
//獲取當(dāng)前星期
uint8 Get_Week( uint8 year, uint8 month, uint8 day );
//設(shè)置當(dāng)前時(shí)間
void Set_Present_Time( struct BinTime_Typedef *time );
//獲取當(dāng)前時(shí)間
void Get_Present_BinTime( struct BinTime_Typedef *time );
#endif
DS1302.C代碼
#include "DS1302.H"
#include "TYPEDEF.H"
#include
#include "CONFIG.H"
//存儲(chǔ)每月天數(shù)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};
//寫(xiě)數(shù)據(jù)前初始化函數(shù)
static void DS1302_WriteInit( void );
//DS1302寫(xiě)字節(jié)函數(shù)
static void DS1302_ByteWrite( uint8 dat );
//DS1302讀字節(jié)函數(shù)
static uint8 DS1302_ByteRead( void );
//DS1302寫(xiě)保護(hù)
static void DS1302_SetWP( void );
//DS1302清保護(hù)
static void DS1302_ClearWP( void );
//判斷是否為閏年函數(shù)
static uint8 If_LeapYear( uint16 year );
void DS1302_SingleWrite( uint8 reg, uint8 dat )
{
DS1302_WriteInit();//ds1302寫(xiě)初始化
DS1302_ByteWrite( reg );//寫(xiě)入操作寄存器地址
DS1302_ByteWrite( dat );//寫(xiě)入數(shù)據(jù)
DS1302_CE = 0;//CE拉低,高阻態(tài)保護(hù)數(shù)據(jù)
DS1302_IO = 0;//數(shù)據(jù)線拉低
}
uint8 DS1302_SingleRead( uint8 reg )
{
uint8 dat = 0;
DS1302_WriteInit();//DS1302寫(xiě)初始化
DS1302_ByteWrite( reg );//寫(xiě)入寄存器地址
dat = DS1302_ByteRead();//讀取數(shù)據(jù)
DS1302_CE = 0;//CE拉低,保護(hù)數(shù)據(jù)
DS1302_IO = 0;//數(shù)據(jù)線拉低
return dat;//返回讀取的數(shù)值
}
void DS1302_BurstWrite( const uint8 *dat)
{
uint8 i;
uint8 BurstWrite_Reg = 0xbe;//突發(fā)模式寫(xiě)地址
DS1302_ClearWP();//清保
DS1302_WriteInit();//寫(xiě)使能
DS1302_ByteWrite( BurstWrite_Reg );// 寫(xiě)入突發(fā)模式寫(xiě)寄存器地址
for( i = 0;i < 8; i ++ )//數(shù)據(jù)有七個(gè),有一個(gè)是打醬油的,但必須操作8次不可少
{
DS1302_ByteWrite( dat[i] );//寫(xiě)入數(shù)據(jù)
}
DS1302_SetWP();//設(shè)置保護(hù)
}
void DS1302_BurstRead( uint8 *dat )
{
uint8 i;//
uint8 BurstRead_Reg = 0xbf;//突發(fā)模式讀寄存器地址
DS1302_ClearWP();//清保護(hù)
DS1302_WriteInit();//寫(xiě)使能
DS1302_ByteWrite( BurstRead_Reg );//寫(xiě)入突發(fā)模式讀寄存器地址
for( i = 0; i < 8; i ++ )//有一次無(wú)用的讀不可少
{
dat[i] = DS1302_ByteRead();//讀取數(shù)據(jù)
}
DS1302_SetWP();//寫(xiě)保護(hù)
}
uint8 Get_Week( uint8 year, uint8 month, uint8 day )
{
uint16 i;
uint16 DifferDay_Sum = 0;//相差總天數(shù)
uint16 DifferDay_Year = 0;//年相差天數(shù)
uint16 DifferDay_Month = 0;//月相差天數(shù)
uint16 year_temp = 0;//年變量
uint8 week_temp = 0;//星期臨時(shí)變量
year_temp = 2000 + year;//年的基礎(chǔ)是2000年
//計(jì)算從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;
}
}
//計(jì)算從輸入年份的1月1日,到輸入月份1日,共多少天
//先判斷輸入月份是否在2月份以后
if( (If_LeapYear(year_temp) == LEAP_YEAR_YES)&&( month > 2 ) )
{
DifferDay_Month += 1;
}