Hi,
I have compiled syslink_2_21_01_05 for TI814X, and test the example "ex01_helloworld". But I cannot get the debug information of DSP Log_print0. How can I config to make it output to the UART?
I have not change the Dsp.cfg, and the current setting is:
-----------------
/* configure System module */
var SysMin = xdc.useModule('xdc.runtime.SysMin');
SysMin.bufSize = 0x1000;
SysMin.flushAtExit = false;
var System = xdc.useModule('xdc.runtime.System');
System.SupportProxy = SysMin;
xdc.useModule('xdc.runtime.Main');
Diags.setMaskMeta(
"xdc.runtime.Main",
Diags.ENTRY | Diags.EXIT | Diags.INFO,
Diags.RUNTIME_ON
);
/* create a logger instance */
var LoggerBuf = xdc.useModule('xdc.runtime.LoggerBuf');
var loggerBufP = new LoggerBuf.Params();
loggerBufP.numEntries = 128; /* 128 entries = 4 KB of memory */
loggerBufP.bufType = LoggerBuf.BufType_FIXED;
var appLogger = LoggerBuf.create(loggerBufP);
appLogger.instance.name = "AppLog_Core1";
Defaults.common$.logger = appLogger;
----------------
Any suggestion for the issue?
Thanks,
matt