2019-11-23 19:55:21 -08:00
|
|
|
/*
|
|
|
|
* @file test_aux_valves.cpp
|
|
|
|
*
|
|
|
|
* @date: Nov 23, 2019
|
|
|
|
* @Author: Andrey Belomutskiy, (c) 2012-2019
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "engine_test_helper.h"
|
|
|
|
#include "aux_valves.h"
|
|
|
|
|
|
|
|
TEST(misc, testAuxValves) {
|
|
|
|
WITH_ENGINE_TEST_HELPER(NISSAN_PRIMERA);
|
|
|
|
|
|
|
|
engine->auxSchedulingIndex = 0;
|
|
|
|
engine->needTdcCallback = false;
|
|
|
|
|
|
|
|
setupSimpleTestEngineWithMafAndTT_ONE_trigger(ð, IM_SEQUENTIAL);
|
|
|
|
engineConfiguration->isInjectionEnabled = false;
|
|
|
|
|
|
|
|
eth.fireTriggerEvents2(2 /* count */ , 600 /* ms */);
|
|
|
|
ASSERT_EQ( 100, GET_RPM()) << "spinning-RPM#1";
|
|
|
|
|
2019-12-02 07:18:13 -08:00
|
|
|
eth.assertScheduling("a0", 0, &engine->auxTurnOnEvent[0][0][0], (void*)&plainPinTurnOn, -600000);
|
|
|
|
eth.assertScheduling("a1", 1, &engine->auxTurnOffEvent[0][0][0], (void*)&plainPinTurnOff, -550000);
|
|
|
|
eth.assertScheduling("a2", 2, &engine->auxTurnOnEvent[1][0][0], (void*)&plainPinTurnOn, -300000);
|
2019-11-23 19:55:21 -08:00
|
|
|
|
|
|
|
}
|