DSP

建立一个C6000simulator工程

2019-07-13 18:31发布

在DSP软件调试的时候,首先建立一个simulator进行测试,步骤如下: 1.首先启动Setup CCS 2 ('C6000),进行cpu类型的选择,删掉所有以前的cpu类型,在Available Board/Simulator Types中选择C6xxx Simulator。 2.在Board Properties中注意选择正确的Simulator Config File /ti/drivers/sim64xx_simulator.cfg。 3.Add single 的类型为TMS320C64xx Add Single。 4.完成cpu类型设置后建立工程,然后建立main c,点击New File ->保存为工程名.c 。右键单击工程文件,添加建立的主文件。 5.还有一个比较重要的rts6400.lib 同样要添加到工程中。这时再不建立cmd文件的情况下可以编译运行,但是多出来3个warnings 如下: Warning: The project has no cmd file while the Text Linker is selected
[Linking...] "d:/ti/c6000/cgtools/bin/cl6x" -@"Debug.lkf"
>> warning: creating .stack section with default size of 400 (hex) words.
   Use
            -stack option to change the default size. Build Complete,
  0 Errors, 2 Warnings, 0 Remarks. 至此工程建立完毕,下次要讲下如何建立合适的cmd文件进行内存的映射。