C6678最新发布的Processor SDK,其例程提供了源代码、RTSC配置文件(.cfg)和一个CCS工程的创建脚本,但没有直接提供CCS工程。如NDK的Helloworld例程的文件结构如下:
C:/ti/pdk_c667x_2_0_9/packages/ti/transport/ndk/nimu/example/helloWorld
├─c6678
│ └─c66
│ └─bios
│ ├─helloWorld.cfg
│ └─NIMU_emacExample_EVMC6678C66BiosExampleProject.txt
└─src
├─helloWorld.c
├─nimu_cppi_qmss_iface.c
├─nimu_cppi_qmss_iface.h
├─nimu_osal.c
├─nimu_pa_iface.c
├─setuprm.c
└─udpHello.c
其中NIMU_emacExample_EVMC6678C66BiosExampleProject.txt是CCS工程创建脚本文件,无法用CCS直接导入,需要使用CCS命令行创建,命令如下:
c:/ti/ccsv7/eclipse/eclipsec –noSplash -data "d:/MyCcsWorkSpace" -application com.ti.ccstudio.apps.projectCreate -ccs.name helloWorld -ccs.outputType executable -ccs.device TMS320C66XX.TMS320C6678 -ccs.definePathVariable PDK_INSTALL_PATH C:/ti/pdk_c667x_2_0_9/packages @scope project -rtsc.target ti.targets.elf.C66 -rtsc.platform ti.platforms.evm6678 -rtsc.buildProfile release -ccs.args C:/ti/pdk_c667x_2_0_9/packages/ti/transport/ndk/nimu/example/helloWorld/c6678/c66/bios/NIMU_emacExample_EVMC6678C66BiosExampleProject.txt
可以将以上命令粘贴到批处理文件运行。
参考链接:
https://blog.csdn.net/Sun19910114/article/details/50835188 ccs5命令行编译