Hi All,
I am working on TMDXEVM6670LE board and using CCS 5.0.1, i have made a sample application program which i compiled using the specified configuration files.I am using the onboard emulator XDS100, i have been using the standard gel files provided by the TI CC670l.gel, when i try to run my program i am not able to connect to target. I am getting error
Error connecting to the target:
Cannot access register at 0x00000000
(Error -2131) @ 0 (0x0)
When i try to connect to the target, i had referred through the discussions i configured the path of gel files correctly but still i am not able to connect to target.Could some one provide some information on whether i am missing something?
My current configuration is attached in mail.
I have another strange error in my linker.cmd file below is my source of linker.cmd
-heap 0x8000
-stack 0x1000
/*-l../../../lib/dsplib.a66 */
MEMORY
{
L2SRAM (RWX) : org = 0x800000, len = 0x80000
MSMCSRAM (RWX) : org = 0xc00000, len = 0x400000
DDR3 (RWX): org = 0x80000000, len = 0x10000000
}
SECTIONS
{
.text: load >> L2SRAM
.text:touch: load >> L2SRAM
GROUP (NEAR_DP)
{
.neardata
.rodata
.bss
} load > L2SRAM
.far: load >> L2SRAM
.fardata: load >> L2SRAM
.data: load >> L2SRAM
.switch: load >> L2SRAM
.stack: load > L2SRAM
.args: load > L2SRAM align = 0x4, fill = 0 {_argsize = 0x200; }
.sysmem: load > L2SRAM
.cinit: load > L2SRAM
.const: load > L2SRAM START(const_start) SIZE(const_size)
.pinit: load > L2SRAM
.cio: load >> L2SRAM
xdc.meta: load >> L2SRAM, type = COPY
}
When i try to build my program i am getting error
"../linker.cmd", line 44: error: L2SRAM memory range has already been
specified
"../linker.cmd", line 44: error: L2SRAM memory range overlaps existing memory
range L2SRAM
"../linker.cmd", line 45: error: MSMCSRAM memory range has already been
specified
"../linker.cmd", line 46: error: DDR3 memory range overlaps existing memory
range DDR2
Could you provide some inputs on this?
Regards
Gowtham