PIC16F84A讀取時(shí)鐘芯片DS1302的簡(jiǎn)單示例
掃描二維碼
隨時(shí)隨地手機(jī)看文章
//引入文件***********************************************************
#include "delay.h"
#include "delay.c"
#include
#include
//熔絲配置***********************************************************
__CONFIG(XT & WDTDIS & PWRTEN & PROTECT);
//引腳定義***********************************************************
#define RS RB4 //選寄存器
#define EN RB5 //信號(hào)使能
//時(shí)鐘芯片***********************************************************
#define RST RA0 //芯片使能
#define CLK RA1 //芯片時(shí)鐘
#define DAT RA2 //芯片數(shù)據(jù)
//顯示字符***********************************************************
unsigned char TopChar[] = {" "}; //顯示緩沖
unsigned char BotChar[] = {" "}; //
//*******************************************************************
//函數(shù)名稱:portInit();
//輸入?yún)?shù):無(wú)
//輸出參數(shù):無(wú)
//功能描述:端口設(shè)置
//建造日期:2008.12.12
//*****************************************************************
void PortInit(void)
{
PORTA = 0x00; //端口設(shè)置
PORTB = 0x00; //
TRISA = 0x00; //方向設(shè)置
TRISB = 0x00; //
OPTION = 0x00; //上拉便能
}
//*******************************************************************
//函數(shù)名稱: WriteData(data, rs);
//輸入?yún)?shù):待寫數(shù)據(jù),0 = 指令 1 = 數(shù)據(jù)
//輸出參數(shù):無(wú)
//功能描述:寫1602LCD
//建造日期:2008.12.12
//*******************************************************************
void WriteData(unsigned char data, unsigned char rs)
{
RS = 0; //假設(shè)指令
if (rs & 0x01) RS = 1; //實(shí)際數(shù)據(jù)
PORTB = ((PORTB & 0xf0 ) | (data >> 4)); //寫高四位
EN = 1; //使能下沿
EN = 0; //
DelayUs(50); //
PORTB = ((PORTB & 0xf0) | (data & 0x0f)); //寫低四位
EN = 1; //使能下沿
EN = 0; //
DelayUs(50); //
}
//*******************************************************************
//函數(shù)名稱:AddrSite();
//輸入?yún)?shù):坐標(biāo)參數(shù)
//輸出參數(shù):無(wú)
//功能描述:設(shè)置顯示地址
//建造日期:2008.12.12
//*******************************************************************
void AddrSite(unsigned char x, unsigned char y)
{
if (y == 0) WriteData((0x80 | x) , 0); //首行地址
else WriteData((0xc0 | x), 0); //次行地址
}
//*******************************************************************
//函數(shù)名稱:PrintChar(*s, len);
//輸入?yún)?shù):緩沖區(qū)首址, 數(shù)據(jù)長(zhǎng)度
//輸出參數(shù):無(wú)
//功能描述:字符串輸出顯示
//建造日期:2008.12.12
//*******************************************************************
void PrintChar(unsigned char *s, unsigned char len)
{
do //循環(huán)發(fā)送
{
WriteData(*s, 1); //顯示字符
s++; //下個(gè)字符
}
while (--len); //顯示一行
}
//*******************************************************************
//函數(shù)名稱:LcdInit();
//輸入?yún)?shù):無(wú)
//輸出參數(shù):無(wú)
//功能描述:液晶初始化
//建造日期:2008.12.12
//*******************************************************************
void LcdInit(void)
{
unsigned char i = 3;
RS = 0; //選擇命令
PORTB = 0x03; //接口設(shè)置
do
{
EN = 1; //使能下沿
EN = 0; //
DelayUs(50);
}
while (--i); //循環(huán)三次
PORTB = 0x02; //四線模式
EN = 1; //使能下沿
EN = 0; //
DelayUs(50);
WriteData(0x28, 0); //接口設(shè)置
WriteData(0x0c, 0); //顯示打開
WriteData(0x01, 0); //顯示清屏
WriteData(0x06, 0); //地址遞增
}
//*******************************************************************
//函數(shù)名稱:WriteByte(data);
//輸入?yún)?shù):待寫數(shù)據(jù)
//輸出參數(shù):無(wú)
//功能描述:Ds1302寫數(shù)據(jù)
//建造日期:2008.12.12
//*******************************************************************
void WriteByte(unsigned char data)
{
unsigned char i;
TRISA2 = 0; //輸出方向
i = 8; //發(fā)送八位
do
{
DAT = 0; //假設(shè)為假
if (data & 0x01) DAT = 1; //實(shí)際為真
CLK = 1; //時(shí)鐘上升
data >>= 1; //右移一位
CLK = 0; //時(shí)鐘清零
}
while (--i); //循環(huán)發(fā)送
}
//*******************************************************************
//函數(shù)名稱:ReadByte();
//輸入?yún)?shù):無(wú)
//輸出參數(shù):時(shí)鐘數(shù)據(jù)
//功能描述:Ds1302讀數(shù)據(jù)
//建造日期:2008.12.12
//*******************************************************************
unsigned char ReadByte(void)
{
unsigned char i, data;
TRISA2 = 1; //輸入方向
i = 8; //收集八位
do
{
data >>= 1; //數(shù)據(jù)右移
if (DAT) data |= 0x80; //記錄一位
CLK = 1; //時(shí)鐘置位
NOP();
CLK = 0; //時(shí)鐘下降
}
while (--i); //循環(huán)接收
return data; //返回?cái)?shù)據(jù)
}
//*******************************************************************
//函數(shù)名稱:WriteDs1302(addr, code);
//輸入?yún)?shù):寄存器地址,指令
//輸出參數(shù):無(wú)
//功能描述:Ds1302寫操作
//建造日期:2008.12.12
//*******************************************************************
void WriteDs1302(unsigned char addr, unsigned char code)
{
RST = 0; //便能清零
CLK = 0; //時(shí)鐘清零
RST = 1; //使用有效
WriteByte(addr & 0xfe); //寫入地址
WriteByte(code); //寫入數(shù)據(jù)
CLK = 1; //時(shí)鐘置位
RST = 0; //便能失效
}
//*******************************************************************
//函數(shù)名稱:ReadDs1302(addr);
//輸入?yún)?shù):寄存器地址
//輸出參數(shù):功能數(shù)據(jù)
//功能描述:Ds1302讀操作
//建造日期:2008.12.12
//*******************************************************************
unsigned char ReadDs1302(unsigned addr)
{
unsigned char code;
RST = 0; //便能清零
CLK = 0; //時(shí)鐘清零
RST = 1; //使用有效
WriteByte(addr | 0x01); //寫入地址
code = ReadByte(); //讀取數(shù)據(jù)
CLK = 1; //時(shí)鐘置位
RST = 0; //便能失效
return code; //返回?cái)?shù)據(jù)
}
//*******************************************************************
//函數(shù)名稱:TimeCahr();
//輸入?yún)?shù):無(wú)
//輸出參數(shù):無(wú)
//功能描述:時(shí)鐘轉(zhuǎn)換字符
//建造日期:2008.12.12
//*******************************************************************
void TimeCahr(void)
{
unsigned char data;
data = ReadDs1302(0x8c); //年 數(shù)據(jù)
TopChar[2] = 0x30 + (data >> 4); //年 十位
TopChar[3] = 0x30 + (data & 0x0f); //年 個(gè)位
data = ReadDs1302(0x88); //月 數(shù)據(jù)
TopChar[5] = 0x30 + (data >> 4); //月 十位
TopChar[6] = 0x30 + (data & 0x0f); //月 個(gè)位
data = ReadDs1302(0x86); //日 數(shù)據(jù)
TopChar[8] = 0x30 + (data >> 4); //日 十位
TopChar[9] = 0x30 + (data & 0x0f); //日 個(gè)位
data = ReadDs1302(0x84); //時(shí)鐘數(shù)據(jù)
BotChar[0] = 0x30 + (data >> 4); //時(shí) 十位
BotChar[1] = 0x30 + (data & 0x0f); //時(shí) 個(gè)位
data = ReadDs1302(0x82); //分鐘數(shù)據(jù)
BotChar[3] = 0x30 + (data >> 4); //分 十位
BotChar[4] = 0x30 + (data & 0x0f); //分 個(gè)位
data = ReadDs1302(0x80); //秒鐘數(shù)據(jù)
BotChar[6] = 0x30 + (data >> 4); //秒 十位
BotChar[7] = 0x30 + (data & 0x0f); //秒 個(gè)位
}
//*******************************************************************
//函數(shù)名稱:Picture();
//輸入?yún)?shù):無(wú)
//輸出參數(shù):無(wú)
//功能描述:顯示圖片
//建造日期:2008.12.12
//*******************************************************************
void Picture(void)
{
TopChar[0] = '2'; //默認(rèn)年號(hào)
TopChar[1] = '0';
TopChar[4] = '/'; //日期標(biāo)號(hào)
TopChar[7] = '/';
BotChar[2] = ':'; //時(shí)鐘標(biāo)號(hào)
BotChar[5] = ':';
}
//*******************************************************************
//函數(shù)名稱:Ds1302Init();
//輸入?yún)?shù):無(wú)
//輸出參數(shù):無(wú)
//功能描述:時(shí)鐘芯片設(shè)置
//建造日期:2008.12.12
//*******************************************************************
void Ds1302Init(void)
{
unsigned char code;
code = ReadDs1302(0x80); //讀振蕩器
if (code & 0x80) //是否停振
{
WriteDs1302(0x8e, 0x00); //允許寫入
WriteDs1302(0x8c, 0x08); //默認(rèn)日期
WriteDs1302(0x88, 0x01);
WriteDs1302(0x86, 0x01);
WriteDs1302(0x84, 0x00); //默認(rèn)時(shí)間
WriteDs1302(0x82, 0x00);
WriteDs1302(0x80, 0x00);
WriteDs1302(0x8e, 0x80); //禁止寫入
}
code = ReadDs1302(0x90); //充電狀態(tài)
if (code != 0xab) //設(shè)置不符
{
WriteDs1302(0x8e, 0x00); //允許寫入
WriteDs1302(0x90, 0xab); //充電設(shè)置
WriteDs1302(0x8e, 0x80); //禁止寫入
}
}
//*******************************************************************
//函數(shù)名稱:main();
//輸入?yún)?shù):無(wú)
//輸出參數(shù):無(wú)
//功能描述:主要程序
//建造日期:2008.12.12
//*******************************************************************
void main(void)
{
unsigned char count, i;
PortInit(); //腳位設(shè)置
LcdInit(); //液晶設(shè)置
Ds1302Init(); //時(shí)鐘設(shè)置
TimeCahr(); //時(shí)間轉(zhuǎn)換
Picture(); //顯示標(biāo)號(hào)
while (1)
{
AddrSite(0, 0); //坐標(biāo)設(shè)置
PrintChar(TopChar, 16); //發(fā)送字符
AddrSite(0, 1); //坐標(biāo)設(shè)置
PrintChar(BotChar, 16); //發(fā)送字符
DelayMs(100); //更新周期
TimeCahr(); //更新時(shí)間
}
}