色哟哟视频在线观看-色哟哟视频在线-色哟哟欧美15最新在线-色哟哟免费在线观看-国产l精品国产亚洲区在线观看-国产l精品国产亚洲区久久

0
  • 聊天消息
  • 系統消息
  • 評論與回復
登錄后你可以
  • 下載海量資料
  • 學習在線課程
  • 觀看技術視頻
  • 寫文章/發帖/加入社區
會員中心
創作中心

完善資料讓更多小伙伴認識你,還能領取20積分哦,立即完善>

3天內不再提示

GD32F303固件庫開發(16)----移植兆易創新SPI Nor Flash之GD25Q64Flash

嵌入式單片機MCU開發 ? 來源:嵌入式單片機MCU開發 ? 作者:嵌入式單片機MCU開 ? 2023-07-26 16:14 ? 次閱讀

spi概述

SPI是串行外設接口(Serial Peripheral Interface)的縮寫,是一種高速的,全雙工,同步的通信總線,并且在芯片的管腳上只占用四根線,節約了芯片的管腳,同時為PCB的布局上節省空間,提供方便,正是出于這種簡單易用的特性,越來越多的芯片集成了這種通信協議,比如 EEPROM,FLASH,實時時鐘AD轉換器。 W25Q64 是一款SPI接口的Flash芯片,其存儲空間為 64Mbit,相當于8M字節。W25Q64可以支持 SPI 的模式 0 和模式 3,也就是 CPOL=0/CPHA=0 和CPOL=1/CPHA=1 這兩種模式。 最近在弄ST和GD的課程,需要GD樣片的可以加群申請:6_15061293 。
在這里插入圖片描述

視頻教程

https://www.bilibili.com/video/BV16W4y147R1/

樣品申請

https://www.wjx.top/vm/wFGhGPF.aspx#

csdn課程

課程更加詳細。
https://download.csdn.net/course/detail/37144

生成例程

這里準備了自己繪制的開發板進行驗證。
在這里插入圖片描述

SPI配置

在開發板中有arduino接口,配置這幾個接口為spi。
在這里插入圖片描述
本次實驗使用的SPI與Flash通信,配置如下。 SPI的通信原理很簡單,它以主從方式工作,這種模式通常有一個主設備和一個或多個從設備,需要至少4根線,事實上3根也可以(單向傳輸時)。也是所有基于SPI的設備共有的,它們是MISO(主設備數據輸入)、MOSI(主設備數據輸出)、SCLK(時鐘)、CS(片選)。 (1)MISO– Master Input Slave Output,主設備數據輸入,從設備數據輸出; (2)MOSI– Master Output Slave Input,主設備數據輸出,從設備數據輸入; (3)SCLK – Serial Clock,時鐘信號,由主設備產生; (4)CS – Chip Select,從設備使能信號,由主設備控制。

在這里插入圖片描述

負責通訊的3根線了。通訊是通過數據交換完成的,這里先要知道SPI是串行通訊協議,也就是說數據是一位一位的傳輸的。這就是SCLK時鐘線存在的原因,由SCLK提供時鐘脈沖,SDISDO則基于此脈沖完成數據傳輸。數據輸出通過 SDO線,數據在時鐘上升沿或下降沿時改變,在緊接著的下降沿或上升沿被讀取。完成一位數據傳輸,輸入也使用同樣原理。因此,至少需要8次時鐘信號的改變(上沿和下沿為一次),才能完成8位數據的傳輸。 時鐘信號線SCLK只能由主設備控制,從設備不能控制。同樣,在一個基于SPI的設備中,至少有一個主設備。這樣的傳輸方式有一個優點,在數據位的傳輸過程中可以暫停,也就是時鐘的周期可以為不等寬,因為時鐘線由主設備控制,當沒有時鐘跳變時,從設備不采集或傳送數據。SPI還是一個數據交換協議:因為SPI的數據輸入和輸出線獨立,所以允許同時完成數據的輸入和輸出。芯片集成的SPI串行同步時鐘極性和相位可以通過寄存器配置,IO模擬的SPI串行同步時鐘需要根據從設備支持的時鐘極性和相位來通訊。 最后,SPI接口的一個缺點:沒有指定的流控制,沒有應答機制確認是否接收到數據。

NOR Flash

NOR Flash是一種非易失閃存技術,是Intel在1988年創建。是市場上兩種主要的非易失閃存技術之一。 以GD25Q64E為例,該 Flash為64M-bit大小,即8192K-Byte

在這里插入圖片描述

W25Q64將8M的容量分為127個塊(Block),每個塊大小為64K字節,每個塊又分為16個扇區(Sector),每個扇區4K個字節。W25Q64的最小擦除單位為一個扇區,也就是每次必須擦除4K個字節。 即4K16128=8192K=8M

在這里插入圖片描述

W25Q64的原理及應用

復位初始化

對于復位,需要發送0x66和0x99

在這里插入圖片描述

代碼中的初始化。

/* Reset Operations */
#define RESET_ENABLE_CMD                     0x66
#define RESET_MEMORY_CMD                     0x99
/**
  * @brief  Initializes the W25Q128FV interface.
  * @retval None
  */
uint8_t BSP_W25Qx_Init(void)
{ 
    /* Reset W25Qxxx */
    BSP_W25Qx_Reset();

    return BSP_W25Qx_GetStatus();
}

/**
  * @brief  This function reset the W25Qx.
  * @retval None
  */
static void    BSP_W25Qx_Reset(void)
{
    uint8_t cmd[2] = {RESET_ENABLE_CMD,RESET_MEMORY_CMD};    
    W25Qx_Enable();
    /* Send the reset command */    
    for(int i=0;i< 2;i++){
    spi_SendRcvByte(SPI0,cmd[i]);
}        
//    HAL_SPI_Transmit(&hspi1, cmd, 2, W25Qx_TIMEOUT_VALUE);    
    W25Qx_Disable();
}

在這里插入圖片描述

ID

對于兆易創新W25Q64,主要有三種查詢ID方式。

在這里插入圖片描述

可以使用90H查詢設備ID,以判斷是否是W25Q64設備。

在這里插入圖片描述

/* Identification Operations */
#define READ_ID_CMD                          0x9F
/**
  * @brief  Read Manufacture/Device ID.
    * @param  return value address
  * @retval None
  */
void BSP_W25Qx_Read_ID(uint8_t *ID)
{
    uint8_t cmd[4] = {READ_ID_CMD,0x00,0x00,0x00};

    W25Qx_Enable();
    /* Send the read ID command */    
//    HAL_SPI_Transmit(&hspi1, cmd, 4, W25Qx_TIMEOUT_VALUE);    
    /* Reception of the data */
//    HAL_SPI_Receive(&hspi1,ID, 2, W25Qx_TIMEOUT_VALUE);
    for(int i=0;i< 4;i++)
        spi_SendRcvByte(SPI0,cmd[i]);
    for(int i=0;i< 2;i++)
    {
        ID[i]=spi_SendRcvByte(SPI0,0x00);
}
    W25Qx_Disable();        
}

在這里插入圖片描述

讀取數據

對于兆易創新W25Q64,讀取數據使用0x03指令,后面添加需要讀取的數據地址。 數據可以一直進行讀取,當不需要讀取數據時候將片選CS拉高,關閉時鐘SCLK即可。

在這里插入圖片描述

#define READ_CMD                             0x03

/**
  * @brief  Reads an amount of data from the QSPI memory.
  * @param  pData: Pointer to data to be read
  * @param  ReadAddr: Read start address
  * @param  Size: Size of data to read    
  * @retval QSPI memory status
  */
