Trigger: warning code on normal engine start up #669
better TDC unit test approach?
This commit is contained in:
parent
dbea1e23a0
commit
942eb46471
|
@ -10,8 +10,6 @@
|
||||||
#include "trigger_simulator.h"
|
#include "trigger_simulator.h"
|
||||||
#include "trigger_emulator_algo.h"
|
#include "trigger_emulator_algo.h"
|
||||||
|
|
||||||
#define SIMULATION_CYCLE_PERIOD 720000
|
|
||||||
|
|
||||||
EXTERN_ENGINE;
|
EXTERN_ENGINE;
|
||||||
|
|
||||||
#if EFI_UNIT_TEST
|
#if EFI_UNIT_TEST
|
||||||
|
|
|
@ -8,6 +8,8 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#define SIMULATION_CYCLE_PERIOD 720000
|
||||||
|
|
||||||
#include "trigger_decoder.h"
|
#include "trigger_decoder.h"
|
||||||
|
|
||||||
int getSimulatedEventTime(const TriggerWaveform& shape, int i);
|
int getSimulatedEventTime(const TriggerWaveform& shape, int i);
|
||||||
|
|
|
@ -26,6 +26,6 @@ TEST(miata, miata_na_tdc) {
|
||||||
}
|
}
|
||||||
|
|
||||||
ASSERT_EQ(167, GET_RPM()) << "miata_na_tdc RPM";
|
ASSERT_EQ(167, GET_RPM()) << "miata_na_tdc RPM";
|
||||||
ASSERT_EQ(3894000, engine->tdcScheduler[0].momentX); // let's assert TDC position and sync point
|
ASSERT_EQ(294000, engine->tdcScheduler[0].momentX % SIMULATION_CYCLE_PERIOD); // let's assert TDC position and sync point
|
||||||
ASSERT_EQ(4614000, engine->tdcScheduler[1].momentX); // let's assert TDC position and sync point
|
ASSERT_EQ(294000, engine->tdcScheduler[1].momentX % SIMULATION_CYCLE_PERIOD); // let's assert TDC position and sync point
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue