About stm32 timer : what is the difference between disable timer in the interrupt and disable timer outside the interrupt?
Asked
Active
Viewed 268 times
1 Answers
0
Nothing. The timer doesn't care whether the core is executing in "Thread mode" or "Handler Mode".
Thread mode is normal code execution, Handler mode is when an interrupt handler is running. These states are internal to the ARM core, and no peripheral is aware of this internal state.

followed Monica to Codidact
- 7,779
- 1
- 23
- 39