#include<pic.h>
#define uchar unsigned char
#define uint unsigned int
#define add 0xaa
__CONFIG(0x3B31)
const uchar ee_data[]={1,2,3,4,5,6}
uchar read_data[6]
const uchar table[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,
0x07,0x7f,0x6f,0x77,0x7c,0x39,0x5e,0x79,0x71}
void delay(uint x)
void init()
void didi(uchar num)
void disp(uchar num1,uchar num2,uchar num3,uchar num4,uchar num5,uchar num6)
void write()
void read()
void main()
{
init()
write()
delay(100)
read()
while(1)
{
disp(read_data[0],read_data[1],read_data[2],read_data[3],read_data[4],read_data[5])
}
}
void delay(uint x)
{
uint a,b
for(a=xa>0a--)
for(b=110b>0b--)
}
void init()
{
TRISD=0
TRISA=0
TRISE0=0
// ADCON1=0x07
RE0=0
PORTD=0
PORTA=0
TRISC=0xff
SSPSTAT=0x80
SSPCON=0x38
SSPCON2=0
SSPADD=0x09
}
void write()
{
uchar i
SSPIF=0
SEN=1
while(!SSPIF)
SSPIF=0
SSPBUF=0xA0
while(!SSPIF)
SSPIF=0
SSPBUF=add
while(!SSPIF)
SSPIF=0
for(i=0i<6i++)
{
SSPBUF=ee_data[i]
while(!SSPIF)
SSPIF=0
}
PEN=1
while(!SSPIF)
SSPIF=0
}
void read()
{
uchar i
SSPIF=0
SEN=1
while(!SSPIF)
SSPIF=0
SSPBUF=0xA0
while(!SSPIF)
SSPIF=0
SSPBUF=add
while(!SSPIF)
SSPIF=0
SSPIF=0
RSEN=1
while(!SSPIF)
SSPIF=0
SSPBUF=0xA1
while(!SSPIF)
SSPIF=0
for(i=0i<6i++)
{
RCEN=1
while(!SSPIF)
read_data[i]=SSPBUF
while(!SSPIF)
SSPIF=0
if(i>=5)
{
ACKDT=1
}
else
{
ACKDT=0
}
ACKEN=1
while(!SSPIF)
SSPIF=0
}
PEN=1
while(!SSPIF)
SSPIF=0
}
void didi(uchar num)
{
uchar di_num
for(di_num=numdi_num>0di_num--)
{
RE0=1
delay(50)
RE0=0
delay(20)
}
}
void disp(uchar num1,uchar num2,uchar num3,uchar num4,uchar num5,uchar num6)
{
PORTD=table[num1]//显示第一个数码管
PORTA=0x20//0010 0000
delay(2)
PORTD=table[num2]//显示第二个数码管
PORTA=0x10//0001 0000
delay(2)
PORTD=table[num3]//显示第三个数码管
PORTA=0x08//0000 1000
delay(2)
PORTD=table[num4]//显示第四个数码管
PORTA=0x04//0000 0100
delay(2)
PORTD=table[num5]//显示第五个数码管
PORTA=0x02//0000 0010
delay(2)
PORTD=table[num6]//显示第六个数码管
PORTA=0x01//0000 0001
delay(2)
}
//AT24C系列读写程序//本程序调试通过
#include "csh.h"
#include<reg51.h>
#include <intrins.h>
sbit SDA=P3^3//AT24C02数据线
sbit SCL=P3^2//AT24C02时钟线
//sbit SDA=P3^4//AT24C02数据线
//sbit SCL=P3^3//AT24C02时钟线
void start()
// 开始位
{
SDA = 1
SCL = 1
_nop_()
_nop_()
SDA = 0
_nop_()
_nop_()
_nop_()
_nop_()
SCL = 0
}
void stop()
// 停止位
{
SDA = 0
_nop_()
_nop_()
SCL = 1
_nop_()
_nop_()
_nop_()
_nop_()
SDA = 1
}
unsigned char shin()
// 从AT24Cxx移入数据到MCU
{
unsigned char i,read_data
for(i = 0i <8i++)
{
SCL = 1
read_data <<= 1
read_data |= (unsigned char)SDA
SCL = 0
}
return(read_data)
}
bit shout(unsigned char write_data)
// 从MCU移出数据到AT24Cxx
{
unsigned char i
bit ack_bit
for(i = 0i <8i++) // 循环移入8个位
{
SDA = (bit)(write_data &0x80)
_nop_()
SCL = 1
_nop_()
_nop_()
SCL = 0
write_data <<= 1
}
SDA = 1 // 读取应答
_nop_()
_nop_()
SCL = 1
_nop_()
_nop_()
_nop_()
_nop_()
ack_bit = SDA
SCL = 0
return ack_bit // 返回AT24Cxx应答位
}
void write_byte(unsigned char addr, unsigned char write_data)
// 在指定地址addr处写入数据write_data
{
start()
shout(OP_WRITE)
shout(addr)
shout(write_data)
stop()
delay(10) // 写入周期
}
unsigned char read_current()
// 在当前地址读取
{
unsigned char read_data
start()
shout(OP_READ)
read_data = shin()
stop()
return read_data
}
unsigned char read_random(unsigned char random_addr)
// 在指定地址读取
{
start()
shout(OP_WRITE)
shout(random_addr)
return(read_current())
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)