Other Parts Discussed in Thread: CONTROLSUITE,
Tool/software: Code Composer Studio
Hello,
I want to run a tms320f28027f c2000 launchpad in standalone mode. I tried the given example in controlsuite to try out for running an application from flash.
Although I didn't change anything given in code and tuning of ccs I was unsuccessful to run. So, after that, I made the whole code as a comment and put up my simple led blinking code and tried to run it. To my suprise it runs without any issue so now I am confused what was preventing the original program to run.
I tried to make a project of mine but there I found some difficulties.
I am putting the images to be clear of what I am saying.
// Register interrupt handlers in the PIE vector table PIE_registerPieIntHandler(myPie, PIE_GroupNumber_3, PIE_SubGroupNumber_1, (intVec_t)&EPwm1_timer_isr); PIE_registerPieIntHandler(myPie, PIE_GroupNumber_3, PIE_SubGroupNumber_2, (intVec_t)&EPwm2_timer_isr); PIE_registerPieIntHandler(myPie, PIE_GroupNumber_3, PIE_SubGroupNumber_3, (intVec_t)&EPwm3_timer_isr);
above is a snippet of code which causes an error. The error is
'Symbol 'intVec_t' could not be resolved' and
'Multiple markers at this line - Write occurrence of 'intVec_t' - Symbol 'intVec_t' could not be resolved'
above error is from given example in controlsuite.