Tool/software: TI C/C++ Compiler
Hello,
I am using the simple_peripheral_cc2650lp_app to build the BLE project. It was fine before.
Recently, I added a C++ class to support a adafruit module. Once I declare the Class as following in global segment :
Adafruit_FONA fona = Adafruit_FONA(FONA_RST);
I received the below warning :
#10237-D split placement (>>) ignored for ".init_array": split placement for this section is not permitted cc26xx_app.cmd /simple_peripheral_cc2650lp_app/TOOLS line 126 C/C++ Problem
SECTIONS
{
.intvecs : > FLASH_APP_BASE
.text : >> FLASH | FLASH_LAST_PAGE
.const : >> FLASH | FLASH_LAST_PAGE
.constdata : >> FLASH | FLASH_LAST_PAGE
.rodata : >> FLASH | FLASH_LAST_PAGE
.cinit : > FLASH | FLASH_LAST_PAGE
.pinit : >> FLASH | FLASH_LAST_PAGE
.init_array : >> FLASH | FLASH_LAST_PAGE
.emb_text : >> FLASH | FLASH_LAST_PAGE
.ccfg : > FLASH_LAST_PAGE (HIGH)
What should I change to correct it ?
Thanks for advice.