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.

How to define the section which the LoggerBuf header is created

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