refactoring: better method name

This commit is contained in:
rusefi 2019-01-11 00:03:42 -05:00
parent fbaf5e183a
commit 7ffb3a2be0
3 changed files with 3 additions and 3 deletions

View File

@ -48,7 +48,7 @@ static void toggleTestAndScheduleNext() {
/**
* https://github.com/rusefi/rusefi/issues/557 common rail / direct injection scheduling control test
*/
void test557init(void) {
void runSchedulingPrecisionTestIfNeeded(void) {
if (engineConfiguration->test557pin == GPIO_UNASSIGNED ||
engineConfiguration->test557pin == GPIOA_0) {
return;

View File

@ -12,7 +12,7 @@
void setCustomEngineConfiguration(DECLARE_ENGINE_PARAMETER_SIGNATURE);
void setFrankenso_01_LCD(board_configuration_s *boardConfiguration);
void disableLCD(board_configuration_s *boardConfiguration);
void test557init(void);
void runSchedulingPrecisionTestIfNeeded(void);
void setFrankensoBoardTestConfiguration(DECLARE_ENGINE_PARAMETER_SIGNATURE);

View File

@ -222,7 +222,7 @@ void runRusEfi(void) {
#endif
startStatusThreads();
test557init();
runSchedulingPrecisionTestIfNeeded();
rememberCurrentConfiguration();