Quick question about interrupts (really short)

so when a timer overflows it triggers my interrupt . does the timer goes back to ticking once it triggers the interrupt code ? or after the code ends ?

At the end of the ISR

Mark

thank you .

It depends on how you're programming the timer. In some modes, it will stop until you re-start it. In other modes (more commonly used), it continues running after asserting the interrupt request.

Regards,
Ray L.

(:I) hmmmm thank you sir