uint8_t BSP_W25Qx_Read(uint8_t* pData, uint32_t ReadAddr, uint32_t Size)
{
    uint8_t cmd[4];
    uint8_t status;
    /* Configure the command */
    cmd[0] = READ_CMD;
    cmd[1] = (uint8_t)(ReadAddr > > 16);
    cmd[2] = (uint8_t)(ReadAddr > > 8);
    cmd[3] = (uint8_t)(ReadAddr);

    W25Qx_Enable();
    /* Send the read ID command */
//    HAL_SPI_Transmit(&hspi1, cmd, 4, W25Qx_TIMEOUT_VALUE);    
    for(int i= 0;i< 4;i++)
        spi_SendRcvByte(SPI0,cmd[i]);
    /* Reception of the data */
//    if (HAL_SPI_Receive(&hspi1, pData,Size,W25Qx_TIMEOUT_VALUE) != HAL_OK)
//  {
//    return W25Qx_ERROR;
//  }
    for(int i= 0;i< Size;i++)
        pData[i]=spi_SendRcvByte(SPI0,0x00);
    if (status != 0x00)
  {
    return W25Qx_ERROR;
  }
    W25Qx_Disable();
    return W25Qx_OK;
}

以讀取10個數據為例子,波形如下所示。

BSP_W25Qx_Read(rData2,0x1000,0x00a);

在這里插入圖片描述

擦除扇區

最小的擦除單位是扇區,擦除指令為0x20和3字節的地址。

在這里插入圖片描述

#define SECTOR_ERASE_CMD                     0x20
/**
  * @brief  Erases the specified block of the QSPI memory. 
  * @param  BlockAddress: Block address to erase  
  * @retval QSPI memory status
  */
uint8_t BSP_W25Qx_Erase_Block(uint32_t Address)
{
    uint8_t cmd[4];
    uint32_t tickstart=0 ;
    cmd[0] = SECTOR_ERASE_CMD;
    cmd[1] = (uint8_t)(Address > > 16);
    cmd[2] = (uint8_t)(Address > > 8);
    cmd[3] = (uint8_t)(Address);

    /* Enable write operations */
    BSP_W25Qx_WriteEnable();

    /*Select the FLASH: Chip Select low */
    W25Qx_Enable();
    /* Send the read ID command */
//    HAL_SPI_Transmit(&hspi1, cmd, 4, W25Qx_TIMEOUT_VALUE);    
    for(int i =0;i< 4;i++)
        spi_SendRcvByte(SPI0,cmd[i]);
    /*Deselect the FLASH: Chip Select high */
    W25Qx_Disable();
delay_1ms(1);
    /* Wait the end of Flash writing */
    while(BSP_W25Qx_GetStatus() == W25Qx_BUSY)
    {
    tickstart++;
        /* Check for the Timeout */
    if(tickstart > W25Q128FV_SECTOR_ERASE_MAX_TIME)
    {        
            return W25Qx_TIMEOUT;
    }
    }
    return W25Qx_OK;
}

在這里插入圖片描述

寫數據

對于寫數據到flash中,使用0x02指令進行寫數據,后面還需要指定24位地址,才能進行寫數據。

在這里插入圖片描述

#define PAGE_PROG_CMD                        0x02
/**
  * @brief  Writes an amount of data to the QSPI memory.
  * @param  pData: Pointer to data to be written
  * @param  WriteAddr: Write start address
  * @param  Size: Size of data to write,No more than 256byte.    
  * @retval QSPI memory status
  */
uint8_t BSP_W25Qx_Write(uint8_t* pData, uint32_t WriteAddr, uint32_t Size)
{
    uint8_t cmd[4];
    uint32_t end_addr, current_size, current_addr;
    uint32_t tickstart =0;

    /* Calculation of the size between the write address and the end of the page */
  current_addr = 0;

  while (current_addr <= WriteAddr)//判斷地址屬于哪一扇區開始
  {
    current_addr += W25Q128FV_PAGE_SIZE;//0x100- > 256 bytes
  }
  current_size = current_addr - WriteAddr;

  /* Check if the size of the data is less than the remaining place in the page */
  if (current_size > Size)
  {
    current_size = Size;
  }

  /* Initialize the adress variables *///寫入地址大小范圍
  current_addr = WriteAddr;
  end_addr = WriteAddr + Size;

  /* Perform the write page by page */
  do
  {
        /* Configure the command */
        cmd[0] = PAGE_PROG_CMD;
        cmd[1] = (uint8_t)(current_addr > > 16);
        cmd[2] = (uint8_t)(current_addr > > 8);
        cmd[3] = (uint8_t)(current_addr);

        /* Enable write operations */
        BSP_W25Qx_WriteEnable();

        W25Qx_Enable();
    /* Send the command */
//    if (HAL_SPI_Transmit(&hspi1,cmd, 4, W25Qx_TIMEOUT_VALUE) != HAL_OK)
//    {
//      return W25Qx_ERROR;
//    }
        for(int i=0;i< 4;i++)
            spi_SendRcvByte(SPI0,cmd[i]);

    /* Transmission of the data */
//    if (HAL_SPI_Transmit(&hspi1, pData,current_size, W25Qx_TIMEOUT_VALUE) != HAL_OK)
//    {
//      return W25Qx_ERROR;
//    }
        for(int i=0;i< current_size;i++)
            spi_SendRcvByte(SPI0,pData[i]);

            W25Qx_Disable();
        /* Wait the end of Flash writing */
        while(BSP_W25Qx_GetStatus() == W25Qx_BUSY)
        {
            tickstart++;
            /* Check for the Timeout */
            if(tickstart > W25Qx_TIMEOUT_VALUE)
            {        
                return W25Qx_TIMEOUT;
            }
        }

    /* Update the address and size variables for next page programming */
    current_addr += current_size;
    pData += current_size;
    current_size = ((current_addr + W25Q128FV_PAGE_SIZE) > end_addr) ? (end_addr - current_addr) : W25Q128FV_PAGE_SIZE;
  } while (current_addr < end_addr);


    return W25Qx_OK;
}

對flash的0x1000地址進行寫數據,指令如下。

BSP_W25Qx_Write(wData2,0x1000,0x000a);

在這里插入圖片描述

keil配置

microlib 進行了高度優化以使代碼變得很小。 它的功能比缺省 C 庫少,并且根本不具備某些 ISO C 特性。 某些庫函數的運行速度也比較慢,如果要使用printf(),必須開啟。

在這里插入圖片描述

使能GPIO

void GPIO_Init(void)
{
    rcu_periph_clock_enable(RCU_GPIOA);
    rcu_periph_clock_enable(RCU_GPIOD);
    rcu_periph_clock_enable(RCU_SPI0);

    rcu_periph_clock_enable(RCU_AF);        

        /* SPI0 GPIO config:SCK/PA5, MISO/PA6, MOSI/PA7 */
    gpio_init(GPIOA, GPIO_MODE_AF_PP, GPIO_OSPEED_50MHZ, GPIO_PIN_5 | GPIO_PIN_7);
    gpio_init(GPIOA, GPIO_MODE_IN_FLOATING, GPIO_OSPEED_50MHZ, GPIO_PIN_6);
    /* PD14 as NSS */
        gpio_init(GPIOD, GPIO_MODE_IPD, GPIO_OSPEED_MAX, GPIO_PIN_14);    
    gpio_init(GPIOD, GPIO_MODE_OUT_PP, GPIO_OSPEED_MAX, GPIO_PIN_14);    



}

SPI初始化

SPI掛載在APB2線上。

在這里插入圖片描述

下面將SPI0分頻256倍,那么速率為120M/256=468.75KHz。

void SPI_Init(void)
{
    spi_parameter_struct spi_init_struct;

    /* SPI0 parameter config */
    spi_init_struct.trans_mode           = SPI_TRANSMODE_FULLDUPLEX;//雙工模式
    spi_init_struct.device_mode          = SPI_MASTER;//作為master,提供SCLK
    spi_init_struct.frame_size           = SPI_FRAMESIZE_8BIT;//8bit模式
    spi_init_struct.clock_polarity_phase = SPI_CK_PL_LOW_PH_1EDGE;//mode0
    spi_init_struct.nss                  = SPI_NSS_SOFT;
    spi_init_struct.prescale             = SPI_PSC_256;// 分頻比
    spi_init_struct.endian               = SPI_ENDIAN_MSB;//高位在前
    spi_init(SPI0, &spi_init_struct);

    SET_SPI0_NSS_HIGH

        /* SPI enable */
    spi_enable(SPI0);    
}

