static void key_hw_int_isr(key_driver_instance_t *p_key_instance, uint32_t const * event_pins_low_to_high, uint32_t const * event_pins_high_to_low) { do { if((*event_pins_high_to_low & p_key_instance->pin_mask) != 0) { key_hw_int_send_event(p_key_instance, true); //按键按下 } else if((*event_pins_low_to_high & p_key_instance->pin_mask) != 0) { key_hw_int_send_event(p_key_instance, false); //按键弹起 } else { break; } key_hw_int_disable(p_key_instance); //禁止检测 }while(0); }
时间: 2024-04-27 20:23:58 浏览: 62
这是一个关于按键中断处理的函数,它接收一个 key_driver_instance_t 类型的指针参数和两个 uint32_t 类型的指针参数。其中,event_pins_low_to_high 表示从低电平到高电平的事件标志,event_pins_high_to_low 表示从高电平到低电平的事件标志。该函数的作用是检测哪个按键被按下或弹起,并调用 key_hw_int_send_event 函数发送事件。在检测到按键事件后,该函数会禁用按键中断检测,以避免重复触发事件。
相关问题
static void key_hw_int_isr_0(uint32_t const *event_pins_low_to_high, uint32_t const *event_pins_high_to_low) { key_hw_int_isr(&g_key_driver_mgr.key_instance[KEY_DRIVER_INDEX_0], event_pins_low_to_high, event_pins_high_to_low); } static void key_hw_int_isr_1(uint32_t const *event_pins_low_to_high, uint32_t const *event_pins_high_to_low) { key_hw_int_isr(&g_key_driver_mgr.key_instance[KEY_DRIVER_INDEX_1], event_pins_low_to_high, event_pins_high_to_low); }
这段代码看起来是针对硬件中断处理的,其中定义了两个函数,分别对应不同的硬件中断。在这两个函数中,都调用了一个名为key_hw_int_isr的函数,并传入了不同的参数。可以猜测这个key_hw_int_isr函数是用来处理硬件中断的通用函数,而这里的代码是在不同的硬件中断触发时,调用这个通用函数并传入不同的参数,以区分不同的硬件中断。
阅读全文