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
您好!
通过 Tiva 软件、我们可以找到一个名为 global.xdt 的文件(在 NDK 中)、该文件具有到 CCS 控制台的输出。
例如 XDC_runtime System_printf ("网络已添加:");
这个输出似乎对 Tiva 硬件函数(中断?)产生了问题。
这可能是真的吗?
是否可以通过"一键"禁用此输出(例如、在"属性"中)?
BR Ralf
您好 Ralf、
.cfg 文件中的 System.SupportProxy 是什么? 尝试将其设置为 SysMin (如下所示)
VAR SysMin = xdc.useModule('xdc.runtime.SysMin'); SysMin。bufSize = 512; SysMin。flushAtExit = true; System.SupportProxy = SysMin;
System_printf 的输出将存储在本地缓冲区中,您可以在 CCS 中使用 Tools->ROV->SysMin 进行查看。
Todd