在工程中已经定义一个数组 test 指定到固定地址
#pragma DATA_SECTION(test, ".test")
const test={ 1, 2,3,};
再定义一个数组 test_name 指定到这个section中 如何书写?
#define test_name ((const*)(section(".product_config")))
这么写对么?
使用芯片是MSP432
gaoyang9992006:
不对啊,定义是数组是这样定义的吗?比如这样constintdays [ MONTHS ] = { 31 , 28 , 31 , 30 , 31 , 30 , 31 , 31 , 31 , 30 , 31 , 30 , 31 } ;
Susan Yang:
您可以试一下下面的代码
#pragma SET_DATA_SECTION("my_sect")int bufferA[10];int bufferB[10];