Other Parts Discussed in Thread: SYSBIOS, CC1350
Tool/software: TI-RTOS
Hello
I took the tirtos empty example and changed in icf the __intvec_start__ and the ROM_start__
"
define symbol __intvec_start__ = 0x00000400;
/*-Memory Regions-*/
define symbol ROM_start__ = 0x00000400;
define symbol ROM_end__ = 0x00010000;
define symbol RAM_start__ = 0x20000000;
define symbol RAM_end__ = 0x20004FFF;
"
and added to tirtos cfg file:
m3Hwi.vectorTableAddress = 0x0000400;
m3Hwi.resetVectorAddress = 0x0000400;
I use the simplelink_cc13x0_sdk_2_20_00_38 with IAR.
The idea is create a boot that will be in page 0 and page 31 that will jump to the application.
for that if I understand correctly I need to create application with its own interrupt vectors and re-locate TI-RTOS.
The problem is that the TI-RTOS started to run ,but it crashes before it gets to the application mainThread
What am I missing?
Vitaly