我想要单独调试或和MSS一起调试DSS功能,我在DSS中使用了System_printf()打印函数,在CCS中使用debug调试,控制台没有输出任何日志信息.
没有日志输出,我不无法排查我的代码哪里出现了问题
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.
我想要单独调试或和MSS一起调试DSS功能,我在DSS中使用了System_printf()打印函数,在CCS中使用debug调试,控制台没有输出任何日志信息.
没有日志输出,我不无法排查我的代码哪里出现了问题
System_printf()
System_printf比较占时间,占内存,请尝试加大stack, heap size。
请在下面的代码中修改。
/* set heap and stack sizes */
BIOS.heapSize = 0x2000;
Program.stack = 0x1000;
SysMin.bufSize = 0x400;