| 12345678910111213141516171819202122 |
- // SPDX-License-Identifier: BSD-2-Clause
- // Copyright (c) 2023 KBEmbedded
- #ifndef __EXTI_WORKAROUND_H__
- #define __EXTI_WORKAROUND_H__
- #include <furi.h>
- #include <furi_hal.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- void *exti_workaround(const GpioPin *clk, void (*isr_callback)(void *context), void *context);
- void exti_workaround_undo(void *handle);
- #ifdef __cplusplus
- }
- #endif
- #endif // __EXTI_WORKAROUND_H__
|