Engine runs we can disengage the starter #1795

This commit is contained in:
rusefi 2020-09-14 00:45:15 -04:00
parent 19c4c1eb6c
commit e3600a8f24
1 changed files with 3 additions and 0 deletions

View File

@ -343,6 +343,9 @@ void OutputPin::setValue(int logicValue) {
#else
if (port != GPIO_NULL) {
setPinValue(this, eValue, logicValue);
} else {
// even without physical pin sometimes it's nice to track logic pin value
currentLogicValue = logicValue;
}
#endif