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.

关于TMS320C6657LS在CCS5.4中使用CSL库

Other Parts Discussed in Thread: TMS320C6657, FFTLIB

    在学习使用TMS320C6657LS时,必须使用CCS5.4版本,但是关于在CCS5.4中使用CSL库时没有找到指导手册,官方下载的TMS320C6000 CSL API Reference Guide (Rev. I)里面看到的支持芯片里面没有C6657,而且看了一些例子以后发现在C6657里面很多头文件都改了,还有在CCS5.4环境中的操作也和CCS3.3不一样,学习很费劲。到安装目录里面查看pdk_C6657_1_1_2_6\docs\CSL-legacy-API-changes.pdf,确实讲解了很多更改的地方,不过实际操作的指导没有。想了解一下在学习这块板子时有没有更合适的CSL资料可用?

    比如在初次尝试初始化CSL库时就失败了:

#include<stdio.h>
#include<csl.h>

void main(void) {
 
 CSL_sysInit();
 printf("CSL_sysInit success");

}

build是发现如下错误:

Description Resource Path Location Type
unresolved symbol CSL_sysInit, first referenced in ./main.obj example_follow    C/C++ Problem
#10234-D unresolved symbols remain example_follow    C/C++ Problem
#10010 errors encountered during linking; "example_follow.out" not built example_follow    C/C++ Problem

在include options里面添加的路劲如下图:

我想知道还需要什么操作吗?还有怎么根据这个错误编号查找解决方案呢?

谢谢!