User Activity

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...
Here's the issue. I have built a LIN bus with a slave node and a master node using tow STM8AF/AL-Discovery boards. After flashing the boards with the demo of the STM8 LIN driver 5.1 as slave node and master node I can control either the LED or the b...