以下使用两种方法生成的HEX文件,亲测可用
(1)万能法
不管.out文件是哪个版本CCS编译器生成的,只要用HEX2000.exe软件,翻译都可以使用。方法:
hex2000 -romwidth 16 -memwidth 16 -i -o 20170817chuankoudayin.hex 20170817chuankoudayin.out
但是这种方法需要进入多windows的Dos界面,在开始->运行->cmd->cd到HEX2000的文件夹中,使用上述命令,就生成了
可以使用的HEX文件。
(2)编译器中设置
大多数朋友想直接编辑.out文件时,就是直接生成可以使用的hex文件,可以按照下列方法(本人的CCS版本是CCS6.0)
(i)点击工程右击,选择Properties,将Enable C2000 Hex Utility勾选
(ii)在Output Format Options中的Output format 选择为—intel,-i
(iii)然后需要将General Options选项中,将Specify memory width = 16 , Specify rom width = 16 ,如图所示
(3)如果没有Enable C2000 Hex Utility
选择:Build-->Steps-->Use pre-defined step ,选择"Create flash image:Intel-HEX",
点击OK后重新编译工程(注意要全编),即可生成HEX文件