Hi
How do I set up trace on the GPP to use DSP side logging ?
I could not find ti.sdo.ce.bioslog.LogServer in codec_engine_3_21_00_02_eng
Thanks
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.
Hi
How do I set up trace on the GPP to use DSP side logging ?
I could not find ti.sdo.ce.bioslog.LogServer in codec_engine_3_21_00_02_eng
Thanks
ti.sdo.ce.bioslog.LogServer was BIOS 5 specific and not ported to BIOS 6, so you won't see it in CE 3.x releases.
I'm not sure which build we added it to, but does the CE_DEBUG feature work in that 02_eng build?
Chris
Although I haven't used it, I do see references to CE_DEBUG in the codec engine code .
I guess I'd suggest you try it. :) If you set CE_DEBUG=3 and run your app, do you see trace statements coming out the console? Do you see any statements coming from the DSP side (likely with a [DSP] prefix)?
Chris
Just FYI, I had to do this on the server side
var Diags = xdc.useModule('xdc.runtime.Diags');
// Set up the System support proxy
var System = xdc.useModule('xdc.runtime.System');
// Log statements are written. The RMS server extracts the data from the
// circular buffer, and passes it to the client upon request.
System.SupportProxy = xdc.useModule('ti.sdo.ce.utils.syscbuf.SysCBuf');