my stm nucleo external interrupt button keeps getting inside the handler
main.c #include "Board_LED.h" #include "stm32f401xe.h" void PIN_CONFG(); void PIN_EN(); void clear(); int main(void){ LED_Initialize(); PIN_CONFG(13); PIN_EN(13); LED_On(0); while(1){ } return 0 ; } void delay(void){ int i ;...