Part Number: LAUNCHXL-CC1350
Other Parts Discussed in Thread: CC1350, SYSBIOS
Tool/software: Code Composer Studio
Hi,
If i use the TimerIntRegister(); it will freeze the application and program will not run. the code is shown below:-
TimerConfigure(GPT3_BASE, TIMER_CFG_B_PERIODIC); TimerPrescaleSet(GPT3_BASE,TIMER_B,0); TimerLoadSet(GPT3_BASE, TIMER_B, 48000); TimerIntRegister(GPT3_BASE, TIMER_B,GPT3_B_ISR); TimerIntEnable(GPT3_BASE, TIMER_TIMB_TIMEOUT); TimerIntClear(GPT3_BASE, TIMER_TIMB_TIMEOUT); TimerEnable(GPT3_BASE, TIMER_B);
no Errors
one warning:
Description Resource Path Location Type
#10247-D creating output section ".vtable_ram" without a SECTIONS specification rfWsnDmNode_CC1350_LAUNCHXL_TI_CC1350F128 C/C++ Problem
I think there is an issue with vector table while creating an timer ISR. But i'm new to CC studio. Also let me know how can i switch the vector table to ROM.