使能串口

void UART_Init(void)
{

  /* 使能GPI0A,用PA9、PA10為串口 */
    rcu_periph_clock_enable(RCU_GPIOA);

    /*使能串口0的時鐘 */
    rcu_periph_clock_enable(RCU_USART0);

    /*配置USARTx_Tx(PA9)為復用推挽輸出*/
    gpio_init(GPIOA, GPIO_MODE_AF_PP, GPIO_OSPEED_50MHZ, GPIO_PIN_9);

    /*配置USARTx_RxPA9)為浮空輸入 */
    gpio_init(GPIOA, GPIO_MODE_IN_FLOATING, GPIO_OSPEED_50MHZ, GPIO_PIN_10);

    /* USART 配置 */
    usart_deinit(USART0);//重置串口0
    usart_baudrate_set(USART0, 115200U);//設置串口0的波特率為115200
    usart_word_length_set(USART0, USART_WL_8BIT);          // 幀數據字長
        usart_stop_bit_set(USART0, USART_STB_1BIT);               // 停止位1位
    usart_parity_config(USART0, USART_PM_NONE);           // 無奇偶校驗位
    usart_receive_config(USART0, USART_RECEIVE_ENABLE);//使能接收器
    usart_transmit_config(USART0, USART_TRANSMIT_ENABLE);//使能發送器
    usart_enable(USART0);//使能USART


}

開啟串口DMA接收

void UART_DMA_Init(void)
{
    dma_parameter_struct dma_init_struct;
    // 時鐘開啟
    rcu_periph_clock_enable(RCU_DMA0);
    /* USART0 DMA 接收配置*/
    dma_deinit(DMA0, DMA_CH4);
    dma_init_struct.direction = DMA_PERIPHERAL_TO_MEMORY;        /* 外設到內存 */
    dma_init_struct.memory_addr = (uint32_t)ReceiveBuff;            /* 設置內存接收基地址 */
    dma_init_struct.memory_inc = DMA_MEMORY_INCREASE_ENABLE;    /* 內存地址遞增 */
    dma_init_struct.memory_width = DMA_MEMORY_WIDTH_8BIT;        /* 8位內存數據 */
    dma_init_struct.number = sizeof(ReceiveBuff);
    dma_init_struct.periph_addr = ((uint32_t)0x40013804);        /* 外設基地址,USART數據寄存器地址 */
    dma_init_struct.periph_inc = DMA_PERIPH_INCREASE_DISABLE;    /* 外設地址不遞增 */
    dma_init_struct.periph_width = DMA_PERIPHERAL_WIDTH_8BIT;    /* 8位外設數據 */
    dma_init_struct.priority = DMA_PRIORITY_ULTRA_HIGH;            /* 最高DMA通道優先級 */
    dma_init(DMA0, DMA_CH4, &dma_init_struct);                     /* 按照結構體的配置初始化DMA */  


    dma_circulation_enable(DMA0, DMA_CH4);            /* 關閉DMA循環模式 */
    dma_memory_to_memory_disable(DMA0, DMA_CH4);    /* DMA內存到內存模式不開啟 */
        dma_channel_enable(DMA0, DMA_CH4);                /* 使能DMA傳輸 */

        usart_dma_receive_config(USART0, USART_DENR_ENABLE);    /* USART0 DMA接收模式開啟 */



}

串口中斷設置

void UART_nvic_Init(void)
{
    nvic_irq_enable(USART0_IRQn, 0, 0);        /* USART中斷設置,搶占優先級0,子優先級0 */
    usart_interrupt_enable(USART0, USART_INT_IDLE);            /* 使能USART0空閑中斷 */
}

W25Qx.c

/*********************************************************************************************************
*
* File                : ws_W25Qx.c
* Hardware Environment: 
* Build Environment   : RealView MDK-ARM  Version: 4.20
* Version             : V1.0
* By                  : 
*
*                                  (c) Copyright 2005-2011, WaveShare
*                                       http://www.waveshare.net
*                                          All Rights Reserved
*
*********************************************************************************************************/

#include "W25Qx.h"
#include "systick.h"


/**
  * @brief spi數據傳輸函數
  * @param spi_per spi外設
  * @param byte 發送字節
  * @return 接收字節
  */
uint8_t spi_SendRcvByte(uint32_t spi_per,uint8_t byte)
{
    uint8_t data;
    while(RESET == spi_i2s_flag_get(spi_per, SPI_FLAG_TBE));
    spi_i2s_data_transmit(spi_per, byte);

    while(SET == spi_i2s_flag_get(spi_per, SPI_FLAG_TRANS));
    while(RESET == spi_i2s_flag_get(spi_per, SPI_FLAG_RBNE));
    data=spi_i2s_data_receive(spi_per);
    while(SET == spi_i2s_flag_get(spi_per, SPI_FLAG_TRANS));
    return data;
}





//void spi_write_byte(uint32_t spi_periph, uint8_t data)
//{
//    while(RESET == spi_i2s_flag_get(spi_periph, SPI_FLAG_TBE));//發送緩沖區空標志
//    spi_i2s_data_transmit(spi_periph, data);

//}

//uint8_t spi_read_byte(uint32_t spi_periph)
//{
//    uint8_t read_i=0;
//    while(RESET == spi_i2s_flag_get(spi_periph, SPI_FLAG_RBNE));//接收緩沖區非空標志
//    read_i=spi_i2s_data_receive(spi_periph);
//    while(SET == spi_i2s_flag_get(spi_periph, SPI_FLAG_TRANS));
//    return read_i;
//}

/**
  * @brief  Initializes the W25Q128FV interface.
  * @retval None
  */
uint8_t BSP_W25Qx_Init(void)
{ 
    /* Reset W25Qxxx */
    BSP_W25Qx_Reset();

    return BSP_W25Qx_GetStatus();
}

/**
  * @brief  This function reset the W25Qx.
  * @retval None
  */
static void    BSP_W25Qx_Reset(void)
{
    uint8_t cmd[2] = {RESET_ENABLE_CMD,RESET_MEMORY_CMD};

    W25Qx_Enable();
    /* Send the reset command */



    for(int i=0;i< 2;i++){
    spi_SendRcvByte(SPI0,cmd[i]);
}


//    HAL_SPI_Transmit(&hspi1, cmd, 2, W25Qx_TIMEOUT_VALUE);    
    W25Qx_Disable();

}

/**
  * @brief  Reads current status of the W25Q128FV.
  * @retval W25Q128FV memory status
  */
static uint8_t BSP_W25Qx_GetStatus(void)
{
    uint8_t cmd[] = {READ_STATUS_REG1_CMD};
    uint8_t status;

    W25Qx_Enable();
    /* Send the read status command */
//    spi_write_byte(SPI0, cmd[0]);
    //HAL_SPI_Transmit(&hspi1, cmd, 1, W25Qx_TIMEOUT_VALUE);    
    /* Reception of the data */
//    status=spi_read_byte(SPI0);
    //HAL_SPI_Receive(&hspi1,&status, 1, W25Qx_TIMEOUT_VALUE);


    spi_SendRcvByte(SPI0,cmd[0]);
    status=spi_SendRcvByte(SPI0,0x00);



    W25Qx_Disable();

    /* Check the value of the register */
  if((status & W25Q128FV_FSR_BUSY) != 0)
  {
    return W25Qx_BUSY;
  }
    else
    {
        return W25Qx_OK;
    }        
}

/**
  * @brief  This function send a Write Enable and wait it is effective.
  * @retval None
  */
