-1
代碼編譯並正確構建,但沒有輸出。我在哪裏可以看到ouptput?在代碼作曲家工作室中使用log_printf
#include <stdio.h>
#include <std.h>
#include <log.h>
#include "Configuration2cfg.h"
extern far LOG_Obj fastprint;
void main()
{
LOG_printf (&fastprint, "Algorithm 1 is running\n");
}
有一個名爲'LOG_printf'沒有標準的功能,你從哪兒得到它? –
關鍵字'far'也不在標準C中。 –
@JoachimPileborg ... LOG_printf(...)在作曲家工作室中可用。請參閱http://e2e.ti.com/support/development_tools/code_composer_studio/f/81/t/3329.aspx – someone