auto-sync

This commit is contained in:
rusEfi 2016-07-01 19:01:44 -04:00
parent 6f1b86e876
commit 16196a82fc
3 changed files with 3 additions and 3 deletions

View File

@ -44,7 +44,7 @@ EXTERN_ENGINE
static fuel_Map3D_t fuelMap("fuel"); static fuel_Map3D_t fuelMap("fuel");
static fuel_Map3D_t fuelPhaseMap("fl ph"); static fuel_Map3D_t fuelPhaseMap("fl ph");
extern fuel_Map3D_t ve2Map; extern fuel_Map3D_t ve2Map;
extern fuel_Map3D_t afrMap; extern afr_Map3D_t afrMap;
extern baroCorr_Map3D_t baroCorrMap; extern baroCorr_Map3D_t baroCorrMap;
/** /**

View File

@ -21,7 +21,7 @@ void testIgnitionPlanning(void) {
EXPAND_EngineTestHelper; EXPAND_EngineTestHelper;
eth.engine.periodicFastCallback(PASS_ENGINE_PARAMETER_F); eth.engine.periodicFastCallback(PASS_ENGINE_PARAMETER_F);
assertEquals(13.5, eth.engine.engineState.targetAFR); assertEqualsM("testIgnitionPlanning_AFR", 13.5, eth.engine.engineState.targetAFR);
assertEquals(IM_BATCH, engineConfiguration->injectionMode); assertEquals(IM_BATCH, engineConfiguration->injectionMode);
} }

View File

@ -30,7 +30,7 @@ void testMafFuelMath(void) {
setAfrMap(config->afrTable, 13); setAfrMap(config->afrTable, 13);
float fuelMs = getRealMafFuel(300, 6000 PASS_ENGINE_PARAMETER); float fuelMs = getRealMafFuel(300, 6000 PASS_ENGINE_PARAMETER);
assertEquals(26.7099, fuelMs); assertEqualsM("fuelMs", 26.7099, fuelMs);
} }
void testFuelMap(void) { void testFuelMap(void) {