laughable gdi progress
This commit is contained in:
parent
0bd8a7e039
commit
b83816b9ef
|
@ -659,6 +659,8 @@ case TOYOTA_JZS147:
|
|||
return "TOYOTA_JZS147";
|
||||
case VAG_18_TURBO:
|
||||
return "VAG_18_TURBO";
|
||||
case VW_B6:
|
||||
return "VW_B6";
|
||||
case VW_ABA:
|
||||
return "VW_ABA";
|
||||
case ZIL_130:
|
||||
|
|
|
@ -27,6 +27,7 @@ ENGINES_SRC_CPP = $(PROJECT_DIR)/config/engines/ford_aspire.cpp \
|
|||
$(PROJECT_DIR)/config/engines/mitsubishi.cpp \
|
||||
$(PROJECT_DIR)/config/engines/dodge_ram.cpp \
|
||||
$(PROJECT_DIR)/config/engines/vw.cpp \
|
||||
$(PROJECT_DIR)/config/engines/vw_b6.cpp \
|
||||
$(PROJECT_DIR)/config/engines/dodge_stratus.cpp \
|
||||
$(PROJECT_DIR)/config/engines/chevrolet_camaro_4.cpp \
|
||||
$(PROJECT_DIR)/config/engines/suzuki_vitara.cpp \
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* set engine_type 32
|
||||
*
|
||||
* @date May 24, 2015
|
||||
* @author Andrey Belomutskiy, (c) 2012-2018
|
||||
* @author Andrey Belomutskiy, (c) 2012-2019
|
||||
*/
|
||||
|
||||
#include "global.h"
|
||||
|
|
|
@ -2,14 +2,11 @@
|
|||
* @file vw.h
|
||||
*
|
||||
* @date May 24, 2015
|
||||
* @author Andrey Belomutskiy, (c) 2012-2017
|
||||
* @author Andrey Belomutskiy, (c) 2012-2019
|
||||
*/
|
||||
|
||||
#ifndef CONFIG_ENGINES_VW_H_
|
||||
#define CONFIG_ENGINES_VW_H_
|
||||
#pragma once
|
||||
|
||||
#include "engine_configuration.h"
|
||||
|
||||
void setVwAba(DECLARE_CONFIG_PARAMETER_SIGNATURE);
|
||||
|
||||
#endif /* CONFIG_ENGINES_VW_H_ */
|
||||
|
|
|
@ -0,0 +1,19 @@
|
|||
/*
|
||||
* @file vw_b6.cpp
|
||||
*
|
||||
* @date Dec 26, 2019
|
||||
* @author Andrey Belomutskiy, (c) 2012-2019
|
||||
*/
|
||||
|
||||
#include "engine.h"
|
||||
#include "vw_b6.h"
|
||||
|
||||
EXTERN_CONFIG;
|
||||
|
||||
/**
|
||||
* set engine_type 62
|
||||
*/
|
||||
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
/*
|
||||
* @file vw_b6.h
|
||||
*
|
||||
* @date Dec 26, 2019
|
||||
* @author Andrey Belomutskiy, (c) 2012-2019
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
void setVwPassatB6(DECLARE_CONFIG_PARAMETER_SIGNATURE);
|
|
@ -803,6 +803,8 @@ case TOYOTA_JZS147:
|
|||
return "TOYOTA_JZS147";
|
||||
case VAG_18_TURBO:
|
||||
return "VAG_18_TURBO";
|
||||
case VW_B6:
|
||||
return "VW_B6";
|
||||
case VW_ABA:
|
||||
return "VW_ABA";
|
||||
case ZIL_130:
|
||||
|
|
|
@ -66,6 +66,7 @@
|
|||
#include "test_engine.h"
|
||||
#include "sachs.h"
|
||||
#include "vw.h"
|
||||
#include "vw_b6.h"
|
||||
#include "daihatsu.h"
|
||||
#include "chevrolet_camaro_4.h"
|
||||
#include "suzuki_vitara.h"
|
||||
|
|
|
@ -181,6 +181,8 @@ typedef enum {
|
|||
|
||||
PROTEUS = 61,
|
||||
|
||||
VW_B6 = 62,
|
||||
|
||||
/**
|
||||
* this configuration has as few pins configured as possible
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue