void EXTI3_IRQHandler(void){
//Clear the EXTI pending bits
NVIC_ClearPendingIRQ(EXTI3_IRQn);
EXTI->PR|=(1<<3);
count++;
}
This is a my interrupt routine. if press the button the intterrup occurs and the then count is incremented. I dint know how ı solve bounced button problem. Please help me!