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.

[参考译文] TMS320F28375S:在 CCS 版本10.1.1中创建 TMS320F28375S 新项目

Guru**** 2027820 points
请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

https://e2e.ti.com/support/microcontrollers/c2000-microcontrollers-group/c2000/f/c2000-microcontrollers-forum/1022837/tms320f28375s-tms320f28375s-new-project-creation-in-ccs-version-10-1-1

器件型号:TMS320F28375S

您好!

我已经安装了 CCS 版本10.1.1、并正在创建一个新项目。

请通过以下问题澄清我的问题:

1) 1)在2000链接器的高级选项中、命令文件预处理器中的 undefine 符号有何用途?

2) 2)如何设置 C 系统堆栈大小、以及如何 识别 是否存在溢出?

3) 3)我在此版本中找到了5个不同的 IQ 相关库、如下所示。 我是否可以知道其中包含什么类型的 IQ 函数、以便知道要为我的项目包含哪种 IQ 函数

     i) IQmath

     ii) IQmath_coff

     ii) IQmath_eabi

     IV) IQmath_fpu32

     v) IQmath_fpu32_coff

     vi) IQmath_fpu32_eabi

谢谢、

P. Shreni

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    您好!

    [引用 userid="492629" URL"~/support/microcontrollers/c2000-microcontrollers-group/c2000/f/c2000-microcontrollers-forum/1022837/tms320f28375s-tms320f28375s-new-project-creation-in-ccs-version-10-1-1 ]1)在2000链接器的高级选项中,命令文件预处理器中的 undefine 符号有何用途?[/quot]

    它与 C 语言中的#undef 预处理器相同。基本而言、它会删除特定宏的所有定义、因此该宏的#ifdef 将始终计算为 false。

    [引用 userid="492629" URL"~/support/microcontrollers/c2000-microcontrollers-group/c2000/f/c2000-microcontrollers-forum/1022837/tms320f28375s-tms320f28375s-new-project-creation-in-ccs-version-10-1-1 ]2)如何设置 C 系统堆栈大小以及如何 识别 是否存在溢出?

    Project Properties -> C000 Linker -> Basic Options -> Change stack size

    [引用 userid="492629" URL"~/support/microcontrollers/c2000-microcontrollers-group/c2000/f/c2000-microcontrollers-forum/1022837/tms320f28375s-tms320f28375s-new-project-creation-in-ccs-version-10-1-1 ]我在此版本中找到了5个不同的 IQ 相关库、如下所示。 请问其中包含什么类型的 IQ 函数、以便知道我的项目中包含哪一个函数[/QUERPLET]

    'IQMath '是一个索引库、可帮助编译器从其余5个选项中选择合适的库。 _coff 和_eabi 表示目标文件格式、而_fpu32表示该库是使用在处理器选项中启用的 fpu32进行编译的。 有关详细说明、请参阅 IQMath 文档。

    -Shantanu