Hi,
I am using MSP430F5438 and I am currently studying the sample project, the "User Experience". I kind of confuse about how the ISR work.
First of all, I saw there are interrupt functions of timer B both in audio.c and adcTemp.c. Two interrupt functions have different name.
One is __interrupt void TIMERB1_ISR(void) and another is __interrupt void TIMER0_B0_ISR(void). Since I saw there is no timer 0 but only timer B in MSP430F5438, so I believe the second interrupt function is also for timer B. But here is the problem. How can I know if which ISR will be triggered if I set up the timer B?
I also have the question that where is those function names come from?
Thanks.
Shan