33 lines
557 B
C
33 lines
557 B
C
/**
|
|
* @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 "wave_math.h"
|
|
|
|
#include "trigger_structure.h"
|
|
#include "engine_configuration.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
void initTriggerEmulator(void);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
void setTriggerEmulatorRPM(int value);
|
|
|
|
|
|
#endif /* DIST_EMULATOR_H_ */
|