Keil中如何生成bin文件
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
1. 一般借助fromelf工具,安装好Keil后默认会在安装目录中找到fromelf工具。
2. 一般在windows平台很难像Linux平台一样使用命令的方式启动格式转换,但是类似IAR,或Keil等带编译器的IDE,都会有编译选项,即编译器或编译后自动执行命令行。
3. 在Keil中,首先配置输出文件,在Output选项中的Name of Executable是可执行文件名,这样就会生成my-first-prj.axf文件,后续会根据这个文件生成bin文件。
4. 在User目录下,After Build/Rebuild的Run #1处写下如下命令行
fromelf --bin --output=..\my.bin ..\obj\my-first-prj.axf
--output=..\my.bin表示生成bin文件存放路径,..\obj\my-first-prj.axf表示生成bin文件所需的axf文件路径。
5. 关于fromelf命令的语法,详见
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献4条内容
所有评论(0)