2015-09-10 05:01:16 -07:00
|
|
|
/**
|
|
|
|
* @file daihatsu.cpp
|
|
|
|
*
|
2016-01-09 08:01:43 -08:00
|
|
|
* Daihatsu 3-Cylinder KF-VE
|
2015-09-12 12:02:40 -07:00
|
|
|
* set_engine_type 34
|
|
|
|
*
|
2015-09-10 05:01:16 -07:00
|
|
|
* @date Sep 10, 2015
|
2015-12-31 13:02:30 -08:00
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2016
|
2015-09-10 05:01:16 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "main.h"
|
|
|
|
#include "daihatsu.h"
|
|
|
|
|
|
|
|
EXTERN_ENGINE;
|
|
|
|
|
|
|
|
void setDaihatsu(DECLARE_ENGINE_PARAMETER_F) {
|
2015-09-12 12:02:40 -07:00
|
|
|
engineConfiguration->trigger.type = TT_36_2_2_2;
|
|
|
|
|
2015-09-10 16:01:32 -07:00
|
|
|
engineConfiguration->specs.cylindersCount = 3;
|
2015-09-12 12:02:40 -07:00
|
|
|
engineConfiguration->specs.firingOrder = FO_1_2_3;
|
2015-09-10 05:01:16 -07:00
|
|
|
|
|
|
|
}
|