rusefi-1/firmware/hw_layer/trigger_input.h

25 lines
524 B
C
Raw Normal View History

2015-07-10 06:01:56 -07:00
/**
* @file trigger_input.h
* @brief Position sensor hardware layer
*
* @date Dec 30, 2012
2020-01-07 21:02:40 -08:00
* @author Andrey Belomutskiy, (c) 2012-2020
2015-07-10 06:01:56 -07:00
*/
#ifndef CRANK_INPUT_H_
#define CRANK_INPUT_H_
#include "engine.h"
2019-11-11 19:19:35 -08:00
#include "pin_repository.h"
#include "trigger_structure.h"
#include "trigger_central.h"
2015-07-10 06:01:56 -07:00
2019-11-11 18:25:40 -08:00
#define TRIGGER_SUPPORTED_CHANNELS 2
2015-07-10 06:01:56 -07:00
void turnOnTriggerInputPins(Logging *sharedLogger);
void applyNewTriggerInputPins(void);
void startTriggerInputPins(void);
void stopTriggerInputPins(void);
2015-07-10 06:01:56 -07:00
#endif /* CRANK_INPUT_H_ */