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.

CCS6.0 调试CC3200无法生成bin文件的问题

Other Parts Discussed in Thread: CC3200

在使用CCS6.0调试CC3200的时候,项目一直无法生成bin文件,希望能够解答

  • 请查看社区的相关问题:

    http://www.deyisupport.com/question_answer/microcontrollers/c2000/f/56/t/81386.aspx

    应该能解决你的问题的了。  

  • 默认情况下,通过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文件。