DS1302的單片機(jī)程序
/**********************************************************/
//MSP430 Advanced Developping Components - [DS1302_430.C]
////DS1302 Trickle Charge Timekeeping Chip
/**********************************************************/
//MSP430高級(jí)實(shí)驗(yàn)開發(fā)組件 - DS1302時(shí)鐘芯片
//時(shí)鐘設(shè)置:
////ACLK=N/A,MCLK=SMCLK=default(DCO~800k)
//硬件連接:
//// MSP430 MCU DS1302
//// ------------------ ------------------
//// | P20 | ------> | SCLK |
//// | P21 | ------> | RST |
//// | P22 | ------> | SDI |
//// ------------------ ------------------
//// MSP430 MCU KEYS
//// ------------------ ------------------
//// ------------------ ------------------
//當(dāng)前演示程序功能描述:
////
/*********************************************************/
#include
#define DS1302_DIR P2DIR
#define DS1302_IN P2IN
#define DS1302_OUT P2OUT
#define DS1302_RST BIT1
#define DS1302_SCLK BIT0
#define DS1302_SDI BIT2 //定義MSP320的端口
#define DS1302_RST_LO DS1302_OUT &= ~DS1302_RST
#define DS1302_RST_HI DS1302_OUT |= DS1302_RST
#define DS1302_SCLK_LO DS1302_OUT &= ~DS1302_SCLK
#define DS1302_SCLK_HI DS1302_OUT |= DS1302_SCLK
#define DS1302_SDI_LO DS1302_OUT &= ~DS1302_SDI
#define DS1302_SDI_HI DS1302_OUT |= DS1302_SDI
void DS1302_Delay(unsigned int dtime);
void DS1302_Reset(void);
void DS1302_WriteOneByte(unsigned char w_dat);
void DS1302_WriteData(unsigned char addr,unsigned char w_dat);
void DS1302_SettingData(void);
void DS1302_GetData(unsigned char *str);
unsigned char DS1302_ReadOneByte(void);
unsigned char DS1302_ReadData(unsigned char addr);
unsigned char SettingData[7]={ //bit7 bit6 bit5 bit4 bit3 bit2 bit1 bit0
0x07, //--------十位-------|-------個(gè)位--------|年份(當(dāng)前07年)
0x07, // |-----個(gè)位-----|星期(當(dāng)前周日)
0x07, // |十位|-------個(gè)位--------|月份(當(dāng)前07月)
0x01, // |--十位---|-------個(gè)位--------|日期(當(dāng)前01號(hào))
0x18, //-12H| |--十位---|-------個(gè)位--------|小時(shí)(當(dāng)前18點(diǎn))
0x20, // |-----十位-----|-------個(gè)位--------|分鐘(當(dāng)前20分)
0x30 // |-----十位-----|-------個(gè)位--------|秒鐘(當(dāng)前30秒)
};
unsigned char ReadingData[7]; //讀出來的數(shù)據(jù),同SettingData定義與格式
/****************************
void main(void) {
WDTCTL = WDTPW + WDTHOLD;
DS1302_Reset();
//DS1302_SettingData();
while(1){
DS1302_GetData(ReadingData);
_NOP();
};
}
****************************/
//延時(shí)函數(shù)
void DS1302_Delay(unsigned int dtime) {
unsigned int temp;
for(temp=0;temp}
//DS1302復(fù)位
void DS1302_Reset(void) {
DS1302_DIR |= (DS1302_RST + DS1302_SCLK);
DS1302_SCLK_LO;
DS1302_RST_LO;
DS1302_Delay(10);
DS1302_SCLK_HI;
}
//向DS1302寫入一個(gè)字節(jié)
void DS1302_WriteOneByte(unsigned char w_dat) {
unsigned char temp;
DS1302_RST_HI;
DS1302_DIR |= DS1302_SDI;
for(temp=8;temp>0;temp--) {
DS1302_SDI_LO;
if(w_dat&BIT0) DS1302_SDI_HI;
DS1302_SCLK_LO;
DS1302_Delay(10);
DS1302_SCLK_HI;
DS1302_Delay(10);
w_dat >>=1;
}
}
//從DS1302中讀取一個(gè)字節(jié)
unsigned char DS1302_ReadOneByte(void) {
unsigned char temp,rdata;
rdata = 0x00;
DS1302_RST_HI;
DS1302_DIR &= ~DS1302_SDI;
for(temp=0;temp<7;temp++){
DS1302_SCLK_HI;
DS1302_Delay(10);
DS1302_SCLK_LO;
DS1302_Delay(10);
if((DS1302_IN&DS1302_SDI)==DS1302_SDI)
rdata |= BIT7;
rdata >>= 1;
}
return(rdata);
}
//向DS1302中寫入地址后寫入數(shù)據(jù)
void DS1302_WriteData(unsigned char addr,unsigned char w_dat) {
DS1302_RST_LO;
DS1302_SCLK_LO;
DS1302_RST_HI;
DS1302_WriteOneByte(addr); //寫入地址
DS1302_WriteOneByte(w_dat); //寫入數(shù)據(jù)
DS1302_SCLK_HI;
DS1302_RST_LO;
}
//向DS1302寫入地址后,從DS1302中讀取數(shù)據(jù)
unsigned char DS1302_ReadData(unsigned char addr) {
unsigned char r_dat;
DS1302_RST_LO;
DS1302_SCLK_LO;
DS1302_RST_HI;
DS1302_WriteOneByte(addr); //寫入地址
r_dat = DS1302_ReadOneByte(); //讀出數(shù)據(jù)
DS1302_SCLK_LO;
DS1302_RST_LO;
return(r_dat);
}
//按照SettingData的設(shè)置設(shè)置DS1302的時(shí)間
void DS1302_SettingData(void) {
unsigned char temp;
unsigned char addr = 0x8C;
DS1302_WriteData(0x8E,0x00); //寫入控制命令,禁用寫保護(hù)
for(temp=0;temp<7;temp++) {
DS1302_WriteData(addr,SettingData[temp]);
addr -= 2;
}
DS1302_WriteData(0x8E,0x80); //寫入控制命令,啟用寫保護(hù)
}
//讀取DS1302時(shí)間到ReadingData中
void DS1302_GetData(unsigned char *str) {
unsigned char temp;
unsigned char addr = 0x8D;
for(temp=0;temp<7;temp++) {
str[temp] = DS1302_ReadData(addr);//年
addr -= 2;
}
}
MSP430讀寫DS1302程序(已測試)單片機(jī) 2010-05-04 16:03:44 閱讀27 評(píng)論0 字號(hào):大中小 訂閱
#include
#define DS1302_DIR P1DIR
#define DS1302_IN P1IN
#define DS1302_OUT P1OUT
#define DS1302_RST BIT7
#define DS1302_SCLK BIT5
#define DS1302_SDI BIT6 //定義MSP320的端口
#define DS1302_RST_LO DS1302_OUT &= ~DS1302_RST
#define DS1302_RST_HI DS1302_OUT |= DS1302_RST
#define DS1302_SCLK_LO DS1302_OUT &= ~DS1302_SCLK
#define DS1302_SCLK_HI DS1302_OUT |= DS1302_SCLK
#define DS1302_SDI_LO DS1302_OUT &= ~DS1302_SDI
#define DS1302_SDI_HI DS1302_OUT |= DS1302_SDI
void DS1302_Delay(unsigned int dtime);
void DS1302_Reset(void);
void DS1302_WriteOneByte(unsigned char w_dat);
void DS1302_WriteData(unsigned char addr,unsigned char w_dat);
void DS1302_SettingData(void);
void DS1302_GetData(unsigned char *str);
unsigned char DS1302_ReadOneByte(void);
unsigned char DS1302_ReadData(unsigned char addr);
unsigned char Setting_Time[7]={ //bit7 bit6 bit5 bit4 bit3 bit2 bit1 bit0
0x08, //--------十位-------|-------個(gè)位--------|年份(當(dāng)前07年)
0x01, // |-----個(gè)位-----|星期(當(dāng)前周日)
0x04, // |十位|-------個(gè)位--------|月份(當(dāng)前07月)
0x15, // |--十位---|-------個(gè)位--------|日期(當(dāng)前01號(hào))
0x11, //-12H| |--十位---|-------個(gè)位--------|小時(shí)(當(dāng)前18點(diǎn))
0x09, // |-----十位-----|-------個(gè)位--------|分鐘(當(dāng)前20分)
0x21 // |-----十位-----|-------個(gè)位--------|秒鐘(當(dāng)前30秒)
};
unsigned char ReadingData[7]; //讀出來的數(shù)據(jù),同SettingData定義與格式
/****************************
void main(void) {
WDTCTL = WDTPW + WDTHOLD;
DS1302_Reset();
//DS1302_SettingData();
while(1){
DS1302_GetData(ReadingData);
_NOP();
};
}
****************************/
//延時(shí)函數(shù)
void DS1302_Delay(unsigned int dtime) {
unsigned int temp;
for(temp=0;temp
}
//DS1302復(fù)位
void DS1302_Reset(void) {
DS1302_DIR |= (DS1302_RST + DS1302_SCLK);
DS1302_SCLK_LO;
DS1302_RST_LO;
DS1302_Delay(10);
DS1302_SCLK_HI;
}
//向DS1302寫入一個(gè)字節(jié)
void DS1302_WriteOneByte(unsigned char w_dat) {
unsigned char temp;
DS1302_RST_HI;
DS1302_DIR |= DS1302_SDI;
for(temp=8;temp>0;temp--) {
DS1302_SDI_LO;
if(w_dat&BIT0) DS1302_SDI_HI;
DS1302_SCLK_LO;
DS1302_Delay(10);
DS1302_SCLK_HI;
DS1302_Delay(10);
w_dat >>=1;
}
}
//從DS1302中讀取一個(gè)字節(jié)
unsigned char DS1302_ReadOneByte(void) {
unsigned char temp,rdata;
rdata = 0x00;
DS1302_RST_HI;
DS1302_DIR &= ~DS1302_SDI;
for(temp=0;temp<8;temp++){rdata >>= 1;//將移位放到前面,否則讀不到最高一位
DS1302_SCLK_HI;
DS1302_Delay(10);
DS1302_SCLK_LO;
DS1302_Delay(10);
if((DS1302_IN&DS1302_SDI)==DS1302_SDI)
rdata |= BIT7;
//rdata >>= 1;
}
return(rdata);
}
//向DS1302中寫入地址后寫入數(shù)據(jù)
void DS1302_WriteData(unsigned char addr,unsigned char w_dat) {
DS1302_RST_LO;
DS1302_SCLK_LO;
DS1302_RST_HI;
DS1302_WriteOneByte(addr); //寫入地址
DS1302_WriteOneByte(w_dat); //寫入數(shù)據(jù)
DS1302_SCLK_HI;
DS1302_RST_LO;
}
//向DS1302寫入地址后,從DS1302中讀取數(shù)據(jù)
unsigned char DS1302_ReadData(unsigned char addr) {
unsigned char r_dat;
DS1302_RST_LO;
DS1302_SCLK_LO;
DS1302_RST_HI;
DS1302_WriteOneByte(addr); //寫入地址
r_dat = DS1302_ReadOneByte(); //讀出數(shù)據(jù)
DS1302_SCLK_LO;
DS1302_RST_LO;
return(r_dat);
}
//按照SettingData的設(shè)置設(shè)置DS1302的時(shí)間
void DS1302_SettingData(void) {
unsigned char temp;
unsigned char addr = 0x8C;
DS1302_WriteData(0x8E,0x00); //寫入控制命令,禁用寫保護(hù)
for(temp=0;temp<7;temp++) {
DS1302_WriteData(addr,Setting_Time[temp]);
addr -= 2;
}
DS1302_WriteData(0x8E,0x80); //寫入控制命令,啟用寫保護(hù)
}
//讀取DS1302時(shí)間到ReadingData中
void DS1302_GetData(unsigned char *str) {
unsigned char temp;
unsigned char addr = 0x8D;
for(temp=0;temp<7;temp++) {
str[temp] = DS1302_ReadData(addr);//年
addr -= 2;
}
}
void main(void)
{
unsigned char time1[7];
WDTCTL = WDTPW + WDTHOLD; // Stop WDT
BTCTL = BTFRFQ1+BT_ADLY_500; ; // ACLK/(256*16)
DS1302_Reset();
while(1)
{
DS1302_GetData(time1);
DS1302_SettingData();
DS1302_GetData(time1);
}
}
廢話不多說 直接上代碼
希望此代碼能符合我的簽名~
/********************通用宏定義*********************************/
#define SETBIT(x,y) (x|=(1<
#define BCD2DEC(X) (((X&0x70)>>4)*10 + (X&0x0F)) //用于將BCD碼轉(zhuǎn)成十進(jìn)制的宏
/*************************端口定義*******************************/
#define T_CLK PD5
#define T_IO PD4
#define T_RST PB3
/*********************************************************************/
#define CLRBIT_T_CLK() CLRBIT(PORTD,T_CLK)
#define SETBIT_T_CLK() SETBIT(PORTD,T_CLK)
#define CLRBIT_T_IO() CLRBIT(PORTD,T_IO)
#define SETBIT_T_IO() SETBIT(PORTD,T_IO)
#define CLRBIT_T_RST() CLRBIT(PORTB,T_RST)
#define SETBIT_T_RST() SETBIT(PORTB,T_RST)
/*******************************************************
函數(shù)名:
功能:
入口參數(shù):
出口參數(shù):
備注:
********************************************************/
void Ds1302_IO_Init(void)
{
SETBIT(DDRD,T_CLK);
SETBIT(DDRB,T_RST);
SETBIT(DDRD,T_IO);
}
/*******************************************************
函數(shù)名:
功能:
入口參數(shù):
出口參數(shù):
備注:
********************************************************/
void Ds1203_RW_Init(void)
{
CLRBIT_T_RST();
CLRBIT_T_CLK();
SETBIT_T_RST();
_delay_us(5);
}
/*******************************************************
函數(shù)名:
功能:
入口參數(shù):
出口參數(shù):
備注:
********************************************************/
void Ds1302_Write(uchar xBuff)
{
char N;
for(N=0;N<=7;N++)
{
if(CHKBIT(xBuff,N))
SETBIT_T_IO();
else
CLRBIT_T_IO();
CLRBIT_T_CLK();
asm volatile ("nop");
SETBIT_T_CLK(); //上升沿,發(fā)送數(shù)據(jù)
}
}
/*******************************************************
函數(shù)名:
功能:
入口參數(shù):
出口參數(shù):
備注:
********************************************************/
uchar Ds1302_Read(void)
{
uchar RecvBuff=0;
char N;
CLRBIT(DDRD,T_IO); //<---------移植注意這里
for(N=0;N<=7;N++)
{
SETBIT_T_CLK(); //
asm volatile ("nop");
CLRBIT_T_CLK(); //下降沿接受數(shù)據(jù)
asm volatile ("nop");
if(CHKBIT(PIND,T_IO))SETBIT(RecvBuff,N);
}
SETBIT(DDRD,T_IO); //<----------移植注意這里
return RecvBuff;
}
/*******************************************************
函數(shù)名:
功能:
入口參數(shù):
出口參數(shù):
備注:
********************************************************/
void Ds1302_RW_End(void)
{
CLRBIT_T_RST();
CLRBIT_T_CLK();
}
/*******************************************************
函數(shù)名:
功能:
入口參數(shù):
出口參數(shù):
備注:
********************************************************/
void Ds1302_Write_At(uchar Addr,uchar xBuff)
{
Ds1302_IO_Init();
Ds1203_RW_Init();
Ds1302_Write(Addr);
Ds1302_Write(xBuff);
Ds1302_RW_End();
}
/*******************************************************
函數(shù)名:
功能:
入口參數(shù):
出口參數(shù):
備注:
********************************************************/
uchar Ds1302_Read_At(uchar Addr)
{
uchar RecvBuff=0;
Ds1302_IO_Init();
Ds1203_RW_Init();
Ds1302_Write(Addr);
RecvBuff=Ds1302_Read();
Ds1302_RW_End();
return RecvBuff;
}
/*******************************************************
函數(shù)名:
功能:
入口參數(shù):
出口參數(shù):
備注:
********************************************************/
void DS1302_Init(void)
{
Ds1302_IO_Init();
Ds1203_RW_Init();
DS1302_Write_At(0x8e,0x00); //0x8e: 0x00關(guān)閉寫保護(hù)
DS1302_Write_At(0x90,0xAB); //寫入命令
DS1302_Write_At(0x80,0x00); //打開寫保護(hù)
Ds1302_RW_End();
}
void RTC_Get(uchar *RecvBuff)
{
char N;
uchar Addr = 0x81;
cli();
for (N=0;N<7;N++)
{
*RecvBuff++ = BCD2DEC(Ds1302_Read_At(Addr));
Addr += 2;
}
sei();
}
void RTC_Set(uchar *xBuff)
{
char N;
uchar Addr = 0x80;
Ds1302_Write_At(0x8e,0x00);
for(N =0;N<7;N++)
{
Ds1302_Write_At(Addr,DEC2BCD(*xBuff));
xBuff++;
Addr +=2;
}
Ds1302_Write_At(0x8e,0x80);
Ds1302_RW_End();
}