2019-12-26 18:33:12 -08:00
|
|
|
/*
|
|
|
|
* @file vw_b6.cpp
|
|
|
|
*
|
|
|
|
* @date Dec 26, 2019
|
2020-01-07 21:02:40 -08:00
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2020
|
2019-12-26 18:33:12 -08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "engine.h"
|
|
|
|
#include "vw_b6.h"
|
|
|
|
|
|
|
|
EXTERN_CONFIG;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* set engine_type 62
|
2020-08-29 07:06:28 -07:00
|
|
|
* VW_B6
|
2019-12-26 18:33:12 -08:00
|
|
|
*/
|
2020-08-29 07:06:28 -07:00
|
|
|
void setVwPassatB6(DECLARE_CONFIG_PARAMETER_SIGNATURE) {
|
|
|
|
setOperationMode(engineConfiguration, FOUR_STROKE_CRANK_SENSOR);
|
|
|
|
engineConfiguration->trigger.type = TT_TOOTHED_WHEEL_60_2;
|
|
|
|
engineConfiguration->vvtMode = VVT_BOSCH_QUICK_START;
|
2019-12-26 18:33:12 -08:00
|
|
|
|
|
|
|
|
2020-08-29 07:06:28 -07:00
|
|
|
}
|
2019-12-26 18:33:12 -08:00
|
|
|
|
|
|
|
|