Part Number: CC2640R2F
I am trying to load the example code (ti\simplelink_cc2640r2_sdk_2_30_00_28\examples\rtos\CC2640R2_LAUNCHXL\drivers\empty) at 0x1000 location in Flash
But if I change the linker command file (CC2640R2_LAUNCHXL_TIRTOS.cmd) of example code (C:\ti\simplelink_cc2640r2_sdk_2_30_00_28\examples\rtos\CC2640R2_LAUNCHXL\drivers\empty) to load the code at 0x1000 in Flash(FLASH (RX) : origin = FLASH_BASE + 0x1000, length = FLASH_SIZE - (2 * 0x1000)), I am getting the following error
tirtos_builds_CC2640R2_LAUNCHXL_release_ccs/Debug/configPkg/linker.cmd", line 699: warning #10096-D: specified address lies outside memory map
error #10264: DEFAULT memory range overlaps existing memory range FLASH
error #10264: DEFAULT memory range overlaps existing memory range SRAM
I checked the line 699 in linker.cmd
.resetVecs: load > 0x0
I want to know
a. What is resetVecs is?
b. How to fix the issue to load the code at 0x1000?