Hi,
I am getting error with this code below. I am using msp430g2452 How can i solve this problem?
#pragma vector=TIMER0_A0_VECTOR
__interrupt void Timer_A (void)
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi,
I am getting error with this code below. I am using msp430g2452 How can i solve this problem?
#pragma vector=TIMER0_A0_VECTOR
__interrupt void Timer_A (void)
hi,
try this
#pragma vector=TIMER0_A0_VECTOR
__interrupt void Timer0_A (void)
Vaibhav Ostwal said:hi,
try this
#pragma vector=TIMER0_A0_VECTOR
__interrupt void Timer0_A (void)
No, the name of the ISR can be anything as long as it is unique.
But the name of the vector must be defined (probably in the header file).
**Attention** This is a public forum