2015-07-10 06:01:56 -07:00
|
|
|
/**
|
|
|
|
* @file mazda_323.cpp
|
|
|
|
*
|
|
|
|
* @date Mar 8, 2014
|
2018-01-20 17:42:19 -08:00
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2018
|
2015-07-10 06:01:56 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "mazda_323.h"
|
|
|
|
|
|
|
|
void setMazda323EngineConfiguration(engine_configuration_s *engineConfiguration) {
|
|
|
|
engineConfiguration->specs.cylindersCount = 4;
|
|
|
|
engineConfiguration->specs.displacement = 1.6;
|
|
|
|
|
|
|
|
engineConfiguration->ignitionMode = IM_ONE_COIL;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* We treat the trigger as 4/0 toothed wheel
|
|
|
|
*/
|
|
|
|
// setToothedWheelConfiguration(engineConfiguration, 4, 0);
|
|
|
|
}
|