




版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡介
.
/
#include"stm32f10x_conf.h"
#include"mrhh_f1.h"
#include"HPF_TIME.h"
#include"HpfDS1302Drive.h"
//
// DS1302?y?ˉF103IO?ú????
// Ver1.0ByMrHDS
// 2016,4.23
//
#if1
#define clkreset GPIOE->BRR=GPIO_Pin_1
#define clkset GPIOE->BSRR=GPIO_Pin_1
#definerstreset GPIOE->BRR=GPIO_Pin_2
#definerstset GPIOE->BSRR=GPIO_Pin_2
#definedatreset GPIOE->BRR=GPIO_Pin_0
#definedatset GPIOE->BSRR=GPIO_Pin_0
#definedatred GPIO_ReadInputDataBit<GPIOE,GPIO_Pin_0> //?áè?êy?Y
#defineDS1302Enable HpfDS1302WritByte<control_add,0x80> //′ò?a±£?¤
#defineDS1302DisEnable HpfDS1302WritByte<control_add,0x00> //1?±?±£?¤
#definetestdat 0x25
#definecheaken 0
#endif
#definedstim1
Ds1302TimeDSTime={21,16,1,1,12,0,0,1};
voidHpfDS1302PinInData<void>
{
GPIO_InitTypeDefGPIO_InitStructure;
RCC_APB2PeriphClockCmd<RCC_APB2Periph_GPIOE,ENABLE>;
GPIO_InitStructure.GPIO_Mode=GPIO_Mode_IPD; //é?à-ê?è?
GPIO_InitStructure.GPIO_Pin=GPIO_Pin_0;
GPIO_InitStructure.GPIO_Speed=GPIO_Speed_50MHz;
GPIO_Init<GPIOE,&GPIO_InitStructure>;
}
voidHpfDS1302PinOutData<void>
{
GPIO_InitTypeDefGPIO_InitSyructure;
RCC_APB2PeriphClockCmd<RCC_APB2Periph_GPIOE,ENABLE>;
GPIO_InitSyructure.GPIO_Mode=GPIO_Mode_Out_PP; //í??aê?3?
GPIO_InitSyructure.GPIO_Pin=GPIO_Pin_0;
GPIO_InitSyructure.GPIO_Speed=GPIO_Speed_50MHz;
GPIO_Init<GPIOE,&GPIO_InitSyructure>;
}
voidHpfDS1302PinClkRst<void>
{
GPIO_InitTypeDefGPIO_InitSyructure;
RCC_APB2PeriphClockCmd<RCC_APB2Periph_GPIOE,ENABLE>;
GPIO_InitSyructure.GPIO_Mode=GPIO_Mode_Out_PP; //í??aê?3?
GPIO_InitSyructure.GPIO_Pin=GPIO_Pin_1|GPIO_Pin_2;
GPIO_InitSyructure.GPIO_Speed=GPIO_Speed_50MHz;
GPIO_Init<GPIOE,&GPIO_InitSyructure>;
}
voidHpfDS1302Init<void>
{
HpfDS1302PinClkRst<>;
clkreset;
rstreset;
//??′??÷?±?ó????ê?3?μíμ???
}
//
// DS1302?y?ˉD′è?ò???μ??·oíêy?Y
// Ver1.0ByMrHDS
// 2016,4.23
//
voidHpfDS1302WritByte<u8addr,u8data> //D′è?êy?Y?úé?éy??óDD§
{
u8i;
HpfDS1302PinOutData<>;
addr&=0xfe; //D′êy?Y£?μ??·×?μí???a??
rstreset;
clkreset;
HpfDealyUs<dstim>;
rstset;
HpfDealyUs<dstim>;
for<i=0;i<8;i++> // D′è?μ??·
{
clkreset;
HpfDealyUs<dstim>;
if<addr&0x01>
datset;
else
datreset;
clkset;
HpfDealyUs<dstim>;
addr>>=1;
// HpfDealyUs<10>;
}
for<i=0;i<8;i++> //D′è?êy?Ydata
{
clkreset;
HpfDealyUs<dstim>;
if<data&0x01>
datset;
else
datreset;
clkset;
HpfDealyUs<dstim>;
data>>=1;
}
rstreset; //í£?1×ü??
clkreset;
}
//
// DS1302?y?ˉ?áè?ò???êy?Y
// Ver1.0ByMrHDS
// 2016,4.23
//
u8HpfDS1302ReadByte<u8addr> //?áè?ò???êy?Y?ú???μ??óDD§£?D′è?μ??·?úé?éy??óDD§
{
u8i,tem=0;
addr|=0x01; //?áêy?Y£?μ??·×?μí???a1
rstreset;
clkreset;
HpfDealyUs<dstim>;
rstset; //???ˉ×ü??
HpfDealyUs<dstim>;
HpfDS1302PinOutData<>;
for<i=0;i<8;i++>
{
clkreset;
HpfDealyUs<dstim>;
if<addr&0x01>
datset;
else
datreset;
clkset;
HpfDealyUs<dstim>;
addr>>=1;
}
HpfDS1302PinInData<>;
for<i=0;i<8;i++>
{
clkreset;
HpfDealyUs<dstim>;
if<datred>
tem|=0x80;
if<i<7>
tem>>=1;
clkset;
HpfDealyUs<dstim>;
}
rstreset;
clkreset;
returntem;
}
u8HpfDSBCDToNum<u8BCD> //8421BCD??×a???aêy×?
{
u8temp,temp1;
temp1=BCD&0x0f;
temp=<<BCD&0xf0>>>4>*10+temp1;
returntemp;
}
u8HpfDSNumToBCD<u8NUM> //êy×?×a???a8421BCD??
{
u8temp;
temp=<<NUM/10><<4>|<NUM%10>;
returntemp;
}
//
// DS1302?y?ˉ??è?ó??§ê±??2¢×a???abcd??2¢?′??μ?DS1302buffer?D
// Ver1.0ByMrHDS
// 2016,4.23
//
voidHpfDSTimrSet<void>
{
HpfWTime*p;
Ds1302Time*s;
p=GetWRTime<>;
s=&DSTime;
s->century=p->MyYear/100+1;
s->year=HpfDSNumToBCD<p->MyYear-<s->century-1>*100>;
s->month=HpfDSNumToBCD<p->MyMon>;
s->day=HpfDSNumToBCD<p->MyDay>;
s->hh=HpfDSNumToBCD<p->MyHH>;
s->mm=HpfDSNumToBCD<p->MyMM>;
s->ss=HpfDSNumToBCD<p->MySS>;
s->week=HpfDSNumToBCD<GetWNLWeek<p,s->day>>;
}
//
// DS1302°?buffer?Dμ?ê±??êy?YD′è?μ?ds1302?D
// Ver1.0ByMrHDS
// 2016,4.23
//
voidHpfDS1302WritData<void>
{
Ds1302Time*s;
s=&DSTime;
DS1302DisEnable; //1?±?D′±£?¤
HpfDS1302WritByte<sec_add,0x80>; //?Yí£ê±?ó
HpfDS1302WritByte<year_add,s->year>;
HpfDS1302WritByte<month_add,s->month>;
HpfDS1302WritByte<day_add,s->day>;
HpfDS1302WritByte<hh_add,s->hh>;
HpfDS1302WritByte<min_add,s->mm>;
HpfDS1302WritByte<sec_add,s->ss>;
HpfDS1302WritByte<week_add,s->week>;
HpfDS1302WritByte<RAM_Address29,testdat>;
DS1302Enable;
}
//
// DS1302?áè?ê±??êy?Y2¢×a???aêy×?2¢′?è??o′??÷?D
// Ver1.0ByMrHDS
// 2016,4.23
//
voidHpfDS1302ReadData<void>
{
Ds1302Time*s;
s=&DSTime;
s->year=HpfDSBCDToNum<HpfDS1302ReadByte<year_add>>;
s->month=HpfDSBCDToNum<HpfDS1302ReadByte<month_add>>;
s->day=HpfDSBCDToNum<HpfDS1302ReadByte<day_add>>;
s->hh=HpfDSBCDToNum<HpfDS1302ReadByte<hh_add>>;
s->mm=HpfDSBCDToNum<HpfDS1302ReadByte<min_add>>;
s->ss=HpfDSBCDToNum<HpfDS1302ReadByte<sec_add>>;
s->week=HpfDSBCDToNum<HpfDS1302ReadByte<week_add>>;
}
//
// DS1302°?ê±??í?2?μ?ó??§ê±??
// Ver1.0ByMrHDS
// 2016,4.23
//
voidHpfDS1302TimeSyn<void>
{
HpfWTime*p;
p=GetWRTime<>;
p->MyYear=<DSTime.century-1>*100+DSTime.year;
p->MyMon=DSTime.month;
p->MyDay=DSTime.day;
p->MyHH=DSTime.hh;
p->MyMM=DSTime.mm;
p->MySS=DSTime.ss;
}
//
// DS1302?y?ˉ??è??o′??÷μ??·
// Ver1.0ByMrHDS
// 2016,4.23
//
Ds1302Time*HpfDS1302GetTime<void>
{
HpfDS1302Init<>;
HpfDS1302ReadData<>;
return&DSTime;
}
//
// DS1302?y?ˉRAM2ù×÷
// Ver1.0ByMrHDS
// 2016,4.23
//
// buffer?a?o′??÷μ??·£?ramaddr?a?ú′?μ??·£?num?aá?D?2ù×÷μ?·??§£?rw?a1£?±íê?D′è?êy?Y£??a0±íê??áè?êy?Y
//
//
//
//
//
//
voidHpfDs1302RamWR<u8*buffer,u8ramaddr,u8num,u8rw>
{
u8i;
if<ramaddr==RAM_Address29>
return;
if<rw>
{
for<i=0;i<num;i++>
{
DS1302DisEnable;
HpfDS1302WritByte<ramaddr+<i<<1>,buffer[i]>;
DS1302Enable;
}
}
else
{
for<i=0;i<num;i++>
buffe
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲(chǔ)空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 代工外包合同標(biāo)準(zhǔn)文本
- 保利地暖合同標(biāo)準(zhǔn)文本
- 喬木購銷合同標(biāo)準(zhǔn)文本
- 二零二五版廠區(qū)租賃協(xié)議書
- 二零二五公司內(nèi)部合伙投資協(xié)議書
- 個(gè)人茶地出租合同樣本
- 二零二五版人投資入股協(xié)議書
- 個(gè)人租房合同樣本首
- 保險(xiǎn)投保合同標(biāo)準(zhǔn)文本
- “像”-與-“不像”05年度美術(shù)教案
- 供應(yīng)室的質(zhì)量改進(jìn)課件
- 機(jī)械公司產(chǎn)品銷售合同簽訂評審申請表
- 統(tǒng)信UOS桌面版系統(tǒng)產(chǎn)品白皮書
- 年產(chǎn)1000噸甲殼素項(xiàng)目環(huán)評報(bào)告書
- 攝影培訓(xùn)教學(xué)課件:攝影用光
- 食品從業(yè)者工作服清洗消毒記錄
- 化妝品經(jīng)營使用單位現(xiàn)場檢查表
- 骨料檢測知識(shí)培訓(xùn)講義
- DB33∕T 2387-2021 外貿(mào)綜合服務(wù)企業(yè)服務(wù)規(guī)范
- 農(nóng)藥經(jīng)營許可管理制度
- 通用精美電子小報(bào)模板(35)
評論
0/150
提交評論