diff --git a/firmware/controllers/trigger/trigger_central.cpp b/firmware/controllers/trigger/trigger_central.cpp index 6930eddea0..25a270aa3a 100644 --- a/firmware/controllers/trigger/trigger_central.cpp +++ b/firmware/controllers/trigger/trigger_central.cpp @@ -676,7 +676,7 @@ bool checkIfTriggerConfigChanged(DECLARE_ENGINE_PARAMETER_SIGNATURE) { return result; } -bool readIfTriggerConfigChangedForUnitTest(DECLARE_ENGINE_PARAMETER_SIGNATURE) { +bool isTriggerConfigChanged(DECLARE_ENGINE_PARAMETER_SIGNATURE) { return engine->isTriggerConfigChanged; } diff --git a/firmware/controllers/trigger/trigger_central.h b/firmware/controllers/trigger/trigger_central.h index cdb1c6822d..a2726839d0 100644 --- a/firmware/controllers/trigger/trigger_central.h +++ b/firmware/controllers/trigger/trigger_central.h @@ -70,6 +70,6 @@ void resetMaxValues(); void onConfigurationChangeTriggerCallback(engine_configuration_s *previousConfiguration DECLARE_ENGINE_PARAMETER_SUFFIX); bool checkIfTriggerConfigChanged(DECLARE_ENGINE_PARAMETER_SIGNATURE); -bool readIfTriggerConfigChangedForUnitTest(DECLARE_ENGINE_PARAMETER_SIGNATURE); +bool isTriggerConfigChanged(DECLARE_ENGINE_PARAMETER_SIGNATURE); #endif /* TRIGGER_CENTRAL_H_ */ diff --git a/unit_tests/engine_test_helper.cpp b/unit_tests/engine_test_helper.cpp index 82ce99845a..540e99e269 100644 --- a/unit_tests/engine_test_helper.cpp +++ b/unit_tests/engine_test_helper.cpp @@ -214,13 +214,17 @@ void setupSimpleTestEngineWithMaf(EngineTestHelper *eth, injection_mode_e inject engine->updateSlowSensors(PASS_ENGINE_PARAMETER_SIGNATURE); ASSERT_NEAR( 70, engine->sensors.clt, EPS4D) << "CLT"; - ASSERT_EQ( 0, readIfTriggerConfigChangedForUnitTest(PASS_ENGINE_PARAMETER_SIGNATURE)) << "trigger #1"; + + ASSERT_EQ( 0, isTriggerConfigChanged(PASS_ENGINE_PARAMETER_SIGNATURE)) << "trigger #1"; + eth->setTriggerType(trigger PASS_ENGINE_PARAMETER_SUFFIX); +} + +void EngineTestHelper::setTriggerType(trigger_type_e trigger DECLARE_ENGINE_PARAMETER_SUFFIX) { engineConfiguration->trigger.type = trigger; incrementGlobalConfigurationVersion(PASS_ENGINE_PARAMETER_SIGNATURE); - ASSERT_EQ( 1, readIfTriggerConfigChangedForUnitTest(PASS_ENGINE_PARAMETER_SIGNATURE)) << "trigger #2"; - - eth->applyTriggerShape(); + ASSERT_EQ( 1, isTriggerConfigChanged(PASS_ENGINE_PARAMETER_SIGNATURE)) << "trigger #2"; + applyTriggerShape(); } void setupSimpleTestEngineWithMafAndTT_ONE_trigger(EngineTestHelper *eth, injection_mode_e injectionMode) { diff --git a/unit_tests/engine_test_helper.h b/unit_tests/engine_test_helper.h index c046aa957f..e7510888ed 100644 --- a/unit_tests/engine_test_helper.h +++ b/unit_tests/engine_test_helper.h @@ -28,6 +28,7 @@ class EngineTestHelper : public EngineTestHelperBase { public: EngineTestHelper(engine_type_e engineType); void applyTriggerShape(); + void setTriggerType(trigger_type_e trigger DECLARE_ENGINE_PARAMETER_SUFFIX); void fireRise(int delayMs); void fireFall(int delayMs); diff --git a/unit_tests/tests/test_trigger_decoder.cpp b/unit_tests/tests/test_trigger_decoder.cpp index c17346c83f..642b81b51e 100644 --- a/unit_tests/tests/test_trigger_decoder.cpp +++ b/unit_tests/tests/test_trigger_decoder.cpp @@ -1108,10 +1108,7 @@ TEST(big, testSparkReverseOrderBug319) { ASSERT_NEAR( 70, engine->sensors.clt, EPS4D) << "CLT"; - engineConfiguration->trigger.type = TT_ONE; - incrementGlobalConfigurationVersion(PASS_ENGINE_PARAMETER_SIGNATURE); - - eth.applyTriggerShape(); + eth.setTriggerType(TT_ONE PASS_ENGINE_PARAMETER_SUFFIX); eth.engine.periodicFastCallback(PASS_ENGINE_PARAMETER_SIGNATURE); setWholeTimingTable(0); diff --git a/unit_tests/tests/test_trigger_noiseless.cpp b/unit_tests/tests/test_trigger_noiseless.cpp index d4bc4e343a..1fd8dc015d 100644 --- a/unit_tests/tests/test_trigger_noiseless.cpp +++ b/unit_tests/tests/test_trigger_noiseless.cpp @@ -175,9 +175,7 @@ TEST(big, testNoiselessDecoder) { setupSimpleTestEngineWithMafAndTT_ONE_trigger(ð); // we'll test on 60-2 wheel - engineConfiguration->trigger.type = TT_TOOTHED_WHEEL_60_2; - incrementGlobalConfigurationVersion(PASS_ENGINE_PARAMETER_SIGNATURE); - eth.applyTriggerShape(); + eth.setTriggerType(TT_TOOTHED_WHEEL_60_2 PASS_ENGINE_PARAMETER_SUFFIX); ASSERT_EQ(0, engine->triggerCentral.triggerState.totalTriggerErrorCounter); ASSERT_EQ( 0, GET_RPM()) << "testNoiselessDecoder RPM";