This commit is contained in:
rusefi 2020-10-23 00:39:22 -04:00
parent 7a65b7e715
commit a7a475a1df
2 changed files with 7 additions and 0 deletions

View File

@ -22,6 +22,7 @@ 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;
engineConfiguration->map.sensor.type = MT_BOSCH_2_5;
strcpy(CONFIG(engineMake), ENGINE_MAKE_VAG);
strcpy(CONFIG(engineCode), "BPY");

View File

@ -805,6 +805,12 @@ typedef enum {
/**
* Bosch 2.5 Bar TMap Map Sensor with IAT
* 20 kPa at 0.40V, 250 kPa at 4.65V
* 4 pin:
* Pin 1 : Sensor Ground
* Pin 2 : Temp Signal
* Pin 3 : 5v
* Pin 4 : Map Signal
* Volkswagen Passat B6
*/
MT_BOSCH_2_5 = 10,