exti_workaround.h 347 B

1234567891011121314
  1. // SPDX-License-Identifier: BSD-2-Clause
  2. // Copyright (c) 2023 KBEmbedded
  3. #ifndef __EXTI_WORKAROUND_H__
  4. #define __EXTI_WORKAROUND_H__
  5. #include <furi.h>
  6. #include <furi_hal.h>
  7. void *exti_workaround(const GpioPin *clk, void (*isr_callback)(void *context), void *context);
  8. void exti_workaround_undo(void *handle);
  9. #endif // __EXTI_WORKAROUND_H__