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.
工具/软件:Code Composer Studio
我将通过 simplelink_mcu_sdk/Users_Guide.html 查看我需要包含的内容、但我运气不好。 我还通过 simplelink_mcu_sdk 安装目录执行了 grep 操作、以查看它可能在何处定义、但运气不好。 我发现有很多调用、但没有实现。
我已导入 CCS 调试项目、并确保使用 SysMin 作为 TI RTOS 的系统部分。
希望有人可以向我指出适当的文档、其中包含有关如何包含 System_printf 的说明。 我查看了 RTOS 用户指南、但这些指南似乎指向 CCSv6的 Tiva 指令。
当然,System_flush()也未定义!
您的猜测是正确的... 头文件中有以下内容。
#define XDC_runtime System_printf XDC_runtime System_printf___E
#define System_printf XDC_runtime System_printf
有时需要名称空间保护、人们喜欢使用完全限定的名称。 "_E"是一个不同的故事、我不会向您介绍:)
Todd