Part Number: CC1350
Other Parts Discussed in Thread: CC2650
Tool/software: Code Composer Studio
Hello!
I'm trying to implement a bootloader in my project based on simple peripheral BLE example. I need to move the application program to pages 1 - 30 and let the reset vector be in the beginning of flash page 1.
In cc26xx_app.cmd I changed:
#define FLASH_APP_BASE 0x01000
#define FLASH_LEN 0x1F000
Then in cc1350.cfg:
m3Hwi.resetVectorAddress = 0x1000;
Then I got this error. But when i comment ROM lines, I'm getting compilation error:
"C:/ti/simplelink_cc13x0_sdk_3_10_00_11/examples/rtos/CC1350_LAUNCHXL/blestack/simple_peripheral/tirtos/ccs/config/app_ble.cfg", line 1
"./package/cfg/app_ble_pem3.cfg", line 180
gmake.exe: *** [package.mak:202: package/cfg/app_ble_pem3.xdl] Error 1
js: "C:/ti/xdctools_3_51_02_21_core/packages/xdc/tools/Cmdr.xs", line 52: Error: xdc.tools.configuro: configuration failed due to earlier errors (status = 2); 'linker.cmd' deleted.
gmake[1]: *** [build-272016337-inproc] Error 1
gmake: *** [build-272016337] Error 2
TOOLS/subdir_rules.mk:9: recipe for target 'build-272016337' failed
gmake: Target 'all' not remade because of errors.
**** Build Finished ****
What I'm doing wrong? Thanks much.