STC8H8读写W25Q128FV例程
时间: 2023-10-24 11:07:59 浏览: 129
以下是STC8H8读写W25Q128FV的例程,仅供参考:
```c
#include <STC8.H>
#include <intrins.h>
#define uchar unsigned char
#define uint unsigned int
sbit CS = P2^7; // W25Q128FV的片选引脚
void delay(uint t)
{
while (t--);
}
void SPI_Init()
{
SPSTAT = 0xC0; // 设置SPI模式
SPCTL = 0x50; // 主机模式,时钟为Fosc/4
P1M1 = 0x00; // P1口设置为常规IO口
P1M0 = 0x00;
P2M1 = 0x00; // P2.5、P2.6、P2.7设置为常规IO口
P2M0 = 0x00;
CS = 1; // 片选置高
}
uchar SPI_SendByte(uchar byte)
{
SPDAT = byte;
while(!SPIF);
SPIF = 0;
return SPDAT;
}
void W25Q128FV_WriteEnable()
{
CS = 0;
SPI_SendByte(0x06); // 发送写使能命令
CS = 1;
}
void W25Q128FV_WriteDisable()
{
CS = 0;
SPI_SendByte(0x04); // 发送写禁止命令
CS = 1;
}
void W25Q128FV_WaitForBusy()
{
uchar status;
do {
CS = 0;
SPI_SendByte(0x05); // 发送读状态寄存器命令
status = SPI_SendByte(0xFF); // 读取状态寄存器
CS = 1;
} while (status & 0x01); // 等待BUSY位清零
}
void W25Q128FV_EraseSector(uint addr)
{
W25Q128FV_WriteEnable(); // 发送写使能命令
W25Q128FV_WaitForBusy(); // 等待WIP位清零
CS = 0;
SPI_SendByte(0x20); // 发送扇区擦除命令
SPI_SendByte(addr >> 16); // 发送地址的高8位
SPI_SendByte(addr >> 8); // 发送地址的中8位
SPI_SendByte(addr); // 发送地址的低8位
CS = 1;
W25Q128FV_WaitForBusy(); // 等待WIP位清零
W25Q128FV_WriteDisable(); // 发送写禁止命令
}
void W25Q128FV_WritePage(uint addr, uchar *buf, uint len)
{
W25Q128FV_WriteEnable(); // 发送写使能命令
W25Q128FV_WaitForBusy(); // 等待WIP位清零
CS = 0;
SPI_SendByte(0x02); // 发送页编程命令
SPI_SendByte(addr >> 16); // 发送地址的高8位
SPI_SendByte(addr >> 8); // 发送地址的中8位
SPI_SendByte(addr); // 发送地址的低8位
while (len--) {
SPI_SendByte(*buf++);
}
CS = 1;
W25Q128FV_WaitForBusy(); // 等待WIP位清零
W25Q128FV_WriteDisable(); // 发送写禁止命令
}
void W25Q128FV_ReadData(uint addr, uchar *buf, uint len)
{
CS = 0;
SPI_SendByte(0x03); // 发送读取数据命令
SPI_SendByte(addr >> 16); // 发送地址的高8位
SPI_SendByte(addr >> 8); // 发送地址的中8位
SPI_SendByte(addr); // 发送地址的低8位
while (len--) {
*buf++ = SPI_SendByte(0xFF);
}
CS = 1;
}
void main()
{
uchar buf[256];
SPI_Init(); // 初始化SPI
W25Q128FV_EraseSector(0x000000); // 擦除第一个扇区
buf[0] = 'H';
buf[1] = 'e';
buf[2] = 'l';
buf[3] = 'l';
buf[4] = 'o';
buf[5] = ',';
buf[6] = ' ';
buf[7] = 'W';
buf[8] = 'o';
buf[9] = 'r';
buf[10] = 'l';
buf[11] = 'd';
buf[12] = '!';
W25Q128FV_WritePage(0x000000, buf, 13); // 写入13个字节
W25Q128FV_ReadData(0x000000, buf, 13); // 读取13个字节
while (1);
}
```
注意:以上代码未经过实际验证,仅供参考,使用时请自行修改。同时,W25Q128FV的详细规格书需要参考厂家提供的资料。
阅读全文