Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
qboot
Bootloader
5
使用qboot制作BootLoader,下载APP后不能跳转执行
发布于 2021-04-20 14:39:16 浏览:2387
订阅该版
#bootloader启动提示 ``` \ | / - RT - Thread Operating System / | \ 4.0.2 build Apr 20 2021 2006 - 2019 Copyright by rt-thread team [SFUD] Find a Winbond flash chip. Size is 8388608 bytes. [SFUD] norflash0 flash device is initialize success. [D/FAL] (fal_ Qboot startup ... Qboot version : V1.0.5 2020.10.05 [D/FAL] (fal_flash_init:63) Flash device | stm32_onchip | addr: 0x08000000 | len: 0x00040000 | blk_size: 0x00000800 |initialized finish. [D/FAL] (fal_flash_init:63) Flash device | norflash0 | addr: 0x00000000 | len: 0x00800000 | blk_size: 0x00001000 |initialized finish. [I/FAL] ==================== FAL partition table ==================== [I/FAL] | name | flash_dev | offset | length | [I/FAL] ------------------------------------------------------------- [I/FAL] | bl | stm32_onchip | 0x00000000 | 0x0001b800 | [I/FAL] | app | stm32_onchip | 0x0001b800 | 0x00024800 | [I/FAL] | factory | norflash0 | 0x00000000 | 0x00100000 | [I/FAL] | download | norflash0 | 0x00100000 | 0x00100000 | [I/FAL] ============================================================= [I/FAL] RT-Thread Flash Abstraction Layer (V0.5.0) initialize success. Press [Enter] key into shell in 5 s : key into shellFlash device | stm32_onchip | addr: 0x08000000 | len: 0x00040000 | blk_size: 0x00000800 |initialized finish. [D/FAL] (fal_flash_init:63) Flash device | norflash0 | addr: 0x00000000 | len: 0x00800000 | blk_size: 0x00001000 |initialized finish. [E/Qboot] Qboot firmware check fail. firmware infomation check fail. [E/Qboot] No legitimate application. [I/Qboot] Try resume application from download [E/Qboot] Qboot firmware check fail. firmware infomation check fail. [I/Qboot] Try resume application from factory [E/Qboot] Qboot firmware check fail. firmware infomation check fail. ``` #app的连接脚本 ![image.png](https://oss-club.rt-thread.org/uploads/20210420/f30acb39a60857026be744fea65afd77.png) 使用的芯片是F103RCT6,256K的flash。参考教程制作了BootLoader,测试fal分区这些可以正常读写。然后制作app,更改起始地址0x0001b800,直接用rtthreadstudio下载。启动后提示没有正确的app,无法跳转至app执行 想请问一下我是哪里没配置好吗
查看更多
flashman2002
2021-04-20
这家伙很懒,什么也没写!
首先看到你的Qboot firmware check fail,说明固件检测没有通过。请检查一下原因。
3
个回答
默认排序
按发布时间排序
mii
2021-04-20
这家伙很懒,什么也没写!
```c /** * Function ota_app_vtor_reconfig * Description Set Vector Table base location to the start addr of app(RT_APP_PART_ADDR). */ static int ota_app_vtor_reconfig(void) { #define NVIC_VTOR_MASK 0x3FFFFF80 /* Set the Vector Table base location by user application firmware definition */ SCB->VTOR = RT_APP_PART_ADDR & NVIC_VTOR_MASK; return 0; } INIT_BOARD_EXPORT(ota_app_vtor_reconfig); ``` 在APP端你要添偏移代码 ,其中`RT_APP_PART_ADDR = 0x0801B800`
james_s
2021-04-20
这家伙很懒,什么也没写!
试着在shell里面运行一下qboot probe, 看下结果
撰写答案
登录
注册新账号
关注者
0
被浏览
2.4k
关于作者
John_tang
这家伙很懒,什么也没写!
提问
4
回答
3
被采纳
0
关注TA
发私信
相关问题
1
Linux下通过USBTinyISP为Arduino开发板烧?写Bootloader
2
请教修改NVIC后RTT调度函数失效的问题[已解决 bootloader中打开了不必要的中断]
3
进入bootloader的方式探讨
4
求助:IAP里的APP使用的RTT,跳转后出错。[已解决]
5
有没有人在STM32F103上用UART IAP跑过RT-Thread?
6
想做网口的IAP远程升级,不知可不可行
7
IAP问题
8
[已解决]请教基于RTT的IAP程序切换到应用程序不成功的问题(基于STM32F4)?
9
stm32f4xx-----IAP移植APP程序需要注意的地方
10
在调试IAP网络升级遇到跳转之后bootloader程序网络不通
推荐文章
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
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部