rusefi-1/unit_tests/test_trigger_decoder.cpp

602 lines
22 KiB
C++
Raw Normal View History

2015-07-10 06:01:56 -07:00
/**
* @file test_trigger_decoder.cpp
*
* @date Dec 24, 2013
2016-04-02 20:01:58 -07:00
* @author Andrey Belomutskiy, (c) 2012-2016
2015-07-10 06:01:56 -07:00
*/
#include "main.h"
#include "test_trigger_decoder.h"
#include "trigger_decoder.h"
#include "engine_math.h"
#include "thermistors.h"
#include "ford_aspire.h"
#include "dodge_neon.h"
#include "ford_1995_inline_6.h"
#include "mazda_323.h"
#include "rpm_calculator.h"
#include "event_queue.h"
#include "algo.h"
#include "trigger_mazda.h"
#include "trigger_chrysler.h"
2016-01-31 18:02:03 -08:00
#include "tps.h"
2015-07-10 06:01:56 -07:00
#include "trigger_central.h"
#include "main_trigger_callback.h"
#include "engine.h"
#include "advance_map.h"
#include "engine_test_helper.h"
#include "speed_density.h"
extern int timeNow;
extern bool printTriggerDebug;
extern float actualSynchGap;
extern "C" {
void sendOutConfirmation(char *value, int i);
}
void sendOutConfirmation(char *value, int i) {
// test implementation
}
int getTheAngle(engine_type_e engineType) {
EngineTestHelper eth(engineType);
EXPAND_EngineTestHelper;
initDataStructures(PASS_ENGINE_PARAMETER_F);
TriggerShape * shape = &eth.engine.triggerShape;
2015-09-13 14:02:44 -07:00
return findTriggerZeroEventIndex(&eth.engine.triggerCentral.triggerState, shape, &engineConfiguration->trigger PASS_ENGINE_PARAMETER);
2015-07-10 06:01:56 -07:00
}
static void testDodgeNeonDecoder(void) {
printf("*************************************************** testDodgeNeonDecoder\r\n");
initTriggerDecoder();
assertEqualsM("trigger zero index", 8, getTheAngle(DODGE_NEON_1995));
EngineTestHelper eth(DODGE_NEON_1995);
EXPAND_EngineTestHelper;
TriggerShape * shape = &eth.engine.triggerShape;
assertEquals(8, shape->getTriggerShapeSynchPointIndex());
TriggerState state;
assertFalseM("1 shaft_is_synchronized", state.shaft_is_synchronized);
// int r = 0;
2016-02-27 20:03:34 -08:00
// processTriggerEvent(&state, shape, &ec->triggerConfig, SHAFT_PRIMARY_RISING, r + 60);
2015-07-10 06:01:56 -07:00
// assertFalseM("2 shaft_is_synchronized", state.shaft_is_synchronized); // still no synchronization
2016-02-27 20:03:34 -08:00
// processTriggerEvent(&state, shape, &ec->triggerConfig, SHAFT_PRIMARY_FALLING, r + 210);
2015-07-10 06:01:56 -07:00
// assertFalseM("3 shaft_is_synchronized", state.shaft_is_synchronized); // still no synchronization
//
2016-02-27 20:03:34 -08:00
// processTriggerEvent(&state, shape, &ec->triggerConfig, SHAFT_PRIMARY_RISING, r + 420);
2015-07-10 06:01:56 -07:00
// assertFalseM("4 shaft_is_synchronized", state.shaft_is_synchronized); // still no synchronization
//
2016-02-27 20:03:34 -08:00
// processTriggerEvent(&state, shape, &ec->triggerConfig, SHAFT_PRIMARY_FALLING, r + 630);
2015-07-10 06:01:56 -07:00
// assertFalse(state.shaft_is_synchronized); // still no synchronization
//
// printf("2nd camshaft revolution\r\n");
// r = 720;
2016-02-27 20:03:34 -08:00
// processTriggerEvent(&state, shape, &ec->triggerConfig, SHAFT_PRIMARY_RISING, r + 60);
// processTriggerEvent(&state, shape, &ec->triggerConfig, SHAFT_PRIMARY_FALLING, r + 210);
2015-07-10 06:01:56 -07:00
// assertTrue(state.shaft_is_synchronized);
// assertEquals(0, state.current_index);
2016-02-27 20:03:34 -08:00
// processTriggerEvent(&state, shape, &ec->triggerConfig, SHAFT_PRIMARY_RISING, r + 420);
2015-07-10 06:01:56 -07:00
// assertEquals(1, state.current_index);
2016-02-27 20:03:34 -08:00
// processTriggerEvent(&state, shape, &ec->triggerConfig, SHAFT_PRIMARY_FALLING, r + 630);
2015-07-10 06:01:56 -07:00
// assertEquals(2, state.current_index);
//
// printf("3rd camshaft revolution\r\n");
// r = 2 * 720;
2016-02-27 20:03:34 -08:00
// processTriggerEvent(&state, shape, &ec->triggerConfig, SHAFT_PRIMARY_RISING, r + 60);
2015-07-10 06:01:56 -07:00
// assertEqualsM("current index", 3, state.current_index);
2016-02-27 20:03:34 -08:00
// processTriggerEvent(&state, shape, &ec->triggerConfig, SHAFT_PRIMARY_FALLING, r + 210);
2015-07-10 06:01:56 -07:00
// assertTrue(state.shaft_is_synchronized);
// assertEqualsM("current index", 0, state.current_index);
2016-02-27 20:03:34 -08:00
// processTriggerEvent(&state, shape, &ec->triggerConfig, SHAFT_PRIMARY_RISING, r + 420);
// processTriggerEvent(&state, shape, &ec->triggerConfig, SHAFT_PRIMARY_FALLING, r + 630);
2015-07-10 06:01:56 -07:00
}
static void assertTriggerPosition(event_trigger_position_s *position, int eventIndex, float angleOffset) {
assertEqualsM("eventIndex", eventIndex, position->eventIndex);
assertEqualsM("angleOffset", angleOffset, position->angleOffset);
}
2016-01-26 19:03:19 -08:00
void test1995FordInline6TriggerDecoder(void) {
2015-07-10 06:01:56 -07:00
printf("*************************************************** test1995FordInline6TriggerDecoder\r\n");
assertEqualsM("triggerIndex ", 0, getTheAngle(FORD_INLINE_6_1995));
initTriggerDecoder();
EngineTestHelper eth(FORD_INLINE_6_1995);
EXPAND_EngineTestHelper;
TriggerShape * shape = &eth.engine.triggerShape;
assertEqualsM("triggerShapeSynchPointIndex", 0, shape->getTriggerShapeSynchPointIndex());
2016-01-26 19:03:19 -08:00
// this is needed to have valid CLT and IAT. todo: extract method
engine->updateSlowSensors(PASS_ENGINE_PARAMETER_F);
2015-07-10 06:01:56 -07:00
event_trigger_position_s position;
assertEqualsM("globalTriggerAngleOffset", 0, engineConfiguration->globalTriggerAngleOffset);
findTriggerPosition(&position, 0 PASS_ENGINE_PARAMETER);
assertTriggerPosition(&position, 0, 0);
findTriggerPosition(&position, 200 PASS_ENGINE_PARAMETER);
assertTriggerPosition(&position, 3, 20);
findTriggerPosition(&position, 360 PASS_ENGINE_PARAMETER);
assertTriggerPosition(&position, 6, 0);
2016-01-26 19:03:19 -08:00
eth.initTriggerShapeAndRpmCalculator();
eth.engine.triggerCentral.addEventListener(mainTriggerCallback, "main loop", &eth.engine);
eth.engine.periodicFastCallback(PASS_ENGINE_PARAMETER_F);
2016-01-26 20:01:44 -08:00
eth.fireTriggerEvents(48);
assertEquals(2000, eth.engine.rpmCalculator.rpmValue);
eth.engine.periodicFastCallback(PASS_ENGINE_PARAMETER_F);
eth.fireTriggerEvents(48);
2015-07-10 06:01:56 -07:00
IgnitionEventList *ecl = &eth.ec2.ignitionEvents[0];
2016-01-26 20:01:44 -08:00
assertEqualsM("ford inline ignition events size", 6, ecl->size);
2015-07-10 06:01:56 -07:00
assertEqualsM("event index", 0, ecl->elements[0].dwellPosition.eventIndex);
2016-01-26 20:01:44 -08:00
assertEqualsM("angle offset#1", 7, ecl->elements[0].dwellPosition.angleOffset);
2015-07-10 06:01:56 -07:00
assertEqualsM("event index", 10, ecl->elements[5].dwellPosition.eventIndex);
2016-01-26 20:01:44 -08:00
assertEqualsM("angle offset#2", 7, ecl->elements[5].dwellPosition.angleOffset);
2015-07-10 06:01:56 -07:00
TriggerState state;
assertFalseM("shaft_is_synchronized", state.shaft_is_synchronized);
int r = 10;
2016-02-27 20:03:34 -08:00
state.decodeTriggerEvent(SHAFT_PRIMARY_FALLING, r PASS_ENGINE_PARAMETER);
2015-07-10 06:01:56 -07:00
assertFalseM("shaft_is_synchronized", state.shaft_is_synchronized); // still no synchronization
2016-02-27 20:03:34 -08:00
state.decodeTriggerEvent(SHAFT_PRIMARY_RISING, ++r PASS_ENGINE_PARAMETER);
2015-07-10 06:01:56 -07:00
assertTrue(state.shaft_is_synchronized); // first signal rise synchronize
assertEquals(0, state.getCurrentIndex());
2016-02-27 20:03:34 -08:00
state.decodeTriggerEvent(SHAFT_PRIMARY_FALLING, r++ PASS_ENGINE_PARAMETER);
2015-07-10 06:01:56 -07:00
assertEquals(1, state.getCurrentIndex());
for (int i = 2; i < 10;) {
2016-02-27 20:03:34 -08:00
state.decodeTriggerEvent(SHAFT_PRIMARY_RISING, r++ PASS_ENGINE_PARAMETER);
2015-07-10 06:01:56 -07:00
assertEqualsM("even", i++, state.getCurrentIndex());
2016-02-27 20:03:34 -08:00
state.decodeTriggerEvent(SHAFT_PRIMARY_FALLING, r++ PASS_ENGINE_PARAMETER);
2015-07-10 06:01:56 -07:00
assertEqualsM("odd", i++, state.getCurrentIndex());
}
2016-02-27 20:03:34 -08:00
state.decodeTriggerEvent(SHAFT_PRIMARY_RISING, r++ PASS_ENGINE_PARAMETER);
2015-07-10 06:01:56 -07:00
assertEquals(10, state.getCurrentIndex());
2016-02-27 20:03:34 -08:00
state.decodeTriggerEvent(SHAFT_PRIMARY_FALLING, r++ PASS_ENGINE_PARAMETER);
2015-07-10 06:01:56 -07:00
assertEquals(11, state.getCurrentIndex());
2016-02-27 20:03:34 -08:00
state.decodeTriggerEvent(SHAFT_PRIMARY_RISING, r++ PASS_ENGINE_PARAMETER);
2015-07-10 06:01:56 -07:00
assertEquals(0, state.getCurrentIndex()); // new revolution
2016-01-01 14:02:49 -08:00
assertEqualsM("running dwell", 0.5, getSparkDwell(2000 PASS_ENGINE_PARAMETER));
2015-07-10 06:01:56 -07:00
}
void testFordAspire(void) {
printf("*************************************************** testFordAspire\r\n");
assertEquals(4, getTheAngle(FORD_ASPIRE_1996));
EngineTestHelper eth(FORD_ASPIRE_1996);
EXPAND_EngineTestHelper;
assertEquals(4, eth.engine.triggerShape.getTriggerShapeSynchPointIndex());
assertEquals(800, config->fuelRpmBins[0]);
assertEquals(7000, config->fuelRpmBins[15]);
engineConfiguration->crankingChargeAngle = 65;
engineConfiguration->crankingTimingAngle = 31;
2016-01-01 14:02:49 -08:00
assertEqualsM("cranking dwell", 54.166670, getSparkDwell(200 PASS_ENGINE_PARAMETER));
assertEqualsM("running dwell", 4, getSparkDwell(2000 PASS_ENGINE_PARAMETER));
2015-07-10 06:01:56 -07:00
2016-01-01 14:02:49 -08:00
assertEqualsM("higher rpm dwell", 3.25, getSparkDwell(6000 PASS_ENGINE_PARAMETER));
2015-07-10 06:01:56 -07:00
}
static void testTriggerDecoder2(const char *msg, engine_type_e type, int synchPointIndex, float channel1duty, float channel2duty) {
printf("*************************************************** %s\r\n", msg);
EngineTestHelper eth(type);
EXPAND_EngineTestHelper;
initSpeedDensity(PASS_ENGINE_PARAMETER_F);
TriggerShape *t = &eth.engine.triggerShape;
assertEqualsM("synchPointIndex", synchPointIndex, t->getTriggerShapeSynchPointIndex());
assertEqualsM("channel1duty", channel1duty, t->dutyCycle[0]);
assertEqualsM("channel2duty", channel2duty, t->dutyCycle[1]);
}
static void testTriggerDecoder3(const char *msg, engine_type_e type, int synchPointIndex, float channel1duty, float channel2duty, float expectedGap) {
printTriggerDebug = true;
testTriggerDecoder2(msg, type, synchPointIndex, channel1duty, channel2duty);
assertEqualsM2("actual gap ratio", expectedGap, actualSynchGap, 0.001);
printTriggerDebug = false;
}
extern EventQueue schedulingQueue;
extern int mockTps;
2016-08-26 14:02:37 -07:00
void testStartupFuelPumping(void) {
2015-07-10 06:01:56 -07:00
printf("*************************************************** testStartupFuelPumping\r\n");
EngineTestHelper eth(FORD_INLINE_6_1995);
EXPAND_EngineTestHelper;
StartupFuelPumping sf;
engine->rpmCalculator.mockRpm = 0;
2016-06-16 21:01:42 -07:00
engine->engineConfiguration->tpsMin = 0;
engine->engineConfiguration->tpsMax = 10;
2015-07-10 06:01:56 -07:00
2016-01-31 18:02:03 -08:00
mockTps = TPS_TS_CONVERSION * 6;
2015-07-10 06:01:56 -07:00
sf.update(PASS_ENGINE_PARAMETER_F);
assertEqualsM("pc#1", 1, sf.pumpsCounter);
2016-01-31 18:02:03 -08:00
mockTps = TPS_TS_CONVERSION * 3;
2015-07-10 06:01:56 -07:00
sf.update(PASS_ENGINE_PARAMETER_F);
assertEqualsM("pc#2", 1, sf.pumpsCounter);
sf.update(PASS_ENGINE_PARAMETER_F);
assertEqualsM("pc#3", 1, sf.pumpsCounter);
engine->rpmCalculator.mockRpm = 10;
sf.update(PASS_ENGINE_PARAMETER_F);
assertEqualsM("pc#4", 0, sf.pumpsCounter);
2016-01-31 18:02:03 -08:00
mockTps = TPS_TS_CONVERSION * 7;
2015-07-10 06:01:56 -07:00
engine->rpmCalculator.mockRpm = 0;
sf.update(PASS_ENGINE_PARAMETER_F);
assertEqualsM("pc#5", 1, sf.pumpsCounter);
2016-01-31 18:02:03 -08:00
mockTps = TPS_TS_CONVERSION * 3;
2015-07-10 06:01:56 -07:00
sf.update(PASS_ENGINE_PARAMETER_F);
assertEqualsM("pc#6", 1, sf.pumpsCounter);
2016-01-31 18:02:03 -08:00
mockTps = TPS_TS_CONVERSION * 7;
2015-07-10 06:01:56 -07:00
sf.update(PASS_ENGINE_PARAMETER_F);
assertEqualsM("pc#7", 2, sf.pumpsCounter);
}
static void assertREquals(void *expected, void *actual) {
assertEquals((float)(uint64_t)expected, (float)(uint64_t)actual);
}
2016-07-23 19:02:52 -07:00
static void assertREqualsM(const char *msg, void *expected, void *actual) {
assertEqualsM(msg, (float)(uint64_t)expected, (float)(uint64_t)actual);
}
2015-07-10 06:01:56 -07:00
extern bool_t debugSignalExecutor;
2016-01-25 20:01:36 -08:00
extern engine_pins_s enginePins;
2015-07-10 06:01:56 -07:00
2016-01-25 08:02:31 -08:00
void testRpmCalculator(void) {
2015-07-10 06:01:56 -07:00
printf("*************************************************** testRpmCalculator\r\n");
2016-01-26 19:03:19 -08:00
timeNow = 0;
2016-01-26 20:01:44 -08:00
schedulingQueue.clear();
2015-07-10 06:01:56 -07:00
EngineTestHelper eth(FORD_INLINE_6_1995);
EXPAND_EngineTestHelper;
2016-01-26 21:01:34 -08:00
IgnitionEventList *ilist = &eth.engine.engineConfiguration2->ignitionEvents[1];
assertEqualsM("size #1", 0, ilist->size);
2015-07-10 06:01:56 -07:00
2016-01-14 21:01:42 -08:00
assertEqualsM("engineCycle", 720, eth.engine.engineCycle);
2015-07-10 06:01:56 -07:00
efiAssertVoid(eth.engine.engineConfiguration!=NULL, "null config in engine");
engineConfiguration->trigger.customTotalToothCount = 8;
engineConfiguration->globalFuelCorrection = 3;
eth.initTriggerShapeAndRpmCalculator();
2016-07-24 20:02:52 -07:00
setInjectorLag(0 PASS_ENGINE_PARAMETER);
2015-07-10 06:01:56 -07:00
2016-01-01 14:02:49 -08:00
engine->updateSlowSensors(PASS_ENGINE_PARAMETER_F);
2015-07-10 06:01:56 -07:00
timeNow = 0;
2016-01-18 09:03:32 -08:00
assertEquals(0, eth.engine.rpmCalculator.getRpm(PASS_ENGINE_PARAMETER_F));
2015-07-10 06:01:56 -07:00
2016-01-30 19:03:36 -08:00
assertEquals(4, engine->triggerShape.triggerIndexByAngle[240]);
assertEquals(4, engine->triggerShape.triggerIndexByAngle[241]);
2016-01-24 22:02:55 -08:00
eth.fireTriggerEvents(48);
2016-01-18 09:03:32 -08:00
assertEqualsM("RPM", 1500, eth.engine.rpmCalculator.getRpm(PASS_ENGINE_PARAMETER_F));
2015-09-13 14:02:44 -07:00
assertEqualsM("index #1", 15, eth.engine.triggerCentral.triggerState.getCurrentIndex());
2015-07-10 06:01:56 -07:00
static MainTriggerCallback triggerCallbackInstance;
triggerCallbackInstance.init(&eth.engine);
2015-09-13 14:02:44 -07:00
eth.engine.triggerCentral.addEventListener(mainTriggerCallback, "main loop", &eth.engine);
2015-07-10 06:01:56 -07:00
assertEqualsM("queue size/0", 0, schedulingQueue.size());
debugSignalExecutor = true;
2016-01-24 22:02:55 -08:00
assertEquals(eth.engine.triggerCentral.triggerState.shaft_is_synchronized, 1);
2015-07-10 06:01:56 -07:00
timeNow += 5000; // 5ms
2016-01-24 22:02:55 -08:00
int st = timeNow;
assertEqualsM("st value", 485000, st);
2016-01-30 19:03:36 -08:00
// todo: why is this required here? we already have one 'prepareOutputSignals' in constructor, what's wrong with it?
prepareOutputSignals(PASS_ENGINE_PARAMETER_F);
2015-07-10 06:01:56 -07:00
eth.engine.periodicFastCallback(PASS_ENGINE_PARAMETER_F);
2016-07-23 19:02:52 -07:00
assertEqualsM("fuel #1", 4.5450, eth.engine.fuelMs);
2016-01-26 20:01:44 -08:00
InjectionEvent *ie0 = &eth.engine.engineConfiguration2->injectionEvents->injectionEvents.elements[0];
2016-07-23 19:02:52 -07:00
assertEqualsM("injection angle", 31.365, ie0->injectionStart.angleOffset);
2016-01-26 18:01:37 -08:00
2016-02-27 20:03:34 -08:00
eth.engine.triggerCentral.handleShaftSignal(SHAFT_PRIMARY_RISING PASS_ENGINE_PARAMETER);
2016-01-26 18:01:37 -08:00
assertEquals(1500, eth.engine.rpmCalculator.rpmValue);
2015-07-10 06:01:56 -07:00
assertEqualsM("dwell", 4.5, eth.engine.engineState.dwellAngle);
2016-07-23 19:02:52 -07:00
assertEqualsM("fuel #2", 4.5450, eth.engine.fuelMs);
2015-07-10 06:01:56 -07:00
assertEqualsM("one degree", 111.1111, eth.engine.rpmCalculator.oneDegreeUs);
2016-01-26 20:01:44 -08:00
assertEqualsM("size #2", 6, ilist->size);
2015-07-10 06:01:56 -07:00
assertEqualsM("dwell angle", 0, ilist->elements[0].dwellPosition.eventAngle);
2016-01-26 21:01:34 -08:00
assertEqualsM("dwell offset", 8.5, ilist->elements[0].dwellPosition.angleOffset);
2015-07-10 06:01:56 -07:00
2015-09-13 14:02:44 -07:00
assertEqualsM("index #2", 0, eth.engine.triggerCentral.triggerState.getCurrentIndex());
2016-07-23 19:02:52 -07:00
assertEqualsM("queue size/2", 2, schedulingQueue.size());
2016-01-30 19:03:36 -08:00
{
2016-01-25 20:01:36 -08:00
scheduling_s *ev0 = schedulingQueue.getForUnitText(0);
2015-07-10 06:01:56 -07:00
2016-07-23 19:02:52 -07:00
assertREqualsM("Call@0", (void*)ev0->callback, (void*)turnSparkPinHigh);
assertEqualsM("ev 0", st + 944, ev0->momentX);
assertEqualsLM("o 0", (long)&enginePins.coils[0], (long)ev0->param);
2016-01-25 20:01:36 -08:00
scheduling_s *ev1 = schedulingQueue.getForUnitText(1);
2016-07-23 19:02:52 -07:00
assertREqualsM("Call@1", (void*)ev1->callback, (void*)turnSparkPinLow);
assertEqualsM("ev 1", st + 1444, ev1->momentX);
assertEqualsLM("o 1", (long)&enginePins.coils[0], (long)ev1->param);
2016-01-25 20:01:36 -08:00
2016-01-30 19:03:36 -08:00
}
2016-01-25 20:01:36 -08:00
2015-07-10 06:01:56 -07:00
schedulingQueue.clear();
timeNow += 5000;
2016-02-27 20:03:34 -08:00
eth.engine.triggerCentral.handleShaftSignal(SHAFT_PRIMARY_FALLING PASS_ENGINE_PARAMETER);
2015-07-10 06:01:56 -07:00
timeNow += 5000; // 5ms
2016-02-27 20:03:34 -08:00
eth.engine.triggerCentral.handleShaftSignal(SHAFT_PRIMARY_RISING PASS_ENGINE_PARAMETER);
2015-07-10 06:01:56 -07:00
timeNow += 5000;
2016-02-27 20:03:34 -08:00
eth.engine.triggerCentral.handleShaftSignal(SHAFT_PRIMARY_FALLING PASS_ENGINE_PARAMETER);
2015-09-13 14:02:44 -07:00
assertEqualsM("index #3", 3, eth.engine.triggerCentral.triggerState.getCurrentIndex());
2015-07-10 06:01:56 -07:00
assertEqualsM("queue size 3", 6, schedulingQueue.size());
2016-07-23 19:02:52 -07:00
assertEqualsM("ev 3", st + 13333 - 1515, schedulingQueue.getForUnitText(0)->momentX);
assertEqualsM("ev 4", st + 13333 - 1515, schedulingQueue.getForUnitText(1)->momentX);
2016-01-24 22:02:55 -08:00
assertEqualsM2("ev 5", st + 14277, schedulingQueue.getForUnitText(2)->momentX, 2);
assertEqualsM("3/3", st + 14777, schedulingQueue.getForUnitText(3)->momentX);
2015-07-10 06:01:56 -07:00
schedulingQueue.clear();
2016-01-30 19:03:36 -08:00
assertEquals(5, engine->triggerShape.triggerIndexByAngle[240]);
assertEquals(5, engine->triggerShape.triggerIndexByAngle[241]);
2015-07-10 06:01:56 -07:00
timeNow += 5000;
2016-01-30 19:03:36 -08:00
assertEqualsM("Size 4.1", 6, engine->engineConfiguration2->injectionEvents->eventsCount);
assertFalseM("No squirts expected 4.1", engine->engineConfiguration2->injectionEvents->hasEvents[4]);
2016-02-27 20:03:34 -08:00
eth.engine.triggerCentral.handleShaftSignal(SHAFT_PRIMARY_FALLING PASS_ENGINE_PARAMETER);
2016-01-30 19:03:36 -08:00
assertEqualsM("queue size 4.1", 0, schedulingQueue.size());
2015-07-10 06:01:56 -07:00
timeNow += 5000; // 5ms
2016-02-27 20:03:34 -08:00
eth.engine.triggerCentral.handleShaftSignal(SHAFT_PRIMARY_RISING PASS_ENGINE_PARAMETER);
2016-01-30 19:03:36 -08:00
assertEqualsM("queue size 4.2", 6, schedulingQueue.size());
2015-07-10 06:01:56 -07:00
timeNow += 5000; // 5ms
2016-02-27 20:03:34 -08:00
eth.engine.triggerCentral.handleShaftSignal(SHAFT_PRIMARY_RISING PASS_ENGINE_PARAMETER);
2016-01-30 19:03:36 -08:00
assertEqualsM("queue size 4.3", 6, schedulingQueue.size());
assertEqualsM("dwell", 4.5, eth.engine.engineState.dwellAngle);
2016-07-23 19:02:52 -07:00
assertEqualsM("fuel #3", 4.5450, eth.engine.fuelMs);
2016-01-30 19:03:36 -08:00
assertEquals(1500, eth.engine.rpmCalculator.rpmValue);
{
scheduling_s *ev0 = schedulingQueue.getForUnitText(0);
2016-08-26 14:02:37 -07:00
assertREqualsM("turnHigh", (void*)ev0->callback, (void*)seTurnPinHigh);
2016-07-23 19:02:52 -07:00
assertEqualsM("ev 0/2", st + 26666 - 1515, ev0->momentX);
2016-01-30 19:03:36 -08:00
assertEqualsLM("o 0/2", (long)&enginePins.injectors[2], (long)ev0->param);
scheduling_s *ev1 = schedulingQueue.getForUnitText(1);
2016-07-23 19:02:52 -07:00
assertEqualsM("ev 1/2", st + 26666 - 1515, ev1->momentX);
2016-01-30 19:03:36 -08:00
assertEqualsLM("o 1/2", (long)&enginePins.injectors[5], (long)ev1->param);
}
2015-09-13 14:02:44 -07:00
assertEqualsM("index #4", 6, eth.engine.triggerCentral.triggerState.getCurrentIndex());
2015-07-10 06:01:56 -07:00
assertEqualsM("queue size 4", 6, schedulingQueue.size());
schedulingQueue.clear();
timeNow += 5000;
2016-02-27 20:03:34 -08:00
eth.engine.triggerCentral.handleShaftSignal(SHAFT_PRIMARY_FALLING PASS_ENGINE_PARAMETER);
2016-07-23 19:02:52 -07:00
assertEqualsM("queue size 5", 4, schedulingQueue.size());
// todo: assert queue elements
2015-07-10 06:01:56 -07:00
schedulingQueue.clear();
timeNow += 5000; // 5ms
2016-02-27 20:03:34 -08:00
eth.engine.triggerCentral.handleShaftSignal(SHAFT_PRIMARY_RISING PASS_ENGINE_PARAMETER);
2016-07-23 19:02:52 -07:00
assertEqualsM("queue size 6", 2, schedulingQueue.size());
assertEqualsM("6/0", st + 40944, schedulingQueue.getForUnitText(0)->momentX);
assertEqualsM("6/1", st + 41444, schedulingQueue.getForUnitText(1)->momentX);
2015-07-10 06:01:56 -07:00
schedulingQueue.clear();
timeNow += 5000;
2016-02-27 20:03:34 -08:00
eth.engine.triggerCentral.handleShaftSignal(SHAFT_PRIMARY_FALLING PASS_ENGINE_PARAMETER);
2015-07-10 06:01:56 -07:00
assertEqualsM("queue size 7", 0, schedulingQueue.size());
schedulingQueue.clear();
timeNow += 5000; // 5ms
2016-02-27 20:03:34 -08:00
eth.engine.triggerCentral.handleShaftSignal(SHAFT_PRIMARY_RISING PASS_ENGINE_PARAMETER);
2015-11-09 16:03:32 -08:00
assertEqualsM("queue size 8", 6, schedulingQueue.size());
2016-07-23 19:02:52 -07:00
// todo: assert queue elements completely
assertEqualsM("8/0", st + 53333 - 1515, schedulingQueue.getForUnitText(0)->momentX);
assertEqualsM("8/1", st + 53333 - 1515, schedulingQueue.getForUnitText(1)->momentX);
2016-01-24 22:02:55 -08:00
assertEqualsM2("8/2", st + 54277, schedulingQueue.getForUnitText(2)->momentX, 0);
assertEqualsM2("8/3", st + 54777, schedulingQueue.getForUnitText(3)->momentX, 0);
2015-07-10 06:01:56 -07:00
schedulingQueue.clear();
timeNow += 5000;
2016-02-27 20:03:34 -08:00
eth.engine.triggerCentral.handleShaftSignal(SHAFT_PRIMARY_FALLING PASS_ENGINE_PARAMETER);
2015-11-09 16:03:32 -08:00
assertEqualsM("queue size 9", 0, schedulingQueue.size());
2015-07-10 06:01:56 -07:00
schedulingQueue.clear();
timeNow += 5000; // 5ms
2016-02-27 20:03:34 -08:00
eth.engine.triggerCentral.handleShaftSignal(SHAFT_PRIMARY_RISING PASS_ENGINE_PARAMETER);
2015-07-10 06:01:56 -07:00
assertEqualsM("queue size 10", 0, schedulingQueue.size());
schedulingQueue.clear();
}
void testTriggerDecoder(void) {
printf("*************************************************** testTriggerDecoder\r\n");
persistent_config_s config;
Engine engine(&config);
TriggerShape * s = &engine.triggerShape;
initializeSkippedToothTriggerShapeExt(s, 2, 0, FOUR_STROKE_CAM_SENSOR);
assertEqualsM("shape size", s->getSize(), 4);
assertEquals(s->wave.switchTimes[0], 0.25);
assertEquals(s->wave.switchTimes[1], 0.5);
assertEquals(s->wave.switchTimes[2], 0.75);
assertEquals(s->wave.switchTimes[3], 1);
testDodgeNeonDecoder();
testTriggerDecoder2("dodge neon", DODGE_NEON_1995, 8, 0.4931, 0.2070);
testFordAspire();
2015-09-24 16:01:36 -07:00
testTriggerDecoder2("ford aspire", FORD_ASPIRE_1996, 4, 0.5000, 0.3841);
2015-07-10 06:01:56 -07:00
testTriggerDecoder2("dodge ram", DODGE_RAM, 16, 0.5000, 0.06);
//testTriggerDecoder2("bmw", BMW_E34, 0, 0.9750, 0.5167);
2015-09-24 16:01:36 -07:00
testTriggerDecoder2("bmw", BMW_E34, 0, 0.4833, 0.0);
2015-07-10 06:01:56 -07:00
test1995FordInline6TriggerDecoder();
2015-09-11 22:02:28 -07:00
testTriggerDecoder2("Miata NB", MAZDA_MIATA_NB, 12, 0.0833, 0.0444);
2015-07-10 06:01:56 -07:00
2015-09-24 16:01:36 -07:00
testTriggerDecoder2("test engine", TEST_ENGINE, 0, 0.7500, 0.2500);
2015-07-10 06:01:56 -07:00
testTriggerDecoder2("testGY6_139QMB", GY6_139QMB, 0, 0.4375, 0.0);
testTriggerDecoder2("testSubary", SUBARU_2003_WRX, 0, 0.4000, 0.0);
testTriggerDecoder2("testFordEscortGt", FORD_ESCORT_GT, 0, 0.8096, 0.3844);
testTriggerDecoder2("testMiniCooper", MINI_COOPER_R50, 121, 0.5222, 0.4959);
testTriggerDecoder2("testRoverV8", ROVER_V8, 0, 0.4861, 0);
testTriggerDecoder2("SATURN_ION_2004", SATURN_ION_2004, 4, 0.5, 0.3841);
testTriggerDecoder2("test1+1", CUSTOM_ENGINE, 0, 0.7500, 0.2500);
testTriggerDecoder2("testCitroen", CITROEN_TU3JP, 0, 0.4833, 0);
testTriggerDecoder2("testAccordCd 3w", HONDA_ACCORD_CD, 12, 0.8146, 0.5000);
testTriggerDecoder2("testAccordCd 2w", HONDA_ACCORD_CD_TWO_WIRES, 2, 0.9167, 0.5);
testTriggerDecoder2("testAccordCdDip", HONDA_ACCORD_CD_DIP, 27, 0.5000, 0.5000);
testTriggerDecoder2("testMitsu", MITSU_4G93, 3, 0.3750, 0.3889);
2015-09-13 10:02:13 -07:00
{
EngineTestHelper eth(MITSU_4G93);
EXPAND_EngineTestHelper;
initSpeedDensity(PASS_ENGINE_PARAMETER_F);
TriggerShape *t = &eth.engine.triggerShape;
assertEquals(56, t->eventAngles[1]);
assertEqualsM("index at 0", 0, t->triggerIndexByAngle[56]);
assertEqualsM("index at 1", 1, t->triggerIndexByAngle[57]);
assertEquals(270, t->eventAngles[5]);
assertEqualsM("index at 269", 4, t->triggerIndexByAngle[269]);
assertEqualsM("index at 270", 5, t->triggerIndexByAngle[270]);
assertEqualsM("index at 271", 5, t->triggerIndexByAngle[271]);
assertEquals(306, t->eventAngles[6]);
assertEquals(5, t->triggerIndexByAngle[305]);
assertEquals(6, t->triggerIndexByAngle[306]);
assertEquals(6, t->triggerIndexByAngle[307]);
assertEquals(666, t->eventAngles[11]);
assertEqualsM("index for 665", 10, t->triggerIndexByAngle[665]);
2015-09-13 11:02:32 -07:00
assertEqualsM("index for 668", 11, t->triggerIndexByAngle[668]);
2015-09-13 10:02:13 -07:00
2015-09-13 13:01:38 -07:00
2016-02-27 20:03:34 -08:00
eth.persistentConfig.engineConfiguration.useOnlyRisingEdgeForTrigger = false;
2015-09-13 15:01:23 -07:00
eth.persistentConfig.engineConfiguration.bc.sensorChartMode = SC_DETAILED_RPM;
2015-09-13 13:01:38 -07:00
applyNonPersistentConfiguration(NULL PASS_ENGINE_PARAMETER);
2016-01-24 22:02:55 -08:00
// assertEqualsM2("rpm#1", 16666.9746, eth.engine.triggerCentral.triggerState.instantRpmValue[0], 0.5);
// assertEqualsM2("rpm#2", 16666.3750, eth.engine.triggerCentral.triggerState.instantRpmValue[1], 0.5);
2015-09-13 13:01:38 -07:00
2015-09-13 10:02:13 -07:00
}
2016-08-26 14:02:37 -07:00
testTriggerDecoder2("miata 1990", MIATA_1990, 11, 0.2985, 0.3890);
2015-07-10 06:01:56 -07:00
testTriggerDecoder3("miata 1994", MIATA_1994_DEVIATOR, 11, 0.2985, 0.3890, MIATA_NA_GAP);
testTriggerDecoder3("citroen", CITROEN_TU3JP, 0, 0.4833, 0.0, 2.9994);
2016-08-26 14:02:37 -07:00
testTriggerDecoder2("MAZDA_323", MAZDA_323, 0, 0.4833, 0);
2016-01-21 16:02:57 -08:00
testTriggerDecoder3("neon NGC4", DODGE_NEON_2003, 6, 0.5000, 0.0, CHRYSLER_NGC4_GAP);
2015-09-24 16:01:36 -07:00
{
printTriggerDebug = true;
EngineTestHelper eth(DODGE_NEON_2003);
EXPAND_EngineTestHelper;
2016-02-27 20:03:34 -08:00
printf("!!!!!!!!!!!!!!!!!! Now trying with only rising edges !!!!!!!!!!!!!!!!!\r\n");
engineConfiguration->useOnlyRisingEdgeForTrigger = true;
2015-09-24 16:01:36 -07:00
2015-09-24 17:01:25 -07:00
applyNonPersistentConfiguration(NULL PASS_ENGINE_PARAMETER);
prepareShapes(PASS_ENGINE_PARAMETER_F);
2015-09-24 16:01:36 -07:00
2015-09-24 17:01:25 -07:00
printTriggerDebug = false;
2015-09-24 16:01:36 -07:00
}
2015-07-10 06:01:56 -07:00
testTriggerDecoder2("sachs", SACHS, 0, 0.4800, 0.000);
2015-09-05 20:02:46 -07:00
printTriggerDebug = true;
2015-09-12 12:02:40 -07:00
testTriggerDecoder3("36+2+2+2", DAIHATSU, 28, 0.5000, 0.0, 0.5);
2015-09-06 11:01:29 -07:00
testTriggerDecoder3("stratus NGC6", DODGE_STRATUS, 0, 0.8833, 0.0, CHRYSLER_NGC6_GAP);
2015-09-05 20:02:46 -07:00
2015-07-10 06:01:56 -07:00
testTriggerDecoder2("vw ABA", VW_ABA, 114, 0.5000, 0.0);
testStartupFuelPumping();
testRpmCalculator();
}
2016-08-26 14:02:37 -07:00
void testFuelSchedulerBug299(void) {
printf("*************************************************** testFuelSchedulerBug299\r\n");
EngineTestHelper eth(TEST_ENGINE);
EXPAND_EngineTestHelper;
timeNow = 0;
schedulingQueue.clear();
assertEqualsM("CLT", 70, engine->engineState.clt);
2016-08-26 15:02:39 -07:00
engineConfiguration->trigger.type = TT_ONE;
incrementGlobalConfigurationVersion();
eth.initTriggerShapeAndRpmCalculator();
assertEqualsM("RPM=0", 0, eth.engine.rpmCalculator.getRpm(PASS_ENGINE_PARAMETER_F));
eth.fireTriggerEvents2(2, MS2US(50));
assertEqualsM("RPM", 1200, eth.engine.rpmCalculator.getRpm(PASS_ENGINE_PARAMETER_F));
assertEqualsM("fuel", 4.07, engine->fuelMs);
2016-08-26 14:02:37 -07:00
}