2018-12-18 20:50:29 -08:00
|
|
|
/*
|
|
|
|
* digital_input_exti.h
|
|
|
|
*
|
|
|
|
* Created on: Dec 18, 2018
|
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2018
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HW_LAYER_DIGITAL_INPUT_EXTI_H_
|
|
|
|
#define HW_LAYER_DIGITAL_INPUT_EXTI_H_
|
|
|
|
|
|
|
|
#include "global.h"
|
|
|
|
|
2019-01-28 16:50:37 -08:00
|
|
|
#if HAL_USE_EXT || defined(__DOXYGEN__)
|
2018-12-18 20:50:29 -08:00
|
|
|
void enableExti(brain_pin_e pin, uint32_t mode, extcallback_t cb);
|
|
|
|
void myExtStart(void);
|
2019-01-28 16:50:37 -08:00
|
|
|
#endif
|
2018-12-18 20:50:29 -08:00
|
|
|
|
|
|
|
#endif /* HW_LAYER_DIGITAL_INPUT_EXTI_H_ */
|