auto-sync
This commit is contained in:
parent
c76d777922
commit
abca76b54b
|
@ -103,11 +103,14 @@ void Engine::init() {
|
|||
}
|
||||
|
||||
static bool stopPin(NamedOutputPin *output) {
|
||||
if (output->getLogicValue()) {
|
||||
#if EFI_PROD_CODE || defined(__DOXYGEN__)
|
||||
bool_t isInitialized = output->port != NULL;
|
||||
if (isInitialized && output->getLogicValue()) {
|
||||
output->setValue(false);
|
||||
scheduleMsg(&logger, "turning off %s", output->name);
|
||||
return true;
|
||||
}
|
||||
#endif
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue