pref: 优化长短按判断

This commit is contained in:
2024-01-06 16:47:15 +08:00
parent 8f0a04b962
commit abca5d603c
3 changed files with 17 additions and 23 deletions

View File

@@ -4,6 +4,9 @@
#include "stdio.h" #include "stdio.h"
#include "ch32v30x.h" #include "ch32v30x.h"
#define LONG_PRESS_THRESHOLD_MS (300ULL)
#define LONG_PRESS_THRESHOLD_TICK (LONG_PRESS_THRESHOLD_MS * 18000ULL)
typedef enum rotate_button_event { typedef enum rotate_button_event {
rotate_button_press_short = 1, rotate_button_press_short = 1,
rotate_button_press_long = 2, rotate_button_press_long = 2,

View File

@@ -219,16 +219,11 @@ void EXTI15_10_IRQHandler(void)
} }
if (SET == EXTI_GetITStatus(EXTI_Line11)) { if (SET == EXTI_GetITStatus(EXTI_Line11)) {
static uint64_t time_via = 0; static uint64_t time_via = 0;
system_delay_ms(10);
if (RESET == gpio_get_level(E11)) {
system_delay_us(200);
if (RESET == gpio_get_level(E11)) { if (RESET == gpio_get_level(E11)) {
time_via = system_get_tick(); time_via = system_get_tick();
}
EXTI_ClearITPendingBit(EXTI_Line11); EXTI_ClearITPendingBit(EXTI_Line11);
} else { } else if (SET == gpio_get_level(E11)) {
system_delay_us(200);
if (SET == gpio_get_level(E11)) {
time_via = system_get_tick() - time_via; time_via = system_get_tick() - time_via;
if (time_via > LONG_PRESS_THRESHOLD_TICK) { if (time_via > LONG_PRESS_THRESHOLD_TICK) {
rotate_button = rotate_button_press_long; rotate_button = rotate_button_press_long;
@@ -236,7 +231,6 @@ void EXTI15_10_IRQHandler(void)
rotate_button = rotate_button_press_short; rotate_button = rotate_button_press_short;
} }
time_via = 0; time_via = 0;
}
EXTI_ClearITPendingBit(EXTI_Line11); EXTI_ClearITPendingBit(EXTI_Line11);
} }
if (SET == EXTI_GetITStatus(EXTI_Line12)) { if (SET == EXTI_GetITStatus(EXTI_Line12)) {

View File

@@ -39,9 +39,6 @@
#include "zf_common_clock.h" #include "zf_common_clock.h"
#include "zf_common_typedef.h" #include "zf_common_typedef.h"
#define LONG_PRESS_THRESHOLD_MS (300ULL)
#define LONG_PRESS_THRESHOLD_TICK (LONG_PRESS_THRESHOLD_MS * 18000ULL)
void system_delay_ms(uint32 time); void system_delay_ms(uint32 time);
void system_delay_us(uint32 time); void system_delay_us(uint32 time);
uint64_t system_get_tick(void); uint64_t system_get_tick(void);