rt-thread(5.0版本)之sfud组件的使用问题记录(w25q128存储模块)

本文主要是介绍rt-thread(5.0版本)之sfud组件的使用问题记录(w25q128存储模块),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

前言

  1. 记录一下5.0版本时使用官方推荐的函数与底层驱动存在的不兼容问题

在这里插入图片描述

相关宏定义

// -----------------------------SPI 组件
#define RT_USING_SPI
#define RT_USING_SFUD
#define RT_SFUD_USING_SFDP
#define RT_SFUD_USING_FLASH_INFO_TABLE
#define RT_SFUD_SPI_MAX_HZ 50000000
#define RT_DEBUG_SFUD

使用旧的api函数

硬件驱动(使用的SPI1)

//
// Created by shchl on 2024/3/20.
//
#include "board.h"
#ifdef RT_USING_SPI
/**
* @brief SPI MSP Initialization
* This function configures the hardware resources used in this example
* @param hspi: SPI handle pointer
* @retval None
*/
void HAL_SPI_MspInit(SPI_HandleTypeDef* hspi)
{GPIO_InitTypeDef GPIO_InitStruct = {0};if(hspi->Instance==SPI1){
#ifdef BSP_USING_SPI1/* USER CODE BEGIN SPI1_MspInit 0 *//* USER CODE END SPI1_MspInit 0 *//* Peripheral clock enable */__HAL_RCC_SPI1_CLK_ENABLE();__HAL_RCC_GPIOB_CLK_ENABLE();/**SPI1 GPIO ConfigurationPB3     ------> SPI1_SCKPB4     ------> SPI1_MISOPB5     ------> SPI1_MOSI*/GPIO_InitStruct.Pin = GPIO_PIN_3|GPIO_PIN_4|GPIO_PIN_5;GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;GPIO_InitStruct.Pull = GPIO_NOPULL;GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH;GPIO_InitStruct.Alternate = GPIO_AF5_SPI1;HAL_GPIO_Init(GPIOB, &GPIO_InitStruct);/* USER CODE BEGIN SPI1_MspInit 1 *//* USER CODE END SPI1_MspInit 1 */
#endif}}#endif

w25q128驱动组件

//
// Created by shchl on 2024/3/20.
//#include "board_w25q128.h"
#include "board.h"
#include "drv_spi.h"
#include "spi_flash_sfud.h"static int rt_hw_spi_flash_init(void) {if (RT_EOK != rt_hw_spi_device_attach("spi1", "spi10", GPIOB, GPIO_PIN_14)) {LOG_E("Failed to attach the spi device.");return -RT_ERROR;}if (RT_NULL == rt_sfud_flash_probe("W25Q128BV", "spi10")) {LOG_E("Failed to probe the W25Q128.");return -RT_ERROR;};return RT_EOK;
}/* 导出到自动初始化 */
INIT_COMPONENT_EXPORT(rt_hw_spi_flash_init);

测试结果(ok)

在这里插入图片描述

使用5.0版本之后(官方推荐函数)

硬件驱动(同上)

w25q128驱动组件

//
// Created by shchl on 2024/3/20.
//#include "board_w25q128.h"
#include "board.h"
#include "drv_spi.h"
#include "spi_flash_sfud.h"static int rt_hw_spi_flash_init(void)
{struct rt_spi_device *spi_device = RT_NULL;spi_device = (struct rt_spi_device *)rt_malloc(sizeof(struct rt_spi_device));if(RT_NULL == spi_device){LOG_E("Failed to malloc the spi device.");return -RT_ENOMEM;}if (RT_EOK != rt_spi_bus_attach_device_cspin(spi_device, "spi10", "spi1",GET_PIN(B, 14), RT_NULL)){LOG_E("Failed to attach the spi device.");return -RT_ERROR;}if (RT_NULL == rt_sfud_flash_probe("W25Q128BV", "spi10")){LOG_E("Failed to probe the W25Q128BV.");return -RT_ERROR;};return RT_EOK;
}/* 导出到自动初始化 */
INIT_COMPONENT_EXPORT(rt_hw_spi_flash_init);

运行结果(出现错误)

在这里插入图片描述

原因分析

在这里插入图片描述在这里插入图片描述

驱动调整(针对5.0版本,总共修改2处)

在这里插入图片描述
在这里插入图片描述

修改后的函数

static rt_uint32_t spixfer(struct rt_spi_device *device, struct rt_spi_message *message)
{HAL_StatusTypeDef state;rt_size_t message_length, already_send_length;rt_uint16_t send_length;rt_uint8_t *recv_buf;const rt_uint8_t *send_buf;RT_ASSERT(device != RT_NULL);RT_ASSERT(device->bus != RT_NULL);RT_ASSERT(device->bus->parent.user_data != RT_NULL);RT_ASSERT(message != RT_NULL);struct stm32_spi *spi_drv =  rt_container_of(device->bus, struct stm32_spi, spi_bus);SPI_HandleTypeDef *spi_handle = &spi_drv->handle;struct stm32_hw_spi_cs *cs = device->parent.user_data;if (message->cs_take && !(device->config.mode & RT_SPI_NO_CS)){if (cs) {if (device->config.mode & RT_SPI_CS_HIGH)HAL_GPIO_WritePin(cs->GPIOx, cs->GPIO_Pin, GPIO_PIN_SET);elseHAL_GPIO_WritePin(cs->GPIOx, cs->GPIO_Pin, GPIO_PIN_RESET);} else {if (device->config.mode & RT_SPI_CS_HIGH)rt_pin_write(device->cs_pin, PIN_HIGH);elsert_pin_write(device->cs_pin, PIN_LOW);}}LOG_D("%s transfer prepare and start", spi_drv->config->bus_name);LOG_D("%s sendbuf: %X, recvbuf: %X, length: %d",spi_drv->config->bus_name,(uint32_t)message->send_buf,(uint32_t)message->recv_buf, message->length);message_length = message->length;recv_buf = message->recv_buf;send_buf = message->send_buf;while (message_length){/* the HAL library use uint16 to save the data length */if (message_length > 65535){send_length = 65535;message_length = message_length - 65535;}else{send_length = message_length;message_length = 0;}/* calculate the start address */already_send_length = message->length - send_length - message_length;send_buf = (rt_uint8_t *)message->send_buf + already_send_length;recv_buf = (rt_uint8_t *)message->recv_buf + already_send_length;/* start once data exchange in DMA mode */if (message->send_buf && message->recv_buf){if ((spi_drv->spi_dma_flag & SPI_USING_TX_DMA_FLAG) && (spi_drv->spi_dma_flag & SPI_USING_RX_DMA_FLAG)){state = HAL_SPI_TransmitReceive_DMA(spi_handle, (uint8_t *)send_buf, (uint8_t *)recv_buf, send_length);}else{state = HAL_SPI_TransmitReceive(spi_handle, (uint8_t *)send_buf, (uint8_t *)recv_buf, send_length, 1000);}}else if (message->send_buf){if (spi_drv->spi_dma_flag & SPI_USING_TX_DMA_FLAG){state = HAL_SPI_Transmit_DMA(spi_handle, (uint8_t *)send_buf, send_length);}else{state = HAL_SPI_Transmit(spi_handle, (uint8_t *)send_buf, send_length, 1000);}if (message->cs_release && (device->config.mode & RT_SPI_3WIRE)){/* release the CS by disable SPI when using 3 wires SPI */__HAL_SPI_DISABLE(spi_handle);}}else{memset((uint8_t *)recv_buf, 0xff, send_length);if (spi_drv->spi_dma_flag & SPI_USING_RX_DMA_FLAG){state = HAL_SPI_Receive_DMA(spi_handle, (uint8_t *)recv_buf, send_length);}else{/* clear the old error flag */__HAL_SPI_CLEAR_OVRFLAG(spi_handle);state = HAL_SPI_Receive(spi_handle, (uint8_t *)recv_buf, send_length, 1000);}}if (state != HAL_OK){LOG_I("spi transfer error : %d", state);message->length = 0;spi_handle->State = HAL_SPI_STATE_READY;}else{LOG_D("%s transfer done", spi_drv->config->bus_name);}/* For simplicity reasons, this example is just waiting till the end of thetransfer, but application may perform other tasks while transfer operationis ongoing. */while (HAL_SPI_GetState(spi_handle) != HAL_SPI_STATE_READY);}if (message->cs_release && !(device->config.mode & RT_SPI_NO_CS)){if (cs) {if (device->config.mode & RT_SPI_CS_HIGH)HAL_GPIO_WritePin(cs->GPIOx, cs->GPIO_Pin, GPIO_PIN_RESET);elseHAL_GPIO_WritePin(cs->GPIOx, cs->GPIO_Pin, GPIO_PIN_SET);} else {if (device->config.mode & RT_SPI_CS_HIGH)rt_pin_write(device->cs_pin, PIN_LOW);elsert_pin_write(device->cs_pin, PIN_HIGH);}}return message->length;
}

测试结果

在这里插入图片描述

这篇关于rt-thread(5.0版本)之sfud组件的使用问题记录(w25q128存储模块)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/831022

相关文章

JS常用组件收集

收集了一些平时遇到的前端比较优秀的组件,方便以后开发的时候查找!!! 函数工具: Lodash 页面固定: stickUp、jQuery.Pin 轮播: unslider、swiper 开关: switch 复选框: icheck 气泡: grumble 隐藏元素: Headroom

中文分词jieba库的使用与实景应用(一)

知识星球:https://articles.zsxq.com/id_fxvgc803qmr2.html 目录 一.定义: 精确模式(默认模式): 全模式: 搜索引擎模式: paddle 模式(基于深度学习的分词模式): 二 自定义词典 三.文本解析   调整词出现的频率 四. 关键词提取 A. 基于TF-IDF算法的关键词提取 B. 基于TextRank算法的关键词提取

使用SecondaryNameNode恢复NameNode的数据

1)需求: NameNode进程挂了并且存储的数据也丢失了,如何恢复NameNode 此种方式恢复的数据可能存在小部分数据的丢失。 2)故障模拟 (1)kill -9 NameNode进程 [lytfly@hadoop102 current]$ kill -9 19886 (2)删除NameNode存储的数据(/opt/module/hadoop-3.1.4/data/tmp/dfs/na

Hadoop数据压缩使用介绍

一、压缩原则 (1)运算密集型的Job,少用压缩 (2)IO密集型的Job,多用压缩 二、压缩算法比较 三、压缩位置选择 四、压缩参数配置 1)为了支持多种压缩/解压缩算法,Hadoop引入了编码/解码器 2)要在Hadoop中启用压缩,可以配置如下参数

