auto-sync

This commit is contained in:
rusEfi 2014-10-14 15:03:06 -05:00
parent 6b197dceb6
commit cf5432301a
2 changed files with 6 additions and 1 deletions

View File

@ -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) {

View File

@ -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]));
}
}
}