X25045驅(qū)動(dòng)程序
/********************************************************************************************/
/* This is a demo for X25045.
/*
/*
/*
/* By Dragon.W
/* Jun.2005
/*********************************************************************************************/
//#ifndef MASTER_FILE
//#i nclude "REG52.H"
//#i nclude "STDIO.H"
//#i nclude "STRING.H"
//#i nclude "intrins.h"
//#endif
//#i nclude "reg52.h"
//#i nclude "intrins.h"
//#i nclude "stdio.h"
/*********************************************************************************************/
sbit X25045_so = P2^2;
sbit X25045_si = P2^1;
sbit X25045_sck = P2^0;
sbit X25045_cs = P2^3;
//#define X25045_so P1^4
//#define X25045_si P1^5
//#define X25045_sck P1^6
//#define X25045_cs P1^0
#define X25045_cs_L P2|=0x50
#define X25045_cs_H P2&=~0xF0
#define OUTPUT_LOW(PIN) PIN=0
#define OUTPUT_HIGH(PIN) PIN=1
#define WREN 0x06 //寫允許
#define WRDI 0x04 //寫禁止
#define RDSR 0x05 //讀狀態(tài)寄存器
#define WRSR 0x01 //寫狀態(tài)寄存器
#define READ 0x03 //讀命令
#define WRITE 0x02 //寫命令
#define T 500 //寫命令
/**********************************************************************************************
/**********************************************************************************************
原形:void Wait(unsigned long int t)
功能:延時(shí)。
參數(shù): 。
返回值:無。
***********************************************************************************************/
void Wait(unsigned long int t)reentrant
{
while(t--);
}
/**********************************************************************************************
原形:void SendByteToX25045(unsigned char byte)
功能:向X25045發(fā)送一個(gè)字節(jié)。
參數(shù):byte發(fā)送字節(jié)。
返回值:無。
***********************************************************************************************/
//#pragma DISABLE
void SendByteToX25045(unsigned char byte)
{
unsigned char i;
for(i=0;i<8;i++)
{
OUTPUT_LOW(X25045_sck);
_nop_();
if(byte>=0x80) OUTPUT_HIGH(X25045_si);
else OUTPUT_LOW(X25045_si);
//_nop_();
OUTPUT_HIGH(X25045_sck);
_nop_();
//_nop_();
byte<<=1;
}
//OUTPUT_LOW(X25045_si);
}
/**********************************************************************************************
原形:unsigned char RcvByteFromX25045(void)
功能:讀一個(gè)字節(jié)。
參數(shù):無。
返回值:讀出的字節(jié)。
***********************************************************************************************/
unsigned char RcvByteFromX25045(void)
{
unsigned char i;
unsigned char byte;
for(i=0;i<8;i++)
{
//OUTPUT_HIGH(X25045_sck);
OUTPUT_LOW(X25045_sck);
_nop_();
//_nop_();
byte<<=1;
if(X25045_so==1) byte|=0x01;
OUTPUT_HIGH(X25045_sck);
//OUTPUT_LOW(X25045_sck);
_nop_();
//_nop_();
}
return(byte);
}
/**********************************************************************************************
原形:void X25045WriteEnable(unsigned char en)
功能:X25045寫使能、禁止。
參數(shù):en=0禁止,en=1使能。
返回值:無。
***********************************************************************************************/
void X25045WriteEnable(unsigned char en)
{
OUTPUT_LOW(X25045_sck);
//OUTPUT_LOW(X25045_cs);
X25045_cs_H;
_nop_();
//_nop_();
X25045_cs_L;
_nop_();
//_nop_();
if(en)
{
SendByteToX25045(WREN);
}
else {
SendByteToX25045(WRDI);
}
OUTPUT_HIGH(X25045_cs);
X25045_cs_H;
_nop_();
_nop_();
}
/**********************************************************************************************
原形:unsigned char ReadByteX25045(unsigned int addr)
功能:讀1個(gè)字節(jié)。
參數(shù):addr 地址。
返回值:讀出的字節(jié)。
***********************************************************************************************/
unsigned char ReadByteX25045(unsigned int addr)
{
unsigned char ch;
OUTPUT_LOW(X25045_sck);
//OUTPUT_LOW(X25045_cs);
X25045_cs_H;
_nop_();
_nop_();
X25045_cs_L;
_nop_();
_nop_();
//if(addr&0x100)
if(addr>511)addr=511;
if(addr>255)
SendByteToX25045(READ|0x08);
else SendByteToX25045(READ);
SendByteToX25045((char)(addr&0x00ff));
ch=RcvByteFromX25045();
//OUTPUT_HIGH(X25045_cs);
X25045_cs_H;
_nop_();
_nop_();
return(ch);
}
/**********************************************************************************************
原形:void WriteByteX25045(unsigned int addr,unsigned char ch)
功能:寫1個(gè)字節(jié)。
參數(shù):addr 地址,ch 寫字節(jié)內(nèi)容。
返回值:無。
***********************************************************************************************/
#pragma DISABLE
void WriteByteX25045(unsigned int addr,unsigned char ch)
{
X25045WriteEnable(1);
OUTPUT_LOW(X25045_sck);
//OUTPUT_LOW(X25045_cs);
X25045_cs_H;
_nop_();
//_nop_();
X25045_cs_L;
_nop_();
//_nop_();
//if(addr&0x100)
if(addr>511)addr=511;
if(addr>255)
SendByteToX25045(WRITE|0x08);
else SendByteToX25045(WRITE);
SendByteToX25045((char)(addr&0x00ff));
SendByteToX25045(ch);
//OUTPUT_LOW(X25045_sck);
//OUTPUT_HIGH(X25045_cs);
X25045_cs_H;
//_nop_();
//_nop_();
Wait(T);
//X25045WriteEnable(0);
}
/**********************************************************************************************
原形:unsigned char * ReadEEpromArray(unsigned int addr,unsigned char * s,unsigned int len)
功能:讀一串字符。
參數(shù):addr 起始地址,s 目的指針,len字符長度。
返回值:讀出的字符串首指針。
***********************************************************************************************/
/*
unsigned char * ReadEEpromArray(unsigned int addr,unsigned char * s,unsigned int len)
{
unsigned int i;
OUTPUT_LOW(X25045_sck);
//OUTPUT_LOW(X25045_cs);
X25045_cs_H;
_nop_();
_nop_();
X25045_cs_L;
_nop_();
_nop_();
//if(addr&0x100)
if(addr>511)addr=511;
if(addr>255)
SendByteToX25045(READ|0x08);
else SendByteToX25045(READ);
SendByteToX25045((char)(addr&0x00ff));
for(i=0;i
s[i]=RcvByteFromX25045();
}
//OUTPUT_HIGH(X25045_cs);
X25045_cs_H;
return(s);
}*/
/**********************************************************************************************
原形:void PageWriteEEprom(unsigned int addr,unsigned char * s,unsigned int len)
功能:X25045頁寫功能。
參數(shù):addr 起始地址,s字符源指針,
返回值:無。
***********************************************************************************************/
/*
void PageWriteEEprom(unsigned int addr,unsigned char * s,unsigned int len)
{
unsigned int i;
X25045WriteEnable(1);
_nop_();
_nop_();
OUTPUT_LOW(X25045_sck);
//OUTPUT_LOW(X25045_cs);
X25045_cs_H;
_nop_();
_nop_();
X25045_cs_L;
_nop_();
_nop_();
if(addr>511)addr=511;
if(addr>255)
SendByteToX25045(WRITE|0x08);
else SendByteToX25045(WRITE);
SendByteToX25045((char)(addr&0x00ff));
for(i=0;i
//OUTPUT_HIGH(X25045_cs);
X25045_cs_H;
_nop_();
_nop_();
Wait(T);
//X25045WriteEnable(0);
}*/
/**********************************************************************************************
原形:void WriteStatusRegister(unsigned char sr)
功能:寫狀態(tài)寄存器
參數(shù):sr要寫的內(nèi)容。
返回值:無。
***********************************************************************************************/
void WriteStatusRegister(unsigned char sr)
{
//X25045WriteEnable(1);
//_nop_();
//_nop_();
//OUTPUT_LOW(X25045_sck);
//OUTPUT_LOW(X25045_cs);
X25045_cs_H;
_nop_();
//_nop_();
X25045_cs_L;
_nop_();
//_nop_();
SendByteToX25045(WRSR);
SendByteToX25045(sr);
//OUTPUT_HIGH(X25045_cs);
X25045_cs_H;
_nop_();
//_nop_();
Wait(T);
}
/**********************************************************************************************
原形:
功能:
參數(shù):
返回值:
***********************************************************************************************/
void SetWatchDog(unsigned char t)
{
WriteStatusRegister(t);
}
/**********************************************************************************************
原形:void ReadStr(unsigned int addr,unsigned char * s,unsigned int len)
功能:字符串讀。
參數(shù):addr地址,s字符指針,len字符串長度。
返回值:無。
***********************************************************************************************/
void ReadStr(unsigned int addr,unsigned char * s,unsigned int len)reentrant
{
unsigned int i;
for(i=0;i
s[i]=ReadByteX25045(addr+i);
}
}
/**********************************************************************************************
原形:void WriteStr(unsigned int addr,unsigned char * s,unsigned int len)
功能:字符串寫。
參數(shù):addr地址,s字符指針,len字符串長度
返回值:無。
***********************************************************************************************/
void WriteStr(unsigned int addr,unsigned char * s,unsigned int len)reentrant
{
unsigned int i;
for(i=0;i
WriteByteX25045(addr+i,s[i]);
}
}