Hi everybody , I developed a 6446 platform algorithm in CCS, the algorithm is relatively large, then I put it on DVSDK, which can be compiled and run normally, but when i added more in the algorithm code, probably added about 1/3 of codes,so the algorithm becomes more complex, then the compiler error comes as follows:
Board memory is enough, because I have compiled the same algorithm in the CCS environment , and it can be downloaded into the board and run oK. So it should be the configuration problem of DVSDK. May I ask how to solve??
there is my content of .tci file in DSP Server side of DVSDK, maybe usefull
var mem_ext = [
{
comment: "DDRALGHEAP: off-chip memory for dynamic algmem allocation",
name: "DDRALGHEAP",
base: 0x88000000, // 128MB
len: 0X07A00000, // 122MB//0X07A00000
space: "code/data"
},
{
comment: "DDR2: off-chip memory for application code and data",
name: "DDR2",
base: 0X8FA00000, // 250MB//0X8FA00000
len: 0X00400000, // 4MB//0X00400000//26MB
space: "code/data"
},
{
comment: "DSPLINK: off-chip memory reserved for DSPLINK code and data",
name: "DSPLINKMEM",
base: 0x8FE00000, // 254MB
len: 0x00100000, // 1MB
space: "code/data"
},
{
comment: "RESET_VECTOR: off-chip memory for the reset vector table",
name: "RESET_VECTOR",
base: 0x8FF00000, // 255MB
len: 0x00000080, // 128 B
space: "code/data"
}
];