2015-07-10 06:01:56 -07:00
|
|
|
/**
|
|
|
|
* @file trigger_emulator.h
|
|
|
|
* @brief Position sensor(s) emulation header
|
|
|
|
*
|
|
|
|
* @date Dec 9, 2012
|
2017-01-03 03:05:22 -08:00
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2017
|
2015-07-10 06:01:56 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DIST_EMULATOR_H_
|
|
|
|
#define DIST_EMULATOR_H_
|
|
|
|
|
|
|
|
#include "main.h"
|
|
|
|
|
|
|
|
#include "trigger_structure.h"
|
|
|
|
#include "engine.h"
|
|
|
|
|
2017-04-21 11:03:08 -07:00
|
|
|
void initTriggerEmulator(Logging *sharedLogger DECLARE_ENGINE_PARAMETER_S);
|
|
|
|
void setTriggerEmulatorRPM(int value DECLARE_ENGINE_PARAMETER_S);
|
2015-07-10 06:01:56 -07:00
|
|
|
|
|
|
|
#endif /* DIST_EMULATOR_H_ */
|