查询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
*/
-
使能RTT SPI驱动
打开 RT-Thread Settings-->跟多配置 |组件 |---->RT-Thrad组件 | |---->设备驱动程序 | |---->使能SPI设备驱动程序 √
-
使能I2C总线
打开 /drivers/board.h#define BSP_USING_SPI1
-
初始化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); } } ```
-
打开相应的HAL库
打开 /drivers/ stm32f7xx_hal_conf.h使能 #define HAL_SPI_MODULE_ENABLED
-
编译验证
烧录,在串口终端输入**
/demo>list_device**
spi1 SPI Bus 0
uart1 Character Device 2
pin Miscellaneous Device 0
- 挂载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);
- 编译验证
烧录,在串口终端输入
>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);
- 创建 快设备
- 使能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);
- 编译验证
烧录,在串口终端输入
list_device
device type ref count
-------- -------------------- ----------
W25Q64 Block Device 0
qspi1 SPI Bus 0
uart1 Character Device 2
pin Miscellaneous Device 0
- 使能 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);
- 编译验证
烧录,在串口终端输入
>ls
Directory /: