auto-sync
This commit is contained in:
parent
fd9337da7b
commit
f50c0655e6
|
@ -181,6 +181,11 @@ static void onEvenyGeneralMilliseconds(void *arg) {
|
|||
engine.watchdog();
|
||||
engine.updateSlowSensors();
|
||||
|
||||
for (int i = 0; i < LE_COMMAND_COUNT; i++) {
|
||||
if (boardConfiguration->gpioPins[i] != GPIO_NONE) {
|
||||
}
|
||||
}
|
||||
|
||||
#if EFI_FUEL_PUMP
|
||||
if (boardConfiguration->fuelPumpPin != GPIO_NONE && engineConfiguration->isFuelPumpEnabled) {
|
||||
if (fuelPumpLogic == NULL) {
|
||||
|
|
|
@ -162,7 +162,7 @@ void printConfiguration(engine_configuration_s *engineConfiguration, engine_conf
|
|||
for (int i = 0; i < LE_COMMAND_COUNT; i++) {
|
||||
char * exp = boardConfiguration->le_formulas[i];
|
||||
if (exp[0] != 0) {
|
||||
scheduleMsg(&logger, "user out %d [%s]", i, exp);
|
||||
scheduleMsg(&logger, "user out %d [%s] at %s", i, exp, hwPortname(boardConfiguration->gpioPins[i]));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue