No.91358 作者:hjx22 邮件:huangjianxin22@163.com ID:50897 登陆:1次 文章数:1篇 最后登陆IP:61.183.148.130 最后登陆:2006/4/8 10:19:06 注册:2006/4/8 10:06:37 财富:105 发帖时间:2006/4/8 10:19:06 发贴者IP:61.183.148.130 标题:hjx22:93c46读写请教 摘要:No.9135893c46读写请教 93c46读写程序” #include <reg52.h> sbit CS=P2^7; sbit SK=P2^6; sbit DI=P2^5; sbit DO=P2^4; /* extern unsigned char ReadChar(unsigned char address); extern void WriteChar(unsigned char address,unsigned char InData); extern void ReadString(unsigned char data *RamAddress,unsigned char RomAddress, unsigned char Number); extern void WriteString(unsigned char data *RamAddress,unsigned char RomAddress,unsigned char Number); */ // Write enable must precede all programming modes. void Ewen(void) { unsigned char temp,InData; CS=0; SK=0; CS=1; InData=0x98; // 10011XXXX for(temp=9;temp!=0;temp--) { // 9 DI=InData&0x80; SK=1; SK=0; InData < <=1; } CS=0; } // Disables all programming instructions. void Ewds(void) { unsigned char temp,InData; CS=0; SK=0; CS=1; InData=0x80; // 10000XXXX for(temp=9;temp!=0;temp--) { // 9 DI=InData&0x80; SK=1; SK=0; InData < <=1; } CS=0; } // Reads data stored in memory, at specified address. unsigned int Read(unsigned char address) { unsigned char temp; unsigned int result; Ewen(); SK=0; DI=1; // 110 A5-A0 CS=0; CS=1; SK=1; SK=0; // 1 address=address&0x3f|0x80; for(temp=8;temp!=0;temp--) { // 8 DI=address&0x80; SK=1; SK=0; address < <=1; } DO=1; for(temp=16;temp!=0;temp--) { // 16 SK=1; result=(result < <1)|DO; SK=0; } CS=0; Ewds(); return(result); } // Writes memory location An - A0. void Write(unsigned char address,unsigned int InData) { unsigned char temp; Ewen(); SK=0; DI=1; // 101 A5-A0 CS=0; CS=1; SK=1; SK=0; // 1 address=address&0x3f|0x40; for(temp=8;temp!=0;temp--) { // 8 DI=address&0x80; SK=1; SK=0; address < <=1; } for(temp=16;temp!=0;temp--) { // 16 DI=InData&0x8000; SK=1; SK=0; InData < <=1; } CS=0; DO=1; CS=1; SK=1; while(DO==0) { // busy test SK=0; SK=1; } SK=0; CS=0; Ewds(); } /* // Erase memory location An - A0. void Erase(unsigned char address) { unsigned char temp; Ewen(); SK=0; DI=1; // 111 A5-A0 CS=0; CS=1; SK=1; SK=0; // 1 address|=0xc0; for(temp=8;temp!=0;temp--) { // 8 DI=address&0x80; SK=1; SK=0; address < <=1; } CS=0; DO=1; CS=1; SK=1; while(DO==0) { SK=0; SK=1; } SK=0; CS=0; E ......
>>返回讨论的主题
|