uint8_t BSP_W25Qx_WriteEnable(void)
{
    uint8_t cmd[] = {WRITE_ENABLE_CMD};
//    uint32_t tickstart = HAL_GetTick();
uint32_t tickstart=0;
    /*Select the FLASH: Chip Select low */
    W25Qx_Enable();
    /* Send the read ID command */
//    HAL_SPI_Transmit(&hspi1, cmd, 1, W25Qx_TIMEOUT_VALUE);    
    spi_SendRcvByte(SPI0,cmd[0]);
    /*Deselect the FLASH: Chip Select high */
    W25Qx_Disable();

    /* Wait the end of Flash writing */
    while(BSP_W25Qx_GetStatus() == W25Qx_BUSY)
    {
        tickstart++;
        /* Check for the Timeout */
    if(tickstart > W25Qx_TIMEOUT_VALUE)
    {        
            return W25Qx_TIMEOUT;
    }
    }

    return W25Qx_OK;
}

/**
  * @brief  Read Manufacture/Device ID.
    * @param  return value address
  * @retval None
  */
void BSP_W25Qx_Read_ID(uint8_t *ID)
{
    uint8_t cmd[4] = {READ_ID_CMD,0x00,0x00,0x00};

    W25Qx_Enable();
    /* Send the read ID command */


//    HAL_SPI_Transmit(&hspi1, cmd, 4, W25Qx_TIMEOUT_VALUE);    
    /* Reception of the data */
//    HAL_SPI_Receive(&hspi1,ID, 2, W25Qx_TIMEOUT_VALUE);



    for(int i=0;i< 4;i++)
        spi_SendRcvByte(SPI0,cmd[i]);

    for(int i=0;i< 2;i++)
    {

        ID[i]=spi_SendRcvByte(SPI0,0x00);
}

    W25Qx_Disable();

}

/**
  * @brief  Reads an amount of data from the QSPI memory.
  * @param  pData: Pointer to data to be read
  * @param  ReadAddr: Read start address
  * @param  Size: Size of data to read    
  * @retval QSPI memory status
  */
uint8_t BSP_W25Qx_Read(uint8_t* pData, uint32_t ReadAddr, uint32_t Size)
{
    uint8_t cmd[4];
    uint8_t status;
    /* Configure the command */
    cmd[0] = READ_CMD;
    cmd[1] = (uint8_t)(ReadAddr > > 16);
    cmd[2] = (uint8_t)(ReadAddr > > 8);
    cmd[3] = (uint8_t)(ReadAddr);

    W25Qx_Enable();
    /* Send the read ID command */
//    HAL_SPI_Transmit(&hspi1, cmd, 4, W25Qx_TIMEOUT_VALUE);    
    for(int i= 0;i< 4;i++)
        spi_SendRcvByte(SPI0,cmd[i]);
    /* Reception of the data */
//    if (HAL_SPI_Receive(&hspi1, pData,Size,W25Qx_TIMEOUT_VALUE) != HAL_OK)
//  {
//    return W25Qx_ERROR;
//  }
    for(int i= 0;i< Size;i++)
        pData[i]=spi_SendRcvByte(SPI0,0x00);
    if (status != 0x00)
  {
    return W25Qx_ERROR;
  }
    W25Qx_Disable();
    return W25Qx_OK;
}

/**
  * @brief  Writes an amount of data to the QSPI memory.
  * @param  pData: Pointer to data to be written
  * @param  WriteAddr: Write start address
  * @param  Size: Size of data to write,No more than 256byte.    
  * @retval QSPI memory status
  */
uint8_t BSP_W25Qx_Write(uint8_t* pData, uint32_t WriteAddr, uint32_t Size)
{
    uint8_t cmd[4];
    uint32_t end_addr, current_size, current_addr;
    uint32_t tickstart =0;

    /* Calculation of the size between the write address and the end of the page */
  current_addr = 0;

  while (current_addr <= WriteAddr)//判斷地址屬于哪一扇區開始
  {
    current_addr += W25Q128FV_PAGE_SIZE;//0x100- > 256 bytes
  }
  current_size = current_addr - WriteAddr;

  /* Check if the size of the data is less than the remaining place in the page */
  if (current_size > Size)
  {
    current_size = Size;
  }

  /* Initialize the adress variables *///寫入地址大小范圍
  current_addr = WriteAddr;
  end_addr = WriteAddr + Size;

  /* Perform the write page by page */
  do
  {
        /* Configure the command */
        cmd[0] = PAGE_PROG_CMD;
        cmd[1] = (uint8_t)(current_addr > > 16);
        cmd[2] = (uint8_t)(current_addr > > 8);
        cmd[3] = (uint8_t)(current_addr);

        /* Enable write operations */
        BSP_W25Qx_WriteEnable();

        W25Qx_Enable();
    /* Send the command */
//    if (HAL_SPI_Transmit(&hspi1,cmd, 4, W25Qx_TIMEOUT_VALUE) != HAL_OK)
//    {
//      return W25Qx_ERROR;
//    }
        for(int i=0;i< 4;i++)
            spi_SendRcvByte(SPI0,cmd[i]);

    /* Transmission of the data */
//    if (HAL_SPI_Transmit(&hspi1, pData,current_size, W25Qx_TIMEOUT_VALUE) != HAL_OK)
//    {
//      return W25Qx_ERROR;
//    }
        for(int i=0;i< current_size;i++)
            spi_SendRcvByte(SPI0,pData[i]);

            W25Qx_Disable();
        /* Wait the end of Flash writing */
        while(BSP_W25Qx_GetStatus() == W25Qx_BUSY)
        {
            tickstart++;
            /* Check for the Timeout */
            if(tickstart > W25Qx_TIMEOUT_VALUE)
            {        
                return W25Qx_TIMEOUT;
            }
        }

    /* Update the address and size variables for next page programming */
    current_addr += current_size;
    pData += current_size;
    current_size = ((current_addr + W25Q128FV_PAGE_SIZE) > end_addr) ? (end_addr - current_addr) : W25Q128FV_PAGE_SIZE;
  } while (current_addr < end_addr);


    return W25Qx_OK;
}

/**
  * @brief  Erases the specified block of the QSPI memory. 
  * @param  BlockAddress: Block address to erase  
  * @retval QSPI memory status
  */
uint8_t BSP_W25Qx_Erase_Block(uint32_t Address)
{
    uint8_t cmd[4];
    uint32_t tickstart=0 ;
    cmd[0] = SECTOR_ERASE_CMD;
    cmd[1] = (uint8_t)(Address > > 16);
    cmd[2] = (uint8_t)(Address > > 8);
    cmd[3] = (uint8_t)(Address);

    /* Enable write operations */
    BSP_W25Qx_WriteEnable();

    /*Select the FLASH: Chip Select low */
    W25Qx_Enable();
    /* Send the read ID command */
//    HAL_SPI_Transmit(&hspi1, cmd, 4, W25Qx_TIMEOUT_VALUE);    
    for(int i =0;i< 4;i++)
        spi_SendRcvByte(SPI0,cmd[i]);
    /*Deselect the FLASH: Chip Select high */
    W25Qx_Disable();
delay_1ms(1);
    /* Wait the end of Flash writing */
    while(BSP_W25Qx_GetStatus() == W25Qx_BUSY)
    {
    tickstart++;
        /* Check for the Timeout */
    if(tickstart > W25Q128FV_SECTOR_ERASE_MAX_TIME)
    {        
            return W25Qx_TIMEOUT;
    }
    }
    return W25Qx_OK;
}

/**
  * @brief  Erases the entire QSPI memory.This function will take a very long time.
  * @retval QSPI memory status
  */
uint8_t BSP_W25Qx_Erase_Chip(void)
{
    uint8_t cmd[4];
    uint32_t tickstart ;
    cmd[0] = SECTOR_ERASE_CMD;

    /* Enable write operations */
    BSP_W25Qx_WriteEnable();

    /*Select the FLASH: Chip Select low */
    W25Qx_Enable();
    /* Send the read ID command */
//    HAL_SPI_Transmit(&hspi1, cmd, 1, W25Qx_TIMEOUT_VALUE);    
    spi_SendRcvByte(SPI0,cmd[0]);
    /*Deselect the FLASH: Chip Select high */
    W25Qx_Disable();

    /* Wait the end of Flash writing */
    while(BSP_W25Qx_GetStatus() != W25Qx_BUSY)
    {
        tickstart++;
        /* Check for the Timeout */
    if(tickstart > W25Q128FV_BULK_ERASE_MAX_TIME)
    {        
            return W25Qx_TIMEOUT;
    }
    }
    return W25Qx_OK;
}

