2012-11-26 09:06 PM
Hi ,
Is there a way to disable/enable external interrupt ?2012-11-27 06: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 05:51 PM
2012-11-28 01: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 03: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