better method name

This commit is contained in:
rusefi 2020-01-10 23:09:38 -05:00
parent 36211a6738
commit f20967664d
1 changed files with 2 additions and 2 deletions

View File

@ -132,7 +132,7 @@ void seTurnPinHigh(InjectionEvent *event) {
}
}
static inline void tempTurnPinLow(InjectorOutputPin *output) {
static inline void turnInjectionPinLow(InjectorOutputPin *output) {
#if FUEL_MATH_EXTREME_LOGGING
printf("seTurnPinLow %s %d %d\r\n", output->name, output->overlappingCounter, (int)getTimeNowUs());
#endif /* FUEL_MATH_EXTREME_LOGGING */
@ -176,7 +176,7 @@ void seTurnPinLow(InjectionEvent *event) {
for (int i = 0;i<MAX_WIRES_COUNT;i++) {
InjectorOutputPin *output = event->outputs[i];
if (output != NULL) {
tempTurnPinLow(output);
turnInjectionPinLow(output);
}
}
#if EFI_UNIT_TEST