DSP

DSP学习记录(1)——开发环境搭建

2019-07-13 12:04发布

class="markdown_views prism-atom-one-light">

开发环境搭建

   环境搭建还是比较简单,开发板资料送的是ccs5 ccs3两个版本,由于自己喜欢尝鲜直接上官网下载了最新版本CCS8.2下载地址
注意:1、安装英文路径;2、关闭杀毒软件(没有测试,不关闭杀毒软件会出现什么情况)。

打开例程

   再打开例程编译过程中过程中出现了许多的问题。
  1. 首先需要包改掉了原来包的头文件路径,改完后如图所示(改到了F盘)
  2. 出现Include path not found (packages ixdais) ${XDAIS_CG_ROOT}/packages/ti/xdais警告
    解决方法:直接删掉 ${XDAIS_CG_ROOT}/packages/ti/xdais路径
  3. Type Product ‘XDAIS’ v1.0.0 is not currently installed and no compatible version is available.
    主要原因:这次我们打开的工程有可能引用了XDAIS,而CCS没有安装XDAIS,所以会出现下面的错误。 XDAIS解释:“XDAIS (eXpress DSP Algorithm Interoperability Standard) provides the rules and guidelines necessary to enable integration and execution of algorithms (including codecs). It provides C compatible headers for defined interfaces which can algorithms implement and application invoke.”
    解决方法:取消下图打钩的地方。在这里插入图片描述
  4. 出现Description Resource Path Location Type Build-variable ‘XDAIS_CG_ROOT’ cannot be resolved. 错误
    右键工程 ->属性 ->Resource . Linked Resources: Path Variables
    添加如下(路径为安装路径):XDAIS_CG_ROOT D:CCS8.2.0ccsv8
    设置如图所示:
    在这里插入图片描述