Hello,
i am using ice am3359 with sysbios.
i have a DMTimer interrupt with 20kHz. It looks good. And in the .cfg file i have a LoggerBuf:
/*
* Create and install logger for the whole system
*/
var loggerBufParams = new LoggerBuf.Params();
loggerBufParams.numEntries = 256;
var logger0 = LoggerBuf.create(loggerBufParams);
Defaults.common$.logger = logger0;
Main.common$.diags_INFO = Diags.ALWAYS_ON;
When i want to use UIA System Analyzer [xdc.useModule('ti.uia.sysbios.LoggingSetup');] , its suggested to disable this LoggerBuf.
If i disable the LoggerBuf (UIA LoggingSetup also disabled) then my 20kHz DMTimer does not look like before on the scope.
I can see the 20kHz pin toggle, but i can see more longer low or high level with very short peaks (high or low). (see pic)
Can anyone explain this behavoir?
Thank You