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.

TMS320F28377D: 内存分配

Part Number: TMS320F28377D


定义变量的位置 

#pragma DATA_SECTION(c1_r_array,"RAMGS2"); // 分配到GS2(CPU2)
#pragma DATA_SECTION(c1_r_w_array,"RAMGS1");// 分配到GS1(CPU1)
uint16_t c1_r_array[16];
uint16_t c1_r_w_array[16];

实际上没有分配成功 ,

00000002 0 (00000000) _c1_r_w_array
00000012 0 (00000000) _c1_r_array

原因是什么?