Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
FAL
ota在线升级
初学RTT,OTA升级配置请教
发布于 2020-02-28 13:18:50 浏览:3507
订阅该版
大家好,在做OTA升级的时候遇到一些问题,有些还搞不太明白,希望能得到大家的帮助。 CPU是STM32F103RET6,外部FLASH采用W25Q126,规划用于OTA的download和factory放在外部FLASH. 问题如下: 1、系统在启动的时候SFUD没有自动初始化,没有找到在哪儿设置,如果需要自己初始化的话该怎么初始化呢。 2、因为app放在内部flash,download和factory放在片外flash,是不是fal_flash_sfud_port.c和fal_flash_stm32f2_port.c都需要用起来吗?我生成的文件没有`fal_flash_stm32f2_port.c`写内部FLASH的文件,这个需要吗? 3、手动执行`“sf probe norflash0”`可以找到flash,但在执行fal_init()的时候还是显示“ Flash device norflash0 not found!”,解决这个问题需要注意哪方面的东西呢? 我在手动执行“sf probe norflash0”后再手动执行`fal_init()`,还是同样的问题。 4、系统日志显示`“(fal_partition_init:272) Warning: Do NOT found the flash device(stm32_onchip)”`,是不是需要`al_flash_stm32f2_port.c`文件? 非常感谢。 下面的系统日志。 ``` __ ___ __ __ __ ___ |__) | __ |__) / \ / \ | | \ | |__) \__/ \__/ | 2006 - 2019 Copyright by rt-thread team 0.9.2 build Feb 28 2020 [D/FAL] (fal_flash_init:63) Flash device | onchip_flash | addr: 0x08000000 | len: 0x00080000 | blk_size: 0x00000800 |initialized finish. [D/FAL] (fal_flash_init:63) Flash device | nor_flash | addr: 0x00000000 | len: 0x01000000 | blk_size: 0x00001000 |initialized finish. [I/FAL] ==================== FAL partition table ==================== [I/FAL] | name | flash_dev | offset | length | [I/FAL] ------------------------------------------------------------- [I/FAL] | app | onchip_flash | 0x00020000 | 0x00040000 | [I/FAL] | download | nor_flash | 0x00000000 | 0x00040000 | [I/FAL] | factory | nor_flash | 0x00040000 | 0x00040000 | [I/FAL] ============================================================= [I/FAL] RT-Thread Flash Abstraction Layer (V0.4.0) initialize success. [I/FAL] System initialization successful. [I]RT-Thread OTA package(V0.2.1) initialize success. [E]Get firmware header occur CRC32(calc.crc: 3356569f != hdr.info_crc32: 55555555) error on 'download' partition! [E]Get OTA download partition firmware header failed! [E]Get firmware header occur CRC32(calc.crc: 7b93c5c8 != hdr.info_crc32: ffffffff) error on 'app' partition! [I]Begin to execute the program on app partition. [I/FAL] Find user firmware at app partition 0x08020000 successfully. [I/FAL] Bootloader jumps to user firmware now. \ | / - RT - Thread Operating System / | \ 4.0.1 build Feb 28 2020 2006 - 2019 Copyright by rt-thread team [E/DFS] There is no space to register this file system (rom). [I/sal.skt] Socket Abstraction Layer initialize success. [I/at.clnt] AT client(V1.2.0) on device uart3 initialize success. ERROR: Flash device norflash0 not found! [D/FAL] (fal_flash_init:61) Flash device | norflash0 | addr: 0x00000000 | len: 0x00800000 | blk_size: 0x00001000 |initialized finish. [D/FAL] (fal_partition_init:272) Warning: Do NOT found the flash device(stm32_onchip). [I/FAL] ==================== FAL partition table ==================== [I/FAL] | name | flash_dev | offset | length | [I/FAL] ------------------------------------------------------------- [I/FAL] | app | stm32_onchip | 0x00000000 | 0x00040000 | [I/FAL] | download | norflash0 | 0x00000000 | 0x00040000 | [I/FAL] | factory | norflash0 | 0x00040000 | 0x00040000 | [I/FAL] ============================================================= [I/FAL] RT-Thread Flash Abstraction Layer (V0.4.0) initialize success. The current version of APP firmware is 1.0.0 msh />sf probe norflash0 [SFUD] sf_cmd flash device is initialize success. [SFUD] Probe SPI flash sf_cmd by SPI device norflash0 success. 16 MB sf_cmd is current selected device. ```
查看更多
4
个回答
默认排序
按发布时间排序
gxmlsl
2020-02-28
这家伙很懒,什么也没写!
今天下午把这些问题都搞定了,用ymodem通过串口可以下载程序,也可以更新了。只是有点不明白为啥下载程序分区要选择为app,为啥不是download分区。
Line
2020-04-30
这家伙很懒,什么也没写!
请问2是怎么解决的?
gxmlsl
2020-05-08
这家伙很懒,什么也没写!
我这个程序里没有用到fal_flash_stm32f2_port.c文件
阳光的掌控者
2023-11-17
这家伙很懒,什么也没写!
有可能是这两个位置的名称不一致 ![screenshot_image.png](https://oss-club.rt-thread.org/uploads/20231117/0cfcc625774c0532a87383175b70da1d.png) ![screenshot_image.png](https://oss-club.rt-thread.org/uploads/20231117/e3d6c2c9c15f53f88f729fe76e80e006.png)
撰写答案
登录
注册新账号
关注者
0
被浏览
3.5k
关于作者
gxmlsl
这家伙很懒,什么也没写!
提问
2
回答
6
被采纳
0
关注TA
发私信
相关问题
1
关于FAL移植
2
添加fal软件包之后编译出现错误,求助!
3
关于easyflash4.0的写入和读取norflash一些疑惑咨询
4
FAL驱动移植&构建脚本问题
5
帮我看一下这样分区会不会冲突??
6
EasyFlash 4.0疑似出BUG
7
疑似FAL日志输出与DFS冲突??
8
fal软件包偏移量大于等于当前分区的大小会报错
9
为什么片内Flash总是写失败?
10
片上flash的文件系统的建立
推荐文章
1
RT-Thread应用项目汇总
2
玩转RT-Thread系列教程
3
国产MCU移植系列教程汇总,欢迎查看!
4
机器人操作系统 (ROS2) 和 RT-Thread 通信
5
五分钟玩转RT-Thread新社区
6
【技术三千问】之《玩转ART-Pi》,看这篇就够了!干货汇总
7
关于STM32H7开发板上使用SDIO接口驱动SD卡挂载文件系统的问题总结
8
STM32的“GPU”——DMA2D实例详解
9
RT-Thread隐藏的宝藏之completion
10
【ART-PI】RT-Thread 开启RTC 与 Alarm组件
最新文章
1
使用百度AI助手辅助编写一个rt-thread下的ONVIF设备发现功能的功能代码
2
RT-Thread 发布 EtherKit开源以太网硬件!
3
rt-thread使用cherryusb实现虚拟串口
4
《C++20 图形界面程序:速度与渲染效率的双重优化秘籍》
5
《原子操作:程序世界里的“最小魔法单位”解析》
热门标签
RT-Thread Studio
串口
Env
LWIP
SPI
AT
Bootloader
Hardfault
CAN总线
FinSH
ART-Pi
USB
DMA
文件系统
RT-Thread
SCons
RT-Thread Nano
线程
MQTT
STM32
RTC
FAL
rt-smart
ESP8266
I2C_IIC
WIZnet_W5500
UART
ota在线升级
PWM
cubemx
freemodbus
flash
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
Debug
编译报错
msh
SFUD
keil_MDK
rt_mq_消息队列_msg_queue
ulog
C++_cpp
at_device
本月问答贡献
踩姑娘的小蘑菇
7
个答案
3
次被采纳
a1012112796
13
个答案
2
次被采纳
张世争
9
个答案
2
次被采纳
rv666
5
个答案
2
次被采纳
用户名由3_15位
11
个答案
1
次被采纳
本月文章贡献
程序员阿伟
8
篇文章
2
次点赞
hhart
3
篇文章
4
次点赞
大龄码农
1
篇文章
3
次点赞
ThinkCode
1
篇文章
1
次点赞
Betrayer
1
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部