2014-08-29 07:52:33 -07:00
|
|
|
/**
|
|
|
|
* @file trigger_emulator.h
|
|
|
|
* @brief Position sensor(s) emulation header
|
|
|
|
*
|
|
|
|
* @date Dec 9, 2012
|
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2014
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DIST_EMULATOR_H_
|
|
|
|
#define DIST_EMULATOR_H_
|
|
|
|
|
|
|
|
#include "main.h"
|
|
|
|
|
|
|
|
#include "trigger_structure.h"
|
2014-11-05 09:03:15 -08:00
|
|
|
#include "engine.h"
|
2014-08-29 07:52:33 -07:00
|
|
|
|
2014-11-05 09:03:15 -08:00
|
|
|
void initTriggerEmulator(Engine *engine);
|
2014-11-07 18:03:15 -08:00
|
|
|
void setTriggerEmulatorRPM(int value, Engine *engine);
|
2014-08-29 07:52:33 -07:00
|
|
|
|
|
|
|
#endif /* DIST_EMULATOR_H_ */
|