Hi, I'm newbie on keil & I'm trying learn ARM Cortex-M0 from Nuvoton. I confuse how to use interrupt on timer funtion. How i can get interrupt from overflow? I'm familiar before with AVR, on atmel studio for interrupt I just call function
ISR(TIMER1_OVF_vect ) { PORTB |= _BV(0); reti(); }
And how about nuvoton? Help me please..