Which Pin is triggering an interrupt How do I count them not multiple time?
Hello everybody,how can I count which pin triggers an interrupt, but not multiple times? I have written the following ISR. INTERRUPT_HANDLER(EXTI_PORTB_IRQHandler, 4) { data = (uint8_t)GPIOB->IDR& 0xF; if((GPIO_PIN_0 & data )== GPIO_PIN_0) { co...