Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
Bootloader
IAP_在线更新
stm32f103 Bootload程序跑了RTT 要跳转到APP程序出错
发布于 2016-05-11 13:21:25 浏览:3153
订阅该版
```c INTX_DISABLE(); jump2app=(iapfun)*(vu32*)(APPLICATION_ADDRESS+4); __set_MSP(*(vu32*)APPLICATION_ADDRESS); NVIC_SetVectorTable(NVIC_VectTab_FLASH,0x29000); jump2app(); ``` ``` 这段程序在rtt的一个线程中,中断也清了,还是不行啊,RTT是不是因为有保护,不能跳转程序,怎么修改。
查看更多
2
个回答
默认排序
按发布时间排序
aozima
2016-05-11
调网络不抓包,调I2C等时序不上逻辑分析仪,就像电工不用万用表!多用整理的好的文字,比截图更省流量,还能在整理过程中思考。
下面是F2和F4的,F1关于外设相关的需要小修改一下。 然后特别留意APP中是否又把中断向量给设回0了。 ```c /* * File : rbl_jump_stm32f2_f4.c.c * This file is part of RT-Thread RTOS * COPYRIGHT (C) 2006 - 2015, RT-Thread Development Team * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * Change Logs: * Date Author Notes * 2014-03-12 aozima first version. * 2015-09-22 aozima disable and clean up all interrupts. */ #include
#include
void jump_to_app(uint32_t app_address) { typedef void (*_func)(void); __disable_irq(); /* MCU peripherals re-initial. */ { GPIO_InitTypeDef GPIO_InitStruct; GPIO_InitStruct.GPIO_Mode = GPIO_Mode_IN; GPIO_InitStruct.GPIO_Speed = GPIO_Speed_2MHz; GPIO_InitStruct.GPIO_OType = GPIO_OType_OD; GPIO_InitStruct.GPIO_PuPd = GPIO_PuPd_NOPULL; GPIO_InitStruct.GPIO_Pin = GPIO_Pin_All; GPIO_InitStruct.GPIO_Pin &= ~(GPIO_Pin_13 | GPIO_Pin_14); /* SWDIO/SWCLK */ GPIO_Init(GPIOA, &GPIO_InitStruct); GPIO_InitStruct.GPIO_Pin = GPIO_Pin_All; GPIO_Init(GPIOB, &GPIO_InitStruct); GPIO_Init(GPIOC, &GPIO_InitStruct); GPIO_Init(GPIOD, &GPIO_InitStruct); GPIO_Init(GPIOE, &GPIO_InitStruct); GPIO_Init(GPIOF, &GPIO_InitStruct); GPIO_Init(GPIOG, &GPIO_InitStruct); GPIO_Init(GPIOH, &GPIO_InitStruct); GPIO_Init(GPIOI, &GPIO_InitStruct); /* reset systick */ SysTick->CTRL &= ~SysTick_CTRL_ENABLE_Msk; /* disable all peripherals clock. */ RCC->AHB1ENR = (1<<20); /* 20: F4 CCMDAT ARAMEN. */ RCC->AHB2ENR = 0; RCC->AHB3ENR = 0; RCC->APB1ENR = 0; RCC->APB2ENR = 0; /* Switch to default cpu clock. */ RCC->CFGR = 0; } /* MCU peripherals re-initial. */ /* Disable MPU */ MPU->CTRL &= ~MPU_CTRL_ENABLE_Msk; /* disable and clean up all interrupts. */ { int i; for(i = 0; i < 8; i++) { /* disable interrupts. */ NVIC->ICER[i] = 0xFFFFFFFF; /* clean up interrupts flags. */ NVIC->ICPR[i] = 0xFFFFFFFF; } } /* Set new vector table pointer */ SCB->VTOR = app_address; /* reset register values */ __set_BASEPRI(0); __set_FAULTMASK(0); /* set up MSP and switch to it */ __set_MSP(*(uint32_t*)app_address); __set_PSP(*(uint32_t*)app_address); __set_CONTROL(0); /* ensure what we have done could take effect */ __ISB(); __disable_irq(); /* never return */ ((_func)(*(uint32_t*)(app_address + 4)))(); } ```
撰写答案
登录
注册新账号
关注者
0
被浏览
3.2k
关于作者
vactor
这家伙很懒,什么也没写!
提问
1
回答
0
被采纳
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
ota在线升级
UART
PWM
cubemx
freemodbus
flash
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
Debug
编译报错
msh
SFUD
keil_MDK
rt_mq_消息队列_msg_queue
at_device
ulog
C++_cpp
本月问答贡献
踩姑娘的小蘑菇
7
个答案
3
次被采纳
a1012112796
13
个答案
2
次被采纳
张世争
9
个答案
2
次被采纳
rv666
5
个答案
2
次被采纳
用户名由3_15位
11
个答案
1
次被采纳
本月文章贡献
程序员阿伟
7
篇文章
2
次点赞
hhart
3
篇文章
4
次点赞
大龄码农
1
篇文章
2
次点赞
ThinkCode
1
篇文章
1
次点赞
Betrayer
1
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部