This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

算法大了,连接时段分配报错,dvsdk



大家好,我在CCS下开发了一个6446平台的算法,算法比较大,然后我将其放到DVSDK中,可以编译并正常运行,但是再次对算法代码进行了补充,大概又添加了1/3行代码,算法变得更加庞大,编译后报错如下:

板子硬件上的内存是够的,因为我在CCS环境下编译同样的算法,可以下载到板子上运行。所以应该是DVSDK中的配置有问题。请问如何解决??

谢谢各位。

另外,我的DVSDK的server端中的all_evmDM6446.tci文件内容为

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"
}
];