Other Parts Discussed in Thread: CC1350, SYSBIOS
Tool/software: Code Composer Studio
Hello!
i'm trying to reproduce example "rfWsnDmNodeOad_CC1350_LAUNCHXL_tirtos_ccs" in Empty project.
To merge BIM image and APP image, APP image must be in 0x1000 FLASH Memory.
I do this 2 changes:
1. in CC1350_LAUNCHXL.cmd file:
#define FLASH_BASE 0x1000
#define FLASH_SIZE 0x1EFF0
2. in empty.cfg file:
m3Hwi.resetVectorAddress = 0x1010;
And get this error:
"Type #10099-D configPkg/linker.cmd program will not fit into available memory. placement with alignment fails for section ".resetVecs" size 0x3c , overlaps with ".const:ti_sysbios_knl_Task_Object__PARAMS__C", size 0x3C (page 0) empty_CC1350_LAUNCHXL_TI line 723 C/C++ Problem"
What i've missed?