2018-12-18 20:50:29 -08:00
|
|
|
/*
|
|
|
|
* digital_input_exti.h
|
|
|
|
*
|
|
|
|
* Created on: Dec 18, 2018
|
2020-01-07 21:02:40 -08:00
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2020
|
2018-12-18 20:50:29 -08:00
|
|
|
*/
|
|
|
|
|
2019-11-11 20:04:27 -08:00
|
|
|
#include "digital_input.h"
|
2018-12-18 20:50:29 -08:00
|
|
|
|
2019-04-12 17:52:51 -07:00
|
|
|
#if HAL_USE_PAL
|
2019-11-12 20:38:02 -08:00
|
|
|
void efiExtiEnablePin(const char *msg, brain_pin_e pin, uint32_t mode, palcallback_t cb, void *cb_data);
|
2019-04-21 06:28:49 -07:00
|
|
|
void efiExtiDisablePin(brain_pin_e brainPin);
|
2019-02-05 15:36:25 -08:00
|
|
|
#endif /* HAL_USE_PAL */
|