W25Qx.h

/*********************************************************************************************************
*
* File                : W25Qx.h
* Hardware Environment: 
* Build Environment   : RealView MDK-ARM  Version: 5.15
* Version             : V1.0
* By                  : 
*
*                                  (c) Copyright 2005-2015, WaveShare
*                                       http://www.waveshare.net
*                                          All Rights Reserved
*
*********************************************************************************************************/
/* Define to prevent recursive inclusion -------------------------------------*/
#ifndef __W25Qx_H
#define __W25Qx_H

#ifdef __cplusplus
 extern "C" {
#endif 

/* Includes ------------------------------------------------------------------*/
#include "gd32f30x.h"
#include "gd32f30x_spi.h"

/** @addtogroup BSP
  * @{
  */ 

/** @addtogroup Components
  * @{
  */ 

/** @addtogroup W25Q128FV
  * @{
  */

/** @defgroup W25Q128FV_Exported_Types
  * @{
  */

/**
  * @}
  */ 

/** @defgroup W25Q128FV_Exported_Constants
  * @{
  */

/** 
  * @brief  W25Q128FV Configuration  
  */  
#define W25Q128FV_FLASH_SIZE                  0x1000000 /* 128 MBits = > 16MBytes */
#define W25Q128FV_SECTOR_SIZE                 0x10000   /* 256 sectors of 64KBytes */
#define W25Q128FV_SUBSECTOR_SIZE              0x1000    /* 4096 subsectors of 4kBytes */
#define W25Q128FV_PAGE_SIZE                   0x100     /* 65536 pages of 256 bytes */

#define W25Q128FV_DUMMY_CYCLES_READ           4
#define W25Q128FV_DUMMY_CYCLES_READ_QUAD      10

#define W25Q128FV_BULK_ERASE_MAX_TIME         250000
#define W25Q128FV_SECTOR_ERASE_MAX_TIME       10000
#define W25Q128FV_SUBSECTOR_ERASE_MAX_TIME    800
#define W25Qx_TIMEOUT_VALUE 1000

/** 
  * @brief  W25Q128FV Commands  
  */  
/* Reset Operations */
#define RESET_ENABLE_CMD                     0x66
#define RESET_MEMORY_CMD                     0x99

#define ENTER_QPI_MODE_CMD                   0x38
#define EXIT_QPI_MODE_CMD                    0xFF

/* Identification Operations */
#define READ_ID_CMD                          0x90
#define DUAL_READ_ID_CMD                     0x92
#define QUAD_READ_ID_CMD                     0x94
#define READ_JEDEC_ID_CMD                    0x9F

/* Read Operations */
#define READ_CMD                             0x03
#define FAST_READ_CMD                        0x0B
#define DUAL_OUT_FAST_READ_CMD               0x3B
#define DUAL_INOUT_FAST_READ_CMD             0xBB
#define QUAD_OUT_FAST_READ_CMD               0x6B
#define QUAD_INOUT_FAST_READ_CMD             0xEB

/* Write Operations */
#define WRITE_ENABLE_CMD                     0x06
#define WRITE_DISABLE_CMD                    0x04

/* Register Operations */
#define READ_STATUS_REG1_CMD                  0x05
#define READ_STATUS_REG2_CMD                  0x35
#define READ_STATUS_REG3_CMD                  0x15

#define WRITE_STATUS_REG1_CMD                 0x01
#define WRITE_STATUS_REG2_CMD                 0x31
#define WRITE_STATUS_REG3_CMD                 0x11


/* Program Operations */
#define PAGE_PROG_CMD                        0x02
#define QUAD_INPUT_PAGE_PROG_CMD             0x32


/* Erase Operations */
#define SECTOR_ERASE_CMD                     0x20
#define CHIP_ERASE_CMD                       0xC7

#define PROG_ERASE_RESUME_CMD                0x7A
#define PROG_ERASE_SUSPEND_CMD               0x75


/* Flag Status Register */
#define W25Q128FV_FSR_BUSY                    ((uint8_t)0x01)    /*!< busy */
#define W25Q128FV_FSR_WREN                    ((uint8_t)0x02)    /*!< write enable */
#define W25Q128FV_FSR_QE                      ((uint8_t)0x02)    /*!< quad enable */


#define W25Qx_Enable()             gpio_bit_reset(GPIOD,GPIO_PIN_14)
#define W25Qx_Disable()         gpio_bit_set(GPIOD,GPIO_PIN_14)

#define W25Qx_OK            ((uint8_t)0x00)
#define W25Qx_ERROR         ((uint8_t)0x01)
#define W25Qx_BUSY          ((uint8_t)0x02)
#define W25Qx_TIMEOUT                ((uint8_t)0x03)


uint8_t BSP_W25Qx_Init(void);
static void    BSP_W25Qx_Reset(void);
static uint8_t BSP_W25Qx_GetStatus(void);
uint8_t BSP_W25Qx_WriteEnable(void);
void BSP_W25Qx_Read_ID(uint8_t *ID);
uint8_t BSP_W25Qx_Read(uint8_t* pData, uint32_t ReadAddr, uint32_t Size);
uint8_t BSP_W25Qx_Write(uint8_t* pData, uint32_t WriteAddr, uint32_t Size);
uint8_t BSP_W25Qx_Erase_Block(uint32_t Address);
uint8_t BSP_W25Qx_Erase_Chip(void);

/**
  * @}
  */

/** @defgroup W25Q128FV_Exported_Functions
  * @{
  */ 
/**
  * @}
  */ 

/**
  * @}
  */ 

/**
  * @}
  */ 

/**
  * @}
  */

#ifdef __cplusplus
}
#endif

#endif /* __W25Qx_H */

案例

向0扇區(0塊0扇區),17扇區(1塊1扇區),34扇區(2塊2扇區)分別寫入0x200的數據。

頭文件定義

/* USER CODE BEGIN Includes */
#include "stdio.h"

#include "W25Qx.h"
/* USER CODE END Includes */

串口接收和flash數組定義

#define SET_SPI0_NSS_HIGH          gpio_bit_set(GPIOD,GPIO_PIN_14);
#define SET_SPI0_NSS_LOW           gpio_bit_reset(GPIOD,GPIO_PIN_14);


#define BUFFERSIZE 255           //可以接收的最大字符個數       
uint8_t ReceiveBuff[BUFFERSIZE]; //接收緩沖區
uint8_t recv_end_flag = 0,Rx_len;//接收完成中斷標志,接收到字符長度

uint8_t wData1[0x200];
uint8_t wData2[0x200];
uint8_t wData3[0x200];

uint8_t rData1[0x200];
uint8_t rData2[0x200];
uint8_t rData3[0x200];
uint8_t ID[4];
uint32_t i;

uint8_t flag[1] ;
int i_flag = 0;
void uart_data(void);

串口重定向

/* retarget the C library printf function to the USART */
int fputc(int ch, FILE *f)
{
    usart_data_transmit(USART0, (uint8_t)ch);
    while(RESET == usart_flag_get(USART0, USART_FLAG_TBE));

    return ch;
}

串口中斷設置

