fome-fw/firmware/config/engines/daihatsu.cpp

23 lines
423 B
C++
Raw Normal View History

2015-09-10 05:01:16 -07:00
/**
* @file daihatsu.cpp
*
2016-01-09 08:01:43 -08:00
* Daihatsu 3-Cylinder KF-VE
2017-01-06 07:04:41 -08:00
* set engine_type 34
2015-09-12 12:02:40 -07:00
*
2015-09-10 05:01:16 -07:00
* @date Sep 10, 2015
2018-01-20 17:42:19 -08:00
* @author Andrey Belomutskiy, (c) 2012-2018
2015-09-10 05:01:16 -07:00
*/
2018-09-16 19:25:17 -07:00
#include "global.h"
2015-09-10 05:01:16 -07:00
#include "daihatsu.h"
EXTERN_CONFIG;
2015-09-10 05:01:16 -07:00
void setDaihatsu(DECLARE_CONFIG_PARAMETER_SIGNATURE) {
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
}