mirror of https://github.com/rusefi/rusefi-1.git
17 lines
344 B
C
17 lines
344 B
C
/*
|
|
* 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"
|
|
|
|
void enableExti(brain_pin_e pin, uint32_t mode, extcallback_t cb);
|
|
void myExtStart(void);
|
|
|
|
#endif /* HW_LAYER_DIGITAL_INPUT_EXTI_H_ */
|