Part Number: CC2640R2F
In porting from our code from BLE SDK 1.35 to 1.40, we come across a new memory section defined in cc26xx_app.cmd at FLASH (HIGH). Can you tell us more about it or where we can find further info? Just happen we have (and need) our own section defined exactly the same place, we need to resolve this conflict according.
/*******************************************************************************
* Section Allocation in Memory
******************************************************************************/
SECTIONS
{
.intvecs : > FLASH_START
.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
.snvSectors : > FLASH (HIGH) <----------------------------------(new in 1.40)
.ccfg : > FLASH_LAST_PAGE (HIGH)
...