Question
STM32L412 how can I individually turn off EXTI flags without HAL?
Im using external interrupts on an STM32L412. I want the interrupt to run as fast as possible so I'm not using the HAL to turn off the request, rather I am writing directly to EXTI -> PR1, which needs to be written high to turn off the interrupt, but if I write for example
EXTI -> PR1 |= 1<<10;it turns off the other interrupts.
EXTI->PR1 &=1<<10;doesn't turn anything off.
How can I write this without using HAL?
