Hi,all
I used to use L2cache on dm642 like below:
// In cmd file I declare a section “Datatableblock”
SECTIONS
{
Datatableblock >L2
}
// Then in c source file I can use it
#pragma DATA_SECTION(Datatableblock,It.Datatableblock”)
Uint8 Datatableblock[64*64];
Now I turn to davinci dm6467T ,how can I declare my section “Datatableblock” .I add below text in dm6467.tcf file.
l1DMode: "4k",
l1DHeapSize: 0x1000, // use 4k of L1DSRAM for heap
l2DMode: "128k",
l2DHeapSize: 0x20000, // use 128k of L2DSRAM for heap
};