當(dāng)前位置:首頁 > 單片機(jī) > 單片機(jī)
[導(dǎo)讀]#include #include #include #include #include "pcf8563.h"#include "lcd.h"#include "keyboard.h"//時鐘芯片數(shù)據(jù)接口PA0#define DATE_DT_set asm("sbi 0x1B,0")#define DATE_DT_clr asm("cbi 0x1B,0")//時鐘芯片時

#include

#include

#include

#include

#include "pcf8563.h"

#include "lcd.h"

#include "keyboard.h"

//時鐘芯片數(shù)據(jù)接口PA0

#define DATE_DT_set asm("sbi 0x1B,0")

#define DATE_DT_clr asm("cbi 0x1B,0")

//時鐘芯片時鐘接口PA1

#define DATE_CLK_set asm("sbi 0x1B,1")

#define DATE_CLK_clr asm("cbi 0x1B,1")

unsigned char old_minute,new_minute;

unsigned char number1[13]=

{

0x30, //0

0x31, //1

0x32, //2

0x33, //3

0x34, //4

0x35, //5

0x36, //6

0x37, //7

0x38, //8

0x39, //9

0x20, //空格

0x2E, //.

0x3A //:

};

void delayus(unsigned char i)

{

while(i)

i--;

}

// ************************************************ //

// *** This routine will send the I2C Start Bit *** //

// ************************************************ //

void I2C_Start (void) //I2C發(fā)送開始位

{

DDRA|=0x03; //將PA0數(shù)據(jù)端口(SDA),PA1時鐘端口(SCL)設(shè)為輸出

DATE_CLK_set; //將時鐘端口(SCL)設(shè)為高

DATE_DT_set; //將數(shù)據(jù)端口(SDA)設(shè)為高

delayus(2);

DATE_DT_clr; //將數(shù)據(jù)端口(SDA)設(shè)為低

delayus(2);

DATE_DT_set;

}

// *********************************************** //

// *** This routine will send the I2C Stop Bit *** //

// *********************************************** //

void I2C_Stop (void) //I2C發(fā)送停止位

{

DDRA|=0x03; //將PA0數(shù)據(jù)端口(SDA),PA1時鐘端口(SCL)設(shè)為輸出

DATE_DT_clr; //將數(shù)據(jù)端口(SDA)設(shè)為低

DATE_CLK_set; //將時鐘端口(SCL)設(shè)為高

delayus(2);

DATE_DT_set; //將數(shù)據(jù)端口(SDA)設(shè)為高

delayus(2);

}

// *********************************************************************** //

// *** 發(fā)送完畢檢查校驗位,有校驗位返回1,無返回0 *** //

// *********************************************************************** //

unsigned char I2C_Ackn(void)

{

unsigned char errtime=255;

//DATE_CLK_clr; // 將時鐘端口(SCL)設(shè)為低

DDRA|=0x02;

DDRA&=0xFE; // 設(shè)置數(shù)據(jù)口(SDA)為輸入

delayus(2);

while(PINA&0x01)

{

errtime--;

if (!errtime) //errtime=0,沒接收到

{

I2C_Stop();

return 0x00;

}

}

DATE_CLK_set;

delayus(2);

DATE_CLK_clr; // 將時鐘端口(SCL)設(shè)為低

delayus(2);

return 0x01; //true

}

// ******************************************************** //

// *** This routine will write a byte to the I2C device *** //

// ******************************************************** //

void Write_I2C_Byte(unsigned char byte) //寫一個字節(jié)到I2C設(shè)備

{

unsigned char i;

DDRA|=0x03; //將PA0數(shù)據(jù)端口(SDA)設(shè)為輸出

for (i = 0; i < 8; i++) //傳送8位數(shù)據(jù)

{

DATE_CLK_clr; //將時鐘端口(SCL)設(shè)為低

if((byte & 0x80)) DATE_DT_set; // 設(shè)置 SDA 位

else DATE_DT_clr; // 清除 SDA 位

delayus(2);

DATE_CLK_set; //將時鐘端口(SCL)設(shè)為高

asm("nop");

byte = byte << 1; //將輸出數(shù)據(jù)左移一位

}

DATE_CLK_clr; // 校驗標(biāo)志位 (每傳送8位,有一校驗位)

if (I2C_Ackn()==0) // Check for acknowledge from I2C device

yonghudenglu();

//DATE_CLK_clr;

}

// ********************************************************* //

// *** This routine will read a byte from the I2C device *** //

// ********************************************************* //

unsigned char Read_I2C_Byte(void) //讀取I2C設(shè)備的數(shù)據(jù)