/* 串口0中斷服務程序 */
void USART0_IRQHandler(void)    
{
    if(RESET != usart_interrupt_flag_get(USART0, USART_INT_FLAG_IDLE)) //空閑中斷
    {
        usart_interrupt_flag_clear(USART0,USART_INT_FLAG_IDLE);    /* 清除空閑中斷標志位 */
        usart_data_receive(USART0);                                /* 清除接收完成標志位 */
        dma_channel_disable(DMA0, DMA_CH4);                        /* 關閉DMA傳輸 */
        uint32_t temp;
        temp  = dma_transfer_number_get(DMA0,DMA_CH4);//獲取DMA當前還有多少未填充
    Rx_len =  BUFFERSIZE - temp; //計算串口接收到的數據個數
    recv_end_flag = 1;


//        USART_RX_NUM = sizeof(dma_buffer) - dma_transfer_number_get(DMA0,DMA_CH4);
//        printf("RECV %d date:%srn", USART_RX_NUM, dma_buffer);
//        memset(&dma_buffer ,'?',sizeof(dma_buffer));        
//        /* 重新設置DMA傳輸 */
//        dma_memory_address_config(DMA0,DMA_CH4,(uint32_t)dma_buffer);
//        dma_transfer_number_config(DMA0,DMA_CH4,sizeof(dma_buffer));
//        dma_channel_enable(DMA0, DMA_CH4);        /* 開啟DMA傳輸 */
    }
}

主程序

讀取ID和flash數據及擦除。

printf("GD Nor Flash案例n");

    /*##-1- Read the device ID  ########################*/ 
    BSP_W25Qx_Init();//鍒濆鍖朩25Q64
    BSP_W25Qx_Read_ID(ID);//璇誨彇ID
//get_DeviceId();
    if((ID[0] != 0xC8) | (ID[1] != 0x16))
    {
    printf("error");
    while(1);
//    Error_Handler();//濡傛灉 ID涓嶅鎵撳嵃閿欒
    }
    else//ID姝g‘錛屾墦鍗癐D
    {
        printf("W25Q64 ID : ");
        for(i=0;i< 2;i++)
        {
            printf("0x%02X ",ID[i]);
        }
        printf("rnrn");
    }

/**************************讀取第0扇區數據**************************************************************/

    /*##-3- Read the flash     ########################*/ 
    /*讀取數據,rData讀取數據的指針,起始地址0x00,讀取數據長度0x200*/
    if(BSP_W25Qx_Read(rData1,0x0,0x200)== W25Qx_OK)
        printf("讀取原始的0個扇區數據成功!n");
    else
    {
        printf("error");
        while(1);
    }
    /*打印數據*/    
    printf("讀取原始的0個扇區數據為: rn");

    for(i =0;i< 0x200;i++)
    {
        if(i%20==0)
            printf("n0扇區第%d到%d的數據為:rn",i,i+19);
                printf("0x%02X  ",rData1[i]);
    }

    printf("n");


/**************************讀取第17扇區數據**************************************************************/

    /*##-3- Read the flash     ########################*/ 
    /*讀取數據,rData讀取數據的指針,起始地址0x1000,讀取數據長度0x200*/
    if(BSP_W25Qx_Read(rData2,0x11000,0x200)== W25Qx_OK)
        printf("讀取原始的17個扇區數據成功!n");
    else
    {
        printf("error");
        while(1);
    }
    /*打印數據*/    
    printf("讀取原始的2個扇區數據為:");

    for(i =0;i< 0x200;i++)
    {
        if(i%20==0)
            printf("n17扇區第%d到%d的數據為:rn",i,i+19);
                printf("0x%02X  ",rData2[i]);
    }

    printf("n");    


/**************************讀取第34扇區數據**************************************************************/

    /*##-3- Read the flash     ########################*/ 
    /*讀取數據,rData讀取數據的指針,起始地址0x2000,讀取數據長度0x200*/
    if(BSP_W25Qx_Read(rData3,0x22000,0x200)== W25Qx_OK)
        printf("讀取原始的34個扇區數據成功!n");
    else
    {
        printf("error");
        while(1);
    }
    /*打印數據*/    
    printf("讀取原始的34個扇區數據為: ");

    for(i =0;i< 0x200;i++)
    {
        if(i%20==0)
            printf("n34扇區第%d到%d的數據為:rn",i,i+19);
                printf("0x%02X  ",rData3[i]);
    }

    printf("n");    




/**************************清除第0扇區數據為0**************************************************************/



    /*##-2- Erase Block ##################################*/ 
    if(BSP_W25Qx_Erase_Block(0) == W25Qx_OK)
        printf(" QSPI Erase Block okrn");
    else
    {
        printf("error");
        while(1);
    }

    /*##-2- Written to the flash ########################*/ 
    /* fill buffer */
    printf(" 初始化數據,清零第0扇區前0x200的數據!rn");
    for(i =0;i< 0x200;i ++)
    {
            wData1[i] = 0;
          rData1[i] = 0;
    }
    /*寫入數據,wData寫入數據的指針,起始地址0x00,寫入數據長度0x200*/
    if(BSP_W25Qx_Write(wData1,0x00,0x200)== W25Qx_OK)
        printf("清零第0扇區前0x200的數據成功!rn");
    else
    {
        printf("error");
        while(1);
    }




    /*##-3- Read the flash     ########################*/ 
    /*讀取數據,rData讀取數據的指針,起始地址0x00,讀取數據長度0x200*/
    if(BSP_W25Qx_Read(rData1,0x00,0x200)== W25Qx_OK)
        printf("讀取第0扇區前0x200數據成功!rnrn");
    else
    {
        printf("error");
        while(1);
    }
    /*打印數據*/    
    printf("讀取第0扇區前0x200數據為: rn");

    for(i =0;i< 0x200;i++)
    {
        if(i%20==0)
            printf("n第%d到%d的數據為:rn",i,i+19);
                printf("0x%02X  ",rData1[i]);
    }

    printf("n");

/**************************清除第17扇區數據為0**************************************************************/



    /*##-2- Erase Block ##################################*/ 
    if(BSP_W25Qx_Erase_Block(0x11000) == W25Qx_OK)
        printf(" QSPI Erase Block okrn");
    else
    {
        printf("error");
        while(1);
    }

/*##-2- Written to the flash ########################*/ 
    /* fill buffer */
    printf(" 初始化數據,清零第17扇區前0x200的數據!rn");
    for(i =0;i< 0x200;i ++)
    {
            wData2[i] = 0;
          rData2[i] = 0;
    }
    /*寫入數據,wData寫入數據的指針,起始地址0x1000,寫入數據長度0x200*/
    if(BSP_W25Qx_Write(wData2,0x11000,0x200)== W25Qx_OK)
        printf("清零第2扇區前0x200的數據成功!rn");
    else
    {
        printf("error");
        while(1);
    }




    /*##-3- Read the flash     ########################*/ 
    /*讀取數據,rData讀取數據的指針,起始地址0x00,讀取數據長度0x200*/
    if(BSP_W25Qx_Read(rData2,0x11000,0x200)== W25Qx_OK)
        printf("讀取第17扇區前0x200數據成功!rnrn");
    else
    {
        printf("error");
        while(1);
    }
    /*打印數據*/    
    printf("讀取第17扇區前0x200數據為: rn");

    for(i =0;i< 0x200;i++)
    {
        if(i%20==0)
            printf("n第%d到%d的數據為:rn",i,i+19);
                printf("0x%02X  ",rData2[i]);
    }

    printf("n");

/**************************清除第34扇區數據為0**************************************************************/



    /*##-2- Erase Block ##################################*/ 
    if(BSP_W25Qx_Erase_Block(0x22000) == W25Qx_OK)
        printf(" QSPI Erase Block okrn");
    else
    {
        printf("error");
        while(1);
    }

    /*##-2- Written to the flash ########################*/ 
    /* fill buffer */
    printf(" 初始化數據,清零第34扇區前0x200的數據!rn");
    for(i =0;i< 0x200;i ++)
    {
            wData3[i] = 0;
          rData3[i] = 0;
    }
    /*寫入數據,wData寫入數據的指針,起始地址0x22000,寫入數據長度0x200*/
    if(BSP_W25Qx_Write(wData3,0x22000,0x200)== W25Qx_OK)
        printf("清零第34扇區前0x200的數據成功!rn");
    else
    {
        printf("error");
        while(1);
    }




    /*##-3- Read the flash     ########################*/ 
    /*讀取數據,rData讀取數據的指針,起始地址0x00,讀取數據長度0x200*/
    if(BSP_W25Qx_Read(rData3,0x22000,0x200)== W25Qx_OK)
        printf("讀取第34扇區前0x200數據成功!rnrn");
    else
    {
        printf("error");
        while(1);
    }
    /*打印數據*/    
    printf("讀取第34扇區前0x200數據為: rn");

    for(i =0;i< 0x200;i++)
    {
        if(i%20==0)
            printf("n第%d到%d的數據為:rn",i,i+19);
                printf("0x%02X  ",rData3[i]);
    }

    printf("n");