Makefile简明使用教程

文章目录 规则makefile文件的基本语法:加在命令前的特殊符号:.PHONY伪目标: Makefilev1 直观写法v2 加上中间过程v3 伪目标v4 变量 make 选项-f-n-C Make 是一种流行的构建工具,常用于将源代码转换成可执行文件或者其他形式的输出文件(如库文件、文档等)。Make 可以自动化地执行编译、链接等一系列操作。 规则 makefile文件

好题——hdu2522(小数问题:求1/n的第一个循环节)

好喜欢这题,第一次做小数问题,一开始真心没思路,然后参考了网上的一些资料。 知识点***********************************无限不循环小数即无理数,不能写作两整数之比*****************************(一开始没想到,小学没学好) 此题1/n肯定是一个有限循环小数,了解这些后就能做此题了。 按照除法的机制,用一个函数表示出来就可以了,代码如下

hdu1043(八数码问题,广搜 + hash(实现状态压缩) )

利用康拓展开将一个排列映射成一个自然数,然后就变成了普通的广搜题。 #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#inclu

使用opencv优化图片(画面变清晰)

文章目录 需求影响照片清晰度的因素 实现降噪测试代码 锐化空间锐化Unsharp Masking频率域锐化对比测试 对比度增强常用算法对比测试 需求 对图像进行优化,使其看起来更清晰,同时保持尺寸不变,通常涉及到图像处理技术如锐化、降噪、对比度增强等 影响照片清晰度的因素 影响照片清晰度的因素有很多,主要可以从以下几个方面来分析 1. 拍摄设备 相机传感器:相机传

如何在页面调用utility bar并传递参数至lwc组件

1.在app的utility item中添加lwc组件: 2.调用utility bar api的方式有两种: 方法一,通过lwc调用: import {LightningElement,api ,wire } from 'lwc';import { publish, MessageContext } from 'lightning/messageService';import Ca

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo