22 lines
466 B
C
22 lines
466 B
C
/**
|
|
* @file trigger_mazda.h
|
|
*
|
|
* @date Feb 18, 2014
|
|
* @author Andrey Belomutskiy, (c) 2012-2015
|
|
*/
|
|
|
|
#ifndef TRIGGER_MAZDA_H_
|
|
#define TRIGGER_MAZDA_H_
|
|
|
|
#include "trigger_structure.h"
|
|
#include "engine.h"
|
|
|
|
#define MIATA_NA_GAP 1.4930f
|
|
|
|
void initializeMazdaMiataNaShape(TriggerShape *s);
|
|
void initializeMazdaMiataNbShape(TriggerShape *s);
|
|
void configureMazdaProtegeSOHC(TriggerShape *s);
|
|
void configureMazdaProtegeLx(TriggerShape *s);
|
|
|
|
#endif /* TRIGGER_MAZDA_H_ */
|