在emulator环境下对于程序记过的验证
是否可以使用printf打印结果输出,或者写文件?
我使用了printf打印似乎对实时系统的性能有很大的影响?
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.
使用printff时,DSP会中断当前运行和host 通信,对于实时性要求高的的应用,不建议直接使用printf debug。如果使用BIOS可以采用LOG_printf,如果不是用BIOS,建议将打印信息采用vsprintf记录到memory,再自己进行解析。