在使用CCS6.0调试CC3200的时候,项目一直无法生成bin文件,希望能够解答
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.
默认情况下,通过CCS编译的工程,只生成.out文件。需要通过工程配置,添加必要的语句,编译后生成bin文件(也叫post build)。
(1)选择工程,右键选择配置:
(2)选择Build,在右侧中选择steps选项;
(3)在post build的command下添加以下命令:
"${CCE_INSTALL_ROOT}/utils/tiobj2bin/tiobj2bin" "${BuildArtifactFileName}" "${BuildArtifactFileBaseName}.bin" "${CG_TOOL_ROOT}/bin/armofd" "${CG_TOOL_ROOT}/bin/armhex" "${CCE_INSTALL_ROOT}/utils/tiobj2bin/mkhex4bin"

此时,再编译工程,在Debug目录下会生成Bin文件。
