Other Parts Discussed in Thread: TMS320C6657
I saw the \Debug\configPkg\linker.cmd content does not match meself defined RTSC platform, why?
in .cmd file:
{
MSMCSRAM (RWX) : org = 0xc000000, len = 0x78000
L1DSRAM (RW) : org = 0xf00000, len = 0x0
L1PSRAM (RWX) : org = 0xe00000, len = 0x0
L2SRAM (RWX) : org = 0x800000, len = 0x80000
DDR3 (RWX) : org = 0x80000000, len = 0x800000
}
the above cmd file will result in build error, because ram len is 0x0, but I have already deleted L1DSRAM and L1PSRAM in my platfom!
If modified as below, ccs build can succeed.
{
MSMCSRAM (RWX) : org = 0xc000000, len = 0x78000
L1DSRAM (RW) : org = 0xf00000, len = 0x4000
L1PSRAM (RWX) : org = 0xe00000, len = 0x4000
L2SRAM (RWX) : org = 0x800000, len = 0x80000
DDR3 (RWX) : org = 0x80000000, len = 0x800000
}
but in cmd file, I can see:
"Do not modify this file; it is automatically generated from the template"
Why the content does not match platform settings?
In another pjt, I just delete the cmd file manually, project build ok, but there is no .out file, why?
thanks.