2017-08-21 02:22 AM
how to disable EXTI9_IRQn , and enable EXT5_IRQn external interrupt in stm32 simaltanous
2017-08-21 07:13 AM
Which STM32?
E.g. in 'F2xx/'F4xx, EXTI5 and EXTI9 share a single interrupt vector, you can't distinguish them by interrupt number (i.e. at the NVIC level), and you have to enable/disable them at the EXTI level in EXTI_IMR.
JW