主程序。

while (1){
        uart_data();
        delay_1ms(10);
    }

數據處理

void uart_data(void)
{
    if(recv_end_flag ==1)//接收完成標志
    {


if(ReceiveBuff[0]==0x00)
        {
            printf("寫入數據長度:%dn",Rx_len-2);
            for(int i =0;i< Rx_len-2;i++)
            {
                wData1[ (i+ReceiveBuff[1]) ] = ReceiveBuff[i+2];

            }


        /*##-2- Erase Block ##################################*/ 
        if(BSP_W25Qx_Erase_Block(0) == W25Qx_OK)
            printf(" QSPI Erase Block okrn");
        else
    {
        printf("error");
        while(1);
    }


        /*寫入數據,wData寫入數據的指針,起始地址0x00,寫入數據長度0x200*/
        if(BSP_W25Qx_Write(wData1,0x00,0x200)== W25Qx_OK)

            printf("扇區0數據成功~~~~~~~~~~~~~~~~~~~~~~~~~~!rn");
        else
    {
        printf("error");
        while(1);
    }

        if(BSP_W25Qx_Read(rData1,0x00,0x200)== W25Qx_OK)
            printf("讀取扇區0前0x200數據成功!rnrn");
        else
    {
        printf("error");
        while(1);
    }
        /*打印數據*/    
        printf("讀取扇區0前0x200數據為: rn");

        for(i =0;i< 0x200;i++)
        {
            if(i%20==0)
                printf("n第%d到%d的數據為:rn",i,i+19);
                    printf("0x%02X  ",wData1[i]);
        }

        printf("n");

    }



    else if(ReceiveBuff[0]==0x17)
    {
            printf("寫入數據長度:%dn",Rx_len-2);
            for(int i =0;i< Rx_len-2;i++)
            {
//                Data[i]=ReceiveBuff[i+2];
                wData2[ (i+ReceiveBuff[1]) ] = ReceiveBuff[i+2];
            }


        /*##-17- Erase Block ##################################*/ 
        if(BSP_W25Qx_Erase_Block(0x11000) == W25Qx_OK)
            printf(" QSPI Erase Block okrn");
        else
    {
        printf("error");
        while(1);
    }


        /*寫入數據,wData寫入數據的指針,起始地址0x11000,寫入數據長度0x200*/
        if(BSP_W25Qx_Write(wData2,0x11000,0x200)== W25Qx_OK)

            printf("扇區17數據成功~~~~~~~~~~~~~~~~~~~~~~~~~~!rn");
        else
    {
        printf("error");
        while(1);
    }

        if(BSP_W25Qx_Read(rData2,0x11000,0x200)== W25Qx_OK)
            printf("讀取扇區17前0x200數據成功!rnrn");
        else
    {
        printf("error");
        while(1);
    }
        /*打印數據*/    
        printf("讀取扇區17前0x200數據為: rn");

        for(i =0;i< 0x200;i++)
        {
            if(i%20==0)
                printf("n第%d到%d的數據為:rn",i,i+19);
                    printf("0x%02X  ",rData2[i]);
        }

        printf("n");

    }        



    else if(ReceiveBuff[0]==0x34)
    {
            printf("寫入數據長度:%dn",Rx_len-2);
            for(int i =0;i< Rx_len-2;i++)
            {
//                Data[i]=ReceiveBuff[i+2];
                wData3[ (i+ReceiveBuff[1]) ] = ReceiveBuff[i+2];
            }


        /*##-22- Erase Block ##################################*/ 
        if(BSP_W25Qx_Erase_Block(0x22000) == W25Qx_OK)
            printf(" QSPI Erase Block okrn");
        else
    {
        printf("error");
        while(1);
    }


        /*寫入數據,wData寫入數據的指針,起始地址0x22000,寫入數據長度0x200*/
        if(BSP_W25Qx_Write(wData3,0x22000,0x200)== W25Qx_OK)

            printf("扇區34數據成功~~~~~~~~~~~~~~~~~~~~~~~~~~!rn");
        else
    {
        printf("error");
        while(1);
    }

        if(BSP_W25Qx_Read(rData3,0x22000,0x200)== W25Qx_OK)
            printf("讀取扇區34前0x200數據成功!rnrn");
        else
    {
        printf("error");
        while(1);
    }
        /*打印數據*/    
        printf("讀取扇區34前0x200數據為: rn");

        for(i =0;i< 0x200;i++)
        {
            if(i%20==0)
                printf("n第%d到%d的數據為:rn",i,i+19);
                    printf("0x%02X  ",rData3[i]);
        }

        printf("n");

    }    




        else
            printf("輸入錯誤!");

    for(int i = 0; i < Rx_len ; i++) //清空接收緩存區
    ReceiveBuff[i]=0;//置0
    Rx_len=0;//接收數據長度清零
    recv_end_flag=0;//接收標志位清零
        //開啟下一次接收
        memset(&ReceiveBuff ,'?',sizeof(ReceiveBuff));        
        /* 重新設置DMA傳輸 */
        dma_memory_address_config(DMA0,DMA_CH4,(uint32_t)ReceiveBuff);
        dma_transfer_number_config(DMA0,DMA_CH4,sizeof(ReceiveBuff));
        dma_channel_enable(DMA0, DMA_CH4);        /* 開啟DMA傳輸 */
    }

}

演示

W25Q64芯片型號的ID為0XEF17,下方讀取為0XC816,所以讀取成功。

在這里插入圖片描述

開機會打印出0,17,34扇區的前0x200個數據。

在這里插入圖片描述

打印完原始數據之后將數據全部清零,清零完成如下圖所示。

在這里插入圖片描述

串口定義了ReceiveBuff[0]的數據為寫入什么扇區,ReceiveBuff[0]為1寫入扇區1,ReceiveBuff[0]為2寫入扇區2,ReceiveBuff[0]為3寫入扇區3,若為其他數據,則打印輸入錯誤;ReceiveBuff[1]則為寫入的位置。 輸入:00 05 01 02 03 04 向扇區0的的05號位置開始寫入數據01 02 03 04。

在這里插入圖片描述

輸入:00 28 11 12 13 14 15 向扇區0的的40(28是十六進制)號位置開始寫入數據11 12 13 14 15。

在這里插入圖片描述

輸入:17 10 aa bb 向扇區17的的16(10是十六進制)號位置開始寫入數據aa bb。

在這里插入圖片描述

審核編輯 黃宇

聲明:本文內容及配圖由入駐作者撰寫或者入駐合作網站授權轉載。文章觀點僅代表作者本人,不代表電子發燒友網立場。文章及其配圖僅供工程師學習之用,如有內容侵權或者其他違規問題,請聯系本站處理。 舉報投訴
  • 芯片
    +關注

    關注

    456

    文章

    51155

    瀏覽量

    426349
  • SPI
    SPI
    +關注

    關注

    17

    文章

    1721

    瀏覽量

    91967
  • 固件庫
    +關注

    關注

    2

    文章

    97

    瀏覽量

    14968
