传统的 EEPROM是电可擦可编程只读存储一种掉电后数据不丢失的存储芯片。
STC89C52RC的 EEPROM是通过 ISP/IAP 技术读写内部 FLASH 来实现 EEPROM。
STC89C52RC的 EEPROM起始地址为 0x2000,以 512字节为一个扇区,EERPOM的大小为 2K字节。
STC89C52RC 与 EEPORM 实现的寄存器有 6 个,分别是 ISP_DATA、ISP_ADDRH、ISP_ADDRL ISP_TRIG、ISP_CMD、ISP_CONTR。
EEPROM的命令触发必须对 ISP_TRIG寄存器先写入 0x46,再写入 0xB9。
无论单片机运行在什么工作频率下,EEPROM的读、写、擦除操作的所需要的时间分别约为 10us、60us、10ms,因而要对 ISP_CONTR设置好等待时间,否则数据容易出现问题。
. c文件
#include"eeprom.h"
sfr isp_data=0xe2;
sfr isp_addrh=0xe3;
sfr isp_addrl=0xe4;
sfr isp_cmd=0xe5;
sfr isp_trig=0xe6;
sfr isp_contr=0xe7;
void eepromEraseSector (unsigned int address)
{
unsigned char i;
isp_addrl=address;
isp_addrh=address>>8;
isp_contr=0x01;
isp_contr=isp_contr|0x81;
isp_cmd=0x03;
isp_trig=0x46; /“prom的命令触发必须对isp——trig寄存器先写入0x46,再写入0xb9
isp_trig=0xb9;
for(i=0;i<3;i++);
isp_addrl=0xff;
isp_addrh=0xff;
isp_contr=0x00;
isp_cmd=0x00;
isp_trig=0x00;
}
void eepromWrite(unsigned int address, unsigned char write_data)
{
unsigned char i;
isp_data=write_data;
isp_addrl=address;
isp_addrh=address>>8;
isp_contr=0x01;
isp_contr=isp_contr|0x81;
isp_cmd=0x02;
isp_trig=0x46;
isp_trig=0xb9;
for(i=0;i<3;i++);
isp_addrl=0xff;
isp_addrh=0xff;
isp_contr=0x00;
isp_cmd=0x00;
isp_trig=0x00;
}
unsigned char eepromRead(unsigned int address)
{
unsigned char i,z;
isp_addrl=address;
isp_addrh=address>>8;
isp_contr=0x01;
isp_contr=isp_contr|0x81;
isp_cmd=0x01;
isp_trig=0x46;
isp_trig=0xb9;
for(i=0;i<3;i++);
isp_addrl=0xff;
isp_addrh=0xff;
isp_contr=0x00;
isp_cmd=0x00;
isp_trig=0x00;
z=isp_data;
return(z);
}
. h文件
#ifndef __EEPROM_H__
#define __EEPROM_H__
#define STC_EEPROM_START_ADDR 0x2000
unsigned char eepromRead( unsigned int address );
void eepromWrite( unsigned int address, unsigned char writeData );
void eepromEraseSector( unsigned int address );
#endif
|