Nissan progress
This commit is contained in:
parent
11c00db119
commit
ab24b8e5f3
|
@ -0,0 +1,14 @@
|
|||
/*
|
||||
* @file nissan_vq.cpp
|
||||
*
|
||||
* Created on: Jul 2, 2021
|
||||
* @author Andrey Belomutskiy, (c) 2012-2021
|
||||
*/
|
||||
|
||||
#include "nissan_vq.h"
|
||||
|
||||
void setHellen121nissan(DECLARE_CONFIG_PARAMETER_SIGNATURE) {
|
||||
engineConfiguration->trigger.type = TT_NISSAN_VQ;
|
||||
|
||||
engineConfiguration->vvtMode[0] = VVT_NISSAN_VQ;
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
/*
|
||||
* @file nissan_vq.h
|
||||
*
|
||||
* Created on: Jul 2, 2021
|
||||
* @author Andrey Belomutskiy, (c) 2012-2021
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "engine_configuration.h"
|
||||
|
||||
void setHellen121nissan(DECLARE_CONFIG_PARAMETER_SIGNATURE);
|
|
@ -11,6 +11,7 @@ TESTS_SRC_CPP = \
|
|||
tests/trigger/test_real_volkswagen.cpp \
|
||||
tests/trigger/test_rpm_multiplier.cpp \
|
||||
tests/trigger/test_quad_cam.cpp \
|
||||
tests/trigger/test_nissan_vq_vvt.cpp \
|
||||
tests/trigger/test_override_gaps.cpp \
|
||||
tests/trigger/test_injection_scheduling.cpp \
|
||||
tests/ignition_injection/injection_mode_transition.cpp \
|
||||
|
|
|
@ -0,0 +1,12 @@
|
|||
/*
|
||||
* @file test_nissan_vq_vvt.cpp
|
||||
*
|
||||
* Created on: Jul 2, 2021
|
||||
* @author Andrey Belomutskiy, (c) 2012-2021
|
||||
*/
|
||||
|
||||
#include "engine_test_helper.h"
|
||||
|
||||
TEST(nissan, vq_vvt) {
|
||||
|
||||
}
|
Loading…
Reference in New Issue