Nissan progress

This commit is contained in:
Andrey 2021-07-02 14:56:12 -04:00
parent 96a20f4baa
commit a9e7166f74
4 changed files with 39 additions and 0 deletions

View File

@ -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;
}

View File

@ -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);

View File

@ -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 \

View File

@ -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) {
}