Software interrupt doesn't work
Posted on September 30, 2016 at 13:41Hello! I use STM32F429ZI and I try to set a software interrupt, but it doesn't work. I set it as follows: EXTI->IMR |= EXTI_IMR_MR0; NVIC_SetPriority(EXTI0_IRQn, 15); NVIC_EnableIRQ(EXTI0_IRQn); ...