收藏 人收藏

    評論

    相關推薦

    GD32F470紫藤派開發板使用手冊】第十一講 SPI-SPI NOR FLASH讀寫實驗

    通過本實驗主要學習以下內容: ?SPI簡介 ?GD32F470 SPI簡介 ?SPI NOR FLASH
    的頭像 發表于 05-17 09:57 ?1916次閱讀
    【<b class='flag-5'>GD32F</b>470紫藤派<b class='flag-5'>開發</b>板使用手冊】第十一講 <b class='flag-5'>SPI-SPI</b> <b class='flag-5'>NOR</b> <b class='flag-5'>FLASH</b>讀寫實驗

    GD32F303固件開發(14)----IIC配置OLED

    本章配置GD32F303使用IIC進行驅動SSD1306的12864OLED。
    的頭像 發表于 07-26 08:55 ?3853次閱讀
    <b class='flag-5'>GD32F303</b><b class='flag-5'>固件</b><b class='flag-5'>庫</b><b class='flag-5'>開發</b>(14)----IIC<b class='flag-5'>之</b>配置OLED

    GD32F303】星空派介紹

    GD32官方資料的基礎上,提供GD32F303的庫函數開發資料、例程講解、視頻課程等。同時還提供RT-Thread相關的驅動開發、應用開發
    發表于 09-11 17:55

    創新SPI NOR Flash GD25LX256E喜獲“中國芯”獎項

    業界領先的半導體器件供應商創新GigaDevice其旗下全新一代高速8通道SPI NOR Flash
    發表于 10-25 18:24 ?3157次閱讀

    創新GD32F303 ARM 32位微控制器

    創新GD32F303 ARM 32位微控制器免費下載。
    發表于 03-03 10:08 ?18次下載

    GD32F303固件開發(1)----前期準備與燒錄

    在這使用STM32CUBEMX進行配置STM32F103,移植創新GD32F303,然后進
    的頭像 發表于 11-23 11:15 ?2841次閱讀
    <b class='flag-5'>GD32F303</b><b class='flag-5'>固件</b><b class='flag-5'>庫</b><b class='flag-5'>開發</b>(1)----前期準備與燒錄

    創新:基于GD SPI NOR Flash的TWS耳機方案

    新的變化:需要更高品質和穩定性;容量不斷提升;功耗和尺寸不斷降低。 方案優勢 可提供更全面的全球化服務; 具有業內最全的NOR Flash產品系列; 針對低功耗應用,推出了GD25LE/GD2
    發表于 02-07 12:00 ?1200次閱讀
    <b class='flag-5'>兆</b><b class='flag-5'>易</b><b class='flag-5'>創新</b>:基于<b class='flag-5'>GD</b> <b class='flag-5'>SPI</b> <b class='flag-5'>NOR</b> <b class='flag-5'>Flash</b>的TWS耳機方案

    STM32CUBEMX開發GD32F30316)----移植創新SPI Nor FlashGD25Q64Flash

    SPI是串行外設接口(Serial Peripheral Interface)的縮寫,是一種高速的,全雙工,同步的通信總線,并且在芯片的管腳上只占用四根線,節約了芯片的管腳,同時為PCB的布局上節
    的頭像 發表于 07-27 09:10 ?1981次閱讀
    STM32CUBEMX<b class='flag-5'>開發</b><b class='flag-5'>GD32F303</b>(<b class='flag-5'>16</b>)----<b class='flag-5'>移植</b><b class='flag-5'>兆</b><b class='flag-5'>易</b><b class='flag-5'>創新</b><b class='flag-5'>SPI</b> <b class='flag-5'>Nor</b> <b class='flag-5'>Flash</b><b class='flag-5'>之</b><b class='flag-5'>GD25Q64Flash</b>

    GD32F303固件開發

    /qq_24312945/article/details/124325797] GD32F303固件開發(2)----讀保護與寫保護 芯片讀保護以后,
    的頭像 發表于 07-27 09:27 ?1240次閱讀
    <b class='flag-5'>GD32F303</b><b class='flag-5'>固件</b><b class='flag-5'>庫</b><b class='flag-5'>開發</b>

    STM32CUBEMX開發GD32F303

    在這使用STM32CUBEMX進行配置STM32F103,移植創新GD32F303,然后進
    的頭像 發表于 07-27 09:32 ?1683次閱讀
    STM32CUBEMX<b class='flag-5'>開發</b><b class='flag-5'>GD32F303</b>

    STM32CUBEMX開發GD32F303(17)----內部Flash讀寫

    本章STM32CUBEMX配置STM32F103,并且在GD32F303中進行開發,同時通過開發板內進行驗證。 本例程主要講解如何對芯片自帶Fla
    的頭像 發表于 07-27 09:35 ?1884次閱讀
    STM32CUBEMX<b class='flag-5'>開發</b><b class='flag-5'>GD32F303</b>(17)----內部<b class='flag-5'>Flash</b>讀寫

    GD32F303固件開發(17)----內部Flash讀寫

    本例程主要講解如何對芯片自帶Flash進行讀寫,用芯片內部Flash可以對一些需要斷電保存的數據進行保存,無需加外部得存儲芯片,本例程采用的是GD32F303ZET6主控,512K大小的Fla
    的頭像 發表于 07-27 09:40 ?2474次閱讀
    <b class='flag-5'>GD32F303</b><b class='flag-5'>固件</b><b class='flag-5'>庫</b><b class='flag-5'>開發</b>(17)----內部<b class='flag-5'>Flash</b>讀寫

    創新GD32F4xx系列MCU固件使用指南

    創新GD32F4xx系列MCU固件使用指南GD32F
    發表于 10-19 17:26 ?22次下載

    GD32F303紅楓派開發板使用手冊】第二十講 SPI-SPI NAND FLASH讀寫實驗

    通過本實驗主要學習以下內容: ?SPI通信協議,參考19.2.1東方紅開發板使用手冊 ?GD32F303 SPI操作方式,參考19.2.2東方紅
    的頭像 發表于 06-20 09:50 ?1039次閱讀
    【<b class='flag-5'>GD32F303</b>紅楓派<b class='flag-5'>開發</b>板使用手冊】第二十講 <b class='flag-5'>SPI-SPI</b> NAND <b class='flag-5'>FLASH</b>讀寫實驗

    GD32 MCU 移植教程】2、從 GD32F303 移植GD32F503

    GD32E503 系列是 GD 推出的 Cortex_M33 系列產品,該系列資源上與 GD32F303 兼容度非常高,本應用筆記旨在幫助您快速將應用程序從 GD32F303 系列微控
    的頭像 發表于 08-31 09:36 ?1554次閱讀
    【<b class='flag-5'>GD</b>32 MCU <b class='flag-5'>移植</b>教程】2、從 <b class='flag-5'>GD32F303</b> <b class='flag-5'>移植</b>到 <b class='flag-5'>GD32F</b>503
    主站蜘蛛池模板: 国产亚洲高清视频 | 亚洲欧美强伦一区二区另类 | 成人免费视频无遮挡在线看 | 成人国产三级在线播放 | 高清国产在线观看 | 年轻漂亮的妺妺中文字幕版 | 二级片免费看 | 狠狠色色综合网站 | 日本美女论坛 | 他揉捏她两乳不停呻吟口述 | 久久亚洲国产精品亚洲 | 一品道门在线观看免费视频 | 顶级少妇AAAAABBBBB片 | qovd伦理| 旧里番ovaの催○セイ活指导 | 香蕉人人超人人超碰超国产 | 看全色黄大色大片免费久黄久 | 暖暖免费观看日本在线视频 | 国产在线观看的 | 午夜性爽视频男人的天堂在线 | 公么我好爽再深一点 | 国产成人精品系列在线观看 | 亚洲色图p | 一个人日本的视频免费完整版 | 无码丰满人妻熟妇区 | 日日操夜夜操天天操 | 97视频免费在线观看 | 极品少妇高潮啪啪AV无码吴梦梦 | 久久久久国产一级毛片高清片 | 国产小视频国产精品 | 中文字幕一区二区三区在线观看 | YELLOW视频在线观看最新 | 男人J进入女人P免费狂躁 | 男人j进女人j一进一出 | 少妇被躁爽到高潮无码久久 | 手机看片国产免费 | 97人人爽人人爽人人人片AV | 亚洲中文无码亚洲人在线观看- | 色哟哟网站入口在线观看视频 | 国产亚洲精品久久久999无毒 | 国产精品嫩草免费视频 |