refactoring: better method name
This commit is contained in:
parent
bede52cbf7
commit
b4d9de3312
|
@ -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;
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
|
@ -222,7 +222,7 @@ void runRusEfi(void) {
|
|||
#endif
|
||||
startStatusThreads();
|
||||
|
||||
test557init();
|
||||
runSchedulingPrecisionTestIfNeeded();
|
||||
|
||||
rememberCurrentConfiguration();
|
||||
|
||||
|
|
Loading…
Reference in New Issue