2740|2

194

帖子

0

TA的资源

一粒金砂(高级)

楼主
 

请问大虾,ti官方例程里面有句话,不清楚意义,有没有人帮忙解释一下? [复制链接]

 
    //
    // Return control to the boot loader.  This is a call to the SVC
    // handler in the boot loader.
    //
    (*((void (*)(void))(*(unsigned long *)0x2c)))();

这个是E:\StellarisWare-6852\boards\dk-lm3s9b96-ili9325\boot_demo1这个工程里面的,函数全部如下:


//*****************************************************************************
//
// Passes control to the bootloader and initiates a remote software update.
//
// This function passes control to the bootloader and initiates an update of
// the main application firmware image via UART0, Ethernet or USB depending
// upon the specific boot loader binary in use.
//
// \return Never returns.
//
//*****************************************************************************
void
JumpToBootLoader(void)
{
    //
    // We must make sure we turn off SysTick and its interrupt before entering
    // the boot loader!
    //
    SysTickIntDisable();
    SysTickDisable();

    //
    // Disable all processor interrupts.  Instead of disabling them
    // one at a time, a direct write to NVIC is done to disable all
    // peripheral interrupts.
    //
    HWREG(NVIC_DIS0) = 0xffffffff;
    HWREG(NVIC_DIS1) = 0xffffffff;

    //
    // Return control to the boot loader.  This is a call to the SVC
    // handler in the boot loader.
    //
    (*((void (*)(void))(*(unsigned long *)0x2c)))();
}
函数的意义应该是跳转到升级程序里面去,但是目前困惑是为啥升级函数的地址是0x2C而不是其他?在MDK里面能够看见链接后函数的绝对地址吗?怎么看?谢谢!

ps:我在我的程序里面调用这个函数(有bootloader的),直接崩溃。
 

最新回复

0X2C 是 调用 Startup 中 SVC 处的中断函数,这里应该有个 Update 函数。 如果没有就是 Hard Fault 了。  详情 回复 发表于 2011-10-28 10:40
 
点赞 关注

回复
举报

1803

帖子

0

TA的资源

五彩晶圆(高级)

沙发
 

回复 楼主 zxq6 的帖子

0X2C 是 调用 Startup 中 SVC 处的中断函数,这里应该有个 Update 函数。
如果没有就是 Hard Fault 了。
 
 

回复

194

帖子

0

TA的资源

一粒金砂(高级)

板凳
 

原帖由 Study_Stellaris 于 2011-10-28 10:40 发表 0X2C 是 调用 Startup 中 SVC 处的中断函数,这里应该有个 Update 函数。如果没有就是 Hard Fault 了。

 

谢谢楼上回复。

我看见了,应该是在这个地方:

    if      :def:_FLASH_PATCH_COMPATIBLE
    dcd     UpdateHandler + 0x1000          ; Offset 2C: SVCall handler
    else
    dcd     UpdateHandler                   ; Offset 2C: SVCall handler
    endif

但是很奇怪,我的bootloader里面都有这个函数的,那为啥会出现硬件错误的故障?楼上能否提供点思路,谢谢?

ps,bootloader和app是分开的工程,不过我觉得在app里面直接调用的是地址,应该不会有问题才对。

 
 
 

回复
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/7 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2025 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表