Part Number: TMS320F28335
Tool/software: Code Composer Studio
Hi,
Is it possible to consolidate L0-L3 SARAM of the high 64k from the address 0x3f8000 to 0x3fc000 and L4-L7 SARAM from 0xc000 to 0x10000 in low 64k? Or, can I refer .ebss to two sections on the RAM?
I, actually, have merged L0-L3 of the low 64k, and decreased the size of them, and defined them as :
RAML0L3: origin=0x8000, length=0x1000 (in Page 0)
And, I merged and defined L4-L7 as:
RAML4L7: origin=0x9000, length=0x7000 (in Page 1)
My code works, and gives me the correct answer. But, I still need more memory. I have also defined:
RAML0L3H: origin=0x3F8000, length=0x4000 (in Page 1)
I only can define one .ebss, and I need more .ebss size. Can't I somehow add RAML4L7 and RAML0L3H defined above for assigning .ebss to them? Or, can I refer .ebss to two sections (actually, I did, but it seems that it is not working)?
Thank you