keil调试功能介绍

keil的调试使用

  • keil中如何一步步执行汇编指令?
    将鼠标点击汇编窗口后,在单步执行则是单步执行汇编了;同理点击源代码后就是单步执行源代码了。

  • keil 生成反汇编和bin文件
    填写指令:
    生成汇编指令:

    1
    fromelf --text -a -c --output=all.dis Objects\StepMonitor.axf

    其中 "all.dis""Objects\StepMonitor.axf" 都是相对于 ".uvprojx" 所在目录而言的

生成烧写bin文件

1
fromelf --bin --output=test.bin Objects\StepMonitor.axf

其中,烧写bin文件需要使用到 STM32CubeProgrammer

参考资料

https://blog.csdn.net/qq_28576837/article/details/129720659


keil调试功能介绍
https://ysc2.github.io/ysc2.github.io/2023/12/24/keil调试功能介绍/
作者
Ysc
发布于
2023年12月24日
许可协议