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.

CMD文件编写



float raw_data[raw_data_number];

#pragma DATA_SECTION(raw_data,".array");

我想定义一个数组  ,数组长度为raw_data_number=256000,编译都能通过,仿真测试debug出现No source available for "0x800000" 

把数组长度raw_data_number改小后,比如20000后,debug就没有问题

请问这个自定义的数组长度有限制是吗