From 70f63ddc2d1fe81758680923812c617be73ad0c4 Mon Sep 17 00:00:00 2001 From: YunHorn Technology Date: Thu, 22 Feb 2024 11:27:16 +0800 Subject: [PATCH] try GPIO_MODE_IT_RISING_FALLING instread of Falling only --- Core/Src/gpio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/Src/gpio.c b/Core/Src/gpio.c index 5040312..a62f98d 100644 --- a/Core/Src/gpio.c +++ b/Core/Src/gpio.c @@ -89,7 +89,7 @@ void MX_GPIO_Init(void) /*Configure GPIO pin : PtPin */ GPIO_InitStruct.Pin = BUT1_Pin; - GPIO_InitStruct.Mode = GPIO_MODE_IT_FALLING; + GPIO_InitStruct.Mode = GPIO_MODE_IT_RISING_FALLING; GPIO_InitStruct.Pull = GPIO_PULLUP; HAL_GPIO_Init(BUT1_GPIO_Port, &GPIO_InitStruct);