// SPDX-License-Identifier: BSD-2-Clause // Copyright (c) 2023 KBEmbedded #ifndef __EXTI_WORKAROUND_H__ #define __EXTI_WORKAROUND_H__ #include #include void *exti_workaround(const GpioPin *clk, void (*isr_callback)(void *context), void *context); void exti_workaround_undo(void *handle); #endif // __EXTI_WORKAROUND_H__