rtthread spiflash (w25q64)

查询spi配置过程

文件路径: /drivers/board.h

/** if you want to use spi bus you can use the following instructions.
 *
 * STEP 1, open spi driver framework support in the RT-Thread Settings file
 *
 * STEP 2, define macro related to the spi bus
 *                 such as     #define BSP_USING_SPI1
 *
 * STEP 3, copy your spi init function from stm32xxxx_hal_msp.c generated by stm32cubemx to the end of board.c file
 *                 such as     void HAL_SPI_MspInit(SPI_HandleTypeDef* hspi)
 *
 * STEP 4, modify your stm32xxxx_hal_config.h file to support spi peripherals. define macro related to the peripherals
 *                 such as     #define HAL_SPI_MODULE_ENABLED
 */
  1. 使能RTT SPI驱动

    打开 RT-Thread Settings-->跟多配置
    |组件
    |---->RT-Thrad组件
    |		|---->设备驱动程序
    |			|---->使能SPI设备驱动程序					√
    
  2. 使能I2C总线
    打开 /drivers/board.h

    #define BSP_USING_SPI1
    
  3. 初始化qspi硬件
    通过 stm32cubemx工具使能spi硬件,在一下路径
    \Core\Src\stm32f7xx_hal_msp.c中将HAL_SPI_MspInit --> /drivers/board.c中

     void HAL_SPI_MspInit(SPI_HandleTypeDef* spiHandle)
     {
     
       GPIO_InitTypeDef GPIO_InitStruct = {0};
       if(spiHandle->Instance==SPI1)
       {
         /* SPI1 clock enable */
         __HAL_RCC_SPI1_CLK_ENABLE();
     
         __HAL_RCC_GPIOA_CLK_ENABLE();
         /**SPI1 GPIO Configuration
         PA5     ------> SPI1_SCK
         PA6     ------> SPI1_MISO
         PA7     ------> SPI1_MOSI
         */
         GPIO_InitStruct.Pin = GPIO_PIN_5|GPIO_PIN_7;
         GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
         GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH;
         HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
     
         GPIO_InitStruct.Pin = GPIO_PIN_6;
         GPIO_InitStruct.Mode = GPIO_MODE_INPUT;
         GPIO_InitStruct.Pull = GPIO_NOPULL;
         HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
       }
     }
     	```
    
  4. 打开相应的HAL库
    打开 /drivers/ stm32f7xx_hal_conf.h

    使能 #define HAL_SPI_MODULE_ENABLED
    
  5. 编译验证
    烧录,在串口终端输入**

/demo>list_device**
spi1    SPI Bus              0
uart1    Character Device     2
pin      Miscellaneous Device 0
  1. 挂载W25q64设备
    添加 spiflash挂载代码

/**
 * 总线上挂载设备 spi10
 * @return
 */
static int bsp_spi_attach_init(void)
{
    __HAL_RCC_GPIOA_CLK_ENABLE();
    rt_err_t ret = rt_hw_spi_device_attach("spi1", "spi10", GPIOA, GPIO_PIN_4);// spi10 表示挂载在 spi3 总线上的 0 号设备,PC0是片选,这一步就可以将从设备挂在到总线中。
    if(ret <0)
    {
        LOG_E("flash attach spi1 failed");
        return -RT_ERROR;
    }
    return RT_EOK;
}
INIT_DEVICE_EXPORT(bsp_spi_attach_init);
  1. 编译验证
    烧录,在串口终端输入
>list_device
device           type         ref count
-------- -------------------- ----------
spi10   SPI Device           0
qspi1    SPI Bus              0
uart1    Character Device     2
pin      Miscellaneous Device 0
  • 设备id读取测试
#define W25Q_SPI_DEVICE_NAME     "spi10"

static void bsp_spi_w25q_sample(int argc, char *argv[])
{
    struct rt_spi_device *spi_dev_w25q;
    char name[RT_NAME_MAX];
    rt_uint8_t w25x_read_id = 0x90;
    rt_uint8_t id[5] = {0};
    if (argc == 2)
    {
        rt_strncpy(name, argv[1], RT_NAME_MAX);
    }
    else
    {
        rt_strncpy(name, W25Q_SPI_DEVICE_NAME, RT_NAME_MAX);
    }

    /* 查找 spi 设备获取设备句柄 */
    spi_dev_w25q = (struct rt_spi_device *)rt_device_find(name);//根据 SPI 设备名称查找设备获取设备句柄
    if (!spi_dev_w25q)
    {
        rt_kprintf("spi sample run failed! can't find %s device!\n", name);
    }
    else
    {
        /* 方式1:使用 rt_spi_send_then_recv()发送命令读取ID */
        rt_spi_send_then_recv(spi_dev_w25q, &w25x_read_id, 1, id, 5);//先发送后接收数据id
        rt_kprintf("use rt_qspi_send_then_recv() read w25q ID is:%x%x\n", id[3], id[4]);
    }
}
/* 导出到 msh 命令列表中 */
MSH_CMD_EXPORT(bsp_spi_w25q_sample, spi w25q sample);
  1. 创建 快设备
  2. 使能RTT SFUD (串行 flash通用驱动)
    打开 RT-Thread Settings-->跟多配置
    |组件
    |---->RT-Thrad组件
    |		|---->设备驱动程序
    |			|---->使能SPI设备驱动程序					√
    |				|---->使能串行 flash通用驱动程序(SFUD)			√
    
    添加创建快设备代码
    /**
     * 注册为块设备
     * @return
     */
    static int bsp_spi_block_device_init(void)
    {
        if (RT_NULL == rt_sfud_flash_probe("W25Q64", "spi10"))  //注册块设备,这一步可以将外部flash抽象为系统的块设备
        {
            LOG_E("flash sfud failed\n");
            return -RT_ERROR;
        };
        return RT_EOK;
    }
    /* 导出到自动初始化 */
    INIT_DEVICE_EXPORT(bsp_spi_block_device_init);
    
  3. 编译验证
    烧录,在串口终端输入
list_device

device           type         ref count
-------- -------------------- ----------
W25Q64   Block Device         0
qspi1    SPI Bus              0
uart1    Character Device     2
pin      Miscellaneous Device 0
  1. 使能 fatfs
打开 RT-Thread Settings
选择fatfs功能后,右键详细配置:分别勾选
|
|---->设备虚拟文件系统
|		|---->使能设备虚拟文件系统		√
|				|---->使能elm chan	FatFs		√
|						|---->elm chan 的FatFs,通用Fat 文件系统模块
|								|---->设置要处理的最大扇区大小				4096(根据flash参数决定)

添加挂载文件系统代码

/**
 * 挂载文件系统
 * @return
 */
static int bsp_spi_flash_mnt_init(void)
{
    dfs_mkfs("elm", "W25Q64");//格式化设备
    if(dfs_mount("W25Q64", "/", "elm", 0, 0)==0)//挂载文件
    {
        LOG_I("dfs mount success\r\n");
        return RT_EOK;
    }else {
        LOG_E("dfs mount failed\r\n");
        return -RT_ERROR;
    }
}
/* 组件自动初始化 */
INIT_COMPONENT_EXPORT(bsp_spi_flash_mnt_init);
  1. 编译验证
    烧录,在串口终端输入
>ls
Directory /:
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值