{

unsigned char i,buff = 0;

delayus(2);

DDRA|=0x02; //PA1為時鐘,輸出

DDRA&=0xfe; //設(shè)置數(shù)據(jù)口(SDA)為輸入

for (i = 0; i < 8; i++)

{

DATE_CLK_clr; // 將時鐘端口(SCL)設(shè)為低

delayus(2);

DATE_CLK_set; //將時鐘端口(SCL)設(shè)為高

delayus(2);

// 在 SDA 位上讀取數(shù)據(jù)

if ( PINA&=0x01 )

buff++;

buff = (buff << 1);

delayus(2);

}

DDRA|=0x03; //設(shè)為輸出,發(fā)送校驗位

DATE_DT_clr;

delayus(2);

DATE_CLK_set;

delayus(2);

DATE_CLK_clr; //將時鐘端口(SCL)設(shè)為高

//DATE_DT_clr;

return buff; // 返回讀取值

}

//讀8563寄存器

unsigned char rtc_read(unsigned char address)

{

unsigned char d;

I2C_Start();

Write_I2C_Byte(0xa2);

Write_I2C_Byte(address);

I2C_Start();

Write_I2C_Byte(0xa3);

d=Read_I2C_Byte();

d=d>>1;

I2C_Stop();

//for(;;){}

return d;

}

////////////////////////////////////////////////////////////////////////////////

//寫8563寄存器

void rtc_write(unsigned char address,unsigned char data1)

{

I2C_Start();

Write_I2C_Byte(0xa2);

Write_I2C_Byte(address);

Write_I2C_Byte(data1);

I2C_Stop();

}

////////////////////////////////////////////////////////////////////////////////

void rtc_start(void)

{

rtc_write(0,0);

}

////////////////////////////////////////////////////////////////////////////////

void rtc_stop(void)

{

rtc_write(0,0x20);

}

void GetPCF8563(unsigned char *time)

{

CLI();

*time=(rtc_read(2)&0x7f); //寄存器0x02為秒寄存器

*(time+1)=(rtc_read(3)&0x7f); //寄存器0x03為分寄存器

*(time+2)=(rtc_read(4)&0x3f); //寄存器0x04為時寄存器

*(time+3)=(rtc_read(5)&0x3f); //寄存器0x05為天寄存器

*(time+4)=(rtc_read(7)&0x1f); //寄存器0x07為月寄存器

*(time+5)=(rtc_read(8)); //寄存器0x08為年寄存器

SEI();

}

unsigned char get_second(void) //獲得當(dāng)前秒數(shù)

{

unsigned i,j;

i=(rtc_read(2)&0x7f); //寄存器0x02為秒寄存器

j=(i&0x0f)+(i>>4)*10;

return j;

}

////////////////////////////////////////////////////////////////////////////////

void SetPCF8563(unsigned char adds,unsigned char data)

{

CLI();

rtc_stop();

rtc_write(adds,data);

rtc_start();

SEI();

}

//設(shè)置時間 (**年/**月/**日 **時:**分)

void set8563(void)

{

unsigned char maini=0,mainj=0,numb[12],newkey;

unsigned char sign=0;

unsigned char *time;

unsigned char displayn[12];

time=numb;

while((mainj<10)||(sign==0))

{

if(kbscan()!=0x20)

{

maini=kbscan();

while(kbscan()==maini)

asm("nop");

if(maini<10)

{

numb[mainj]=maini;

displayn[mainj]=number1[maini];

mainj++;

}

else if(maini==12)

{

if(mainj>0)

mainj--;

numb[mainj]=number1[10];

displayn[mainj]=number1[10];

}

else if((mainj>=10)&&(maini==13))

{

sign=1;

}

display(0x80,displayn[0],displayn[1]);

display(0x81,0x2f,displayn[2]);

display(0x82,displayn[3],0x2f);

display(0x83,displayn[4],displayn[5]);

display(0x84,0x20,0x20);

display(0x85,displayn[6],displayn[7]);

display(0x86,0x3a,displayn[8]);

display(0x87,displayn[9],0x20);

}

}

numb[0]=(numb[0]<<4)+(numb[1]&0x0F); //年

numb[2]=(numb[2]<<4)+(numb[3]&0x0F); //月

numb[4]=(numb[4]<<4)+(numb[5]&0x0F); //日

numb[6]=(numb[6]<<4)+(numb[7]&0x0F); //時

numb[8]=(numb[8]<<4)+(numb[9]&0x0F); //分

SetPCF8563(8,numb[0]); //設(shè)置年

SetPCF8563(7,numb[2]); //設(shè)置月

SetPCF8563(5,numb[4]); //設(shè)置日

SetPCF8563(4,numb[6]); //設(shè)置時

SetPCF8563(3,numb[8]); //設(shè)置分

}

//顯示時間函數(shù),屏幕第一行顯示

void displaytime(unsigned char *time)

{

GetPCF8563(time);

new_minute=*(time+1);

if(new_minute!=old_minute)

{

display(0x80,0x30+(*(time+5)>>4),0x30+(*(time+5)&0x0F));

display(0x81,0x2f,0x30+(*(time+4)>>4));

display(0x82,0x30+(*(time+4)&0x0F),0x2f);

display(0x83,0x30+(*(time+3)>>4),0x30+(*(time+3)&0x0F));

display(0x84,0x20,0x20);

display(0x85,0x30+(*(time+2)>>4),0x30+(*(time+2)&0x0F));

display(0x86,0x3a,0x30+(*(time+1)>>4));

display(0x87,0x30+(*(time+1)&0x0F),0x20);

old_minute=new_minute;

}

//display(0x98,0x30+(*time>>4),0x30+(*time&0x0F));

}

本站聲明: 本文章由作者或相關(guān)機(jī)構(gòu)授權(quán)發(fā)布,目的在于傳遞更多信息,并不代表本站贊同其觀點,本站亦不保證或承諾內(nèi)容真實性等。需要轉(zhuǎn)載請聯(lián)系該專欄作者,如若文章內(nèi)容侵犯您的權(quán)益,請及時聯(lián)系本站刪除。
換一批
延伸閱讀

9月2日消息,不造車的華為或?qū)⒋呱龈蟮莫?dú)角獸公司,隨著阿維塔和賽力斯的入局,華為引望愈發(fā)顯得引人矚目。

關(guān)鍵字: 阿維塔 塞力斯 華為

加利福尼亞州圣克拉拉縣2024年8月30日 /美通社/ -- 數(shù)字化轉(zhuǎn)型技術(shù)解決方案公司Trianz今天宣布,該公司與Amazon Web Services (AWS)簽訂了...

關(guān)鍵字: AWS AN BSP 數(shù)字化

倫敦2024年8月29日 /美通社/ -- 英國汽車技術(shù)公司SODA.Auto推出其旗艦產(chǎn)品SODA V,這是全球首款涵蓋汽車工程師從創(chuàng)意到認(rèn)證的所有需求的工具,可用于創(chuàng)建軟件定義汽車。 SODA V工具的開發(fā)耗時1.5...

關(guān)鍵字: 汽車 人工智能 智能驅(qū)動 BSP

北京2024年8月28日 /美通社/ -- 越來越多用戶希望企業(yè)業(yè)務(wù)能7×24不間斷運(yùn)行,同時企業(yè)卻面臨越來越多業(yè)務(wù)中斷的風(fēng)險,如企業(yè)系統(tǒng)復(fù)雜性的增加,頻繁的功能更新和發(fā)布等。如何確保業(yè)務(wù)連續(xù)性,提升韌性,成...

關(guān)鍵字: 亞馬遜 解密 控制平面 BSP

8月30日消息,據(jù)媒體報道,騰訊和網(wǎng)易近期正在縮減他們對日本游戲市場的投資。

關(guān)鍵字: 騰訊 編碼器 CPU

8月28日消息,今天上午,2024中國國際大數(shù)據(jù)產(chǎn)業(yè)博覽會開幕式在貴陽舉行,華為董事、質(zhì)量流程IT總裁陶景文發(fā)表了演講。

關(guān)鍵字: 華為 12nm EDA 半導(dǎo)體

8月28日消息,在2024中國國際大數(shù)據(jù)產(chǎn)業(yè)博覽會上,華為常務(wù)董事、華為云CEO張平安發(fā)表演講稱,數(shù)字世界的話語權(quán)最終是由生態(tài)的繁榮決定的。

關(guān)鍵字: 華為 12nm 手機(jī) 衛(wèi)星通信

要點: 有效應(yīng)對環(huán)境變化,經(jīng)營業(yè)績穩(wěn)中有升 落實提質(zhì)增效舉措,毛利潤率延續(xù)升勢 戰(zhàn)略布局成效顯著,戰(zhàn)新業(yè)務(wù)引領(lǐng)增長 以科技創(chuàng)新為引領(lǐng),提升企業(yè)核心競爭力 堅持高質(zhì)量發(fā)展策略,塑強(qiáng)核心競爭優(yōu)勢...

關(guān)鍵字: 通信 BSP 電信運(yùn)營商 數(shù)字經(jīng)濟(jì)

北京2024年8月27日 /美通社/ -- 8月21日,由中央廣播電視總臺與中國電影電視技術(shù)學(xué)會聯(lián)合牽頭組建的NVI技術(shù)創(chuàng)新聯(lián)盟在BIRTV2024超高清全產(chǎn)業(yè)鏈發(fā)展研討會上宣布正式成立。 活動現(xiàn)場 NVI技術(shù)創(chuàng)新聯(lián)...

關(guān)鍵字: VI 傳輸協(xié)議 音頻 BSP

北京2024年8月27日 /美通社/ -- 在8月23日舉辦的2024年長三角生態(tài)綠色一體化發(fā)展示范區(qū)聯(lián)合招商會上,軟通動力信息技術(shù)(集團(tuán))股份有限公司(以下簡稱"軟通動力")與長三角投資(上海)有限...

關(guān)鍵字: BSP 信息技術(shù)
關(guān)閉
關(guān)閉