器件型号: F29H859TU-Q1
您好的团队、
我向我的客户询问这个问题。
我的客户希望在 F29 中使用__sinpuf32、我们发现 F29 不支持此功能、需要进行一些迁移。

我们还可以在 SDK 中找到示例: 
有以下问题:
应在 c 文件中定义哪个 h 文件?
2.从何处查找 C29x 内在函数文档以查找等效函数?
BRS
Shuqing
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.
器件型号: F29H859TU-Q1
您好的团队、
我向我的客户询问这个问题。
我的客户希望在 F29 中使用__sinpuf32、我们发现 F29 不支持此功能、需要进行一些迁移。

我们还可以在 SDK 中找到示例: 
有以下问题:
应在 c 文件中定义哪个 h 文件?
2.从何处查找 C29x 内在函数文档以查找等效函数?
BRS
Shuqing
1..应在 c 文件中定义哪个 h 文件?
等 C29x 内在函数没有头文件 __builtin_c29_i32_add32_rm_d 。 头文件 c28_builtins.h 仅与一起使用 c29clang-tidy 。 下面是一条有用的注释、它靠近顶部 c28_builtins.h 。
/*****************************************************************************/ /* */ /* The following declarations allow for the identification of functions */ /* which are builtins for C28. These functions are not defined, and using */ /* them will lead to link-time failures. */ /* */ /* The intended use-case for this file is as a pre-include for clang-tidy */ /* checks involving C28-to-C29 migration. It does not enable support for */ /* these intrinsics for C29. */ /* */ /*****************************************************************************/
2. 从何处查找 C29x 内在函数文档以查找等效函数?
请参阅 c29clang 在线手册的内置函数和内在函数部分。
谢谢。此致、
-乔治