这是由于C++的#pragma DATA_SECTION用法同C不一致造成,以下是实例。省去了NAME。
Using the DATA_SECTION Pragma
a) C source file
#pragma DATA_SECTION(bufferB, "my_sect")
char bufferA[512];
char bufferB[512]:
b) C++ source file
char bufferA[512];
#pragma DATA_SECTION("my_sect")
char bufferB[512];