2012-11-26 9:06 PM
Hi ,
Is there a way to disable/enable external interrupt ?2012-11-27 6:30 AM
Is there a way to disable/enable external interrupt ?
External to what, the part, the core? You should be able to enable/disable at the EXTI, NVIC and peripheral (XX_ITConfig) level. At the core you have __enable_irq()/__disable_irq() which assemble as cpsie i / cpsid i2012-11-27 5:51 PM
2012-11-28 1:29 AM
hi,
I have the same problem. I want to disable usart interrupt for some time then enable it to continue recieving/sending data.2012-11-28 3:43 AM
I have the same problem. I want to disable usart interrupt for some time then enable it to continue recieving/sending data.
USART_ITConfig(USART1, USART_IT_TXE | USART_IT_RXNE, DISABLE); // Comes to mind