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.

TMS320F280049C: CCS10.1.1如何设置成Release编译

Part Number: TMS320F280049C
Other Parts Discussed in Thread: C2000WARE

请问大家CCS10.1.1如何设置成Release编译

  • 你好,编译模式大体分两种,一种是debug,也就是在线调试。一种是flash,离线运行。你说的Release应该是后者,也就是烧写到flash的?

    如果是的话,一般只要替换对应的cmd文件,添加cmd文件路径就可以了。部分程序需要搬移到ram运行的话需要添加memcpy函数等等。主要就是这两点,你可以参考一下例程的做法,比如C:\ti\c2000\C2000Ware_3_04_00_00\driverlib\f28004x\examples\gpio,编译的时候点击小锤子旁边的倒三角,可以下拉出来几种编译模式,其中ram就是debug模式,flash就是release模式。可以对比两者的工程配置。

  • 好的,谢谢