如何在 CM 中从引导加载程序跳转到应用程序。
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
如何在 CM 中从引导加载程序跳转到应用程序。
尊敬的 Sh1107:
我看到在 CM 闪存内核中、分支到应用程序入口地址的方式使用以下函数:
空 EXIT (uint32_t 地址){
//
//跳转到入口地址
//
__ asm (" bx r0");
}
BX 的编译器输出可 用于间接分支调用( ARM 优化 C/C++编译器 v18.1.0.LTS 用户指南(修订版 R)的第6.11.2.2节)。
谢谢。
查尔斯