do not set pinmode for disabled pins

This commit is contained in:
technyon
2024-07-07 04:45:41 +02:00
parent 576381fa7e
commit d11dc67291

View File

@@ -98,7 +98,6 @@ void Gpio::init()
Gpio2Go::configurePin(entry.pin, PinMode::InputPullup, InterruptMode::Change, 300);
break;
default:
pinMode(entry.pin, OUTPUT);
break;
}