2015-10-17 10:02:05 -07:00
|
|
|
/*
|
|
|
|
* @file suzuki_vitara.cpp
|
|
|
|
*
|
2017-01-06 07:04:41 -08:00
|
|
|
* set engine_type 36
|
2015-10-17 10:02:05 -07:00
|
|
|
*
|
2018-01-20 17:42:19 -08:00
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2018
|
2015-10-17 10:02:05 -07:00
|
|
|
* @date Oct 17, 2015
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "suzuki_vitara.h"
|
|
|
|
|
|
|
|
EXTERN_ENGINE;
|
|
|
|
|
2017-05-15 20:33:22 -07:00
|
|
|
void setSuzukiVitara(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
|
2015-10-17 10:02:05 -07:00
|
|
|
engineConfiguration->trigger.type = TT_MAZDA_SOHC_4;
|
|
|
|
engineConfiguration->specs.cylindersCount = 4;
|
|
|
|
engineConfiguration->specs.displacement = 1.590;
|
|
|
|
|
|
|
|
engineConfiguration->ignitionMode = IM_ONE_COIL;
|
|
|
|
engineConfiguration->injectionMode = IM_SIMULTANEOUS;
|
|
|
|
|
2015-12-28 13:02:41 -08:00
|
|
|
boardConfiguration->mainRelayPin = GPIOE_6;
|
2015-10-17 10:02:05 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|