#include "reset_button.h" #include "fsl_port.h" #include "bootloader/wormhole.h" void RESET_BUTTON_IRQ_HANDLER(void) { Wormhole.magicNumber = WORMHOLE_MAGIC_NUMBER; Wormhole.enumerationMode = EnumerationMode_NormalKeyboard; NVIC_SystemReset(); } void InitResetButton(void) { CLOCK_EnableClock(RESET_BUTTON_CLOCK); PORT_SetPinInterruptConfig(RESET_BUTTON_PORT, RESET_BUTTON_PIN, kPORT_InterruptFallingEdge); EnableIRQ(RESET_BUTTON_IRQ); PORT_SetPinConfig(RESET_BUTTON_PORT, RESET_BUTTON_PIN, &(port_pin_config_t){.pullSelect=kPORT_PullUp, .mux=kPORT_MuxAsGpio}); }