Hi
I am using sys bios 6.
I create the LoggerBuf in the cfg
The actual logger buffer is created in the section which i define. I would like the logger header object to be created in that section as well.
Essentially that Program.global.LOG_Trace_Handle will point to that section.
This is what i wrote in the cfg:
var loggerBuf1Params = new LoggerBuf.Params();
loggerBuf1Params.instance.name = "LOG_Trace_Handle";
loggerBuf1Params.bufSection = "sdram_scratch_mem";
loggerBuf1Params.numEntries = 1024;
Program.global.LOG_Trace_Handle = LoggerBuf.create(loggerBuf1Params);
Thanks
Shiran