PLEASE TEST move the power rail init earlier in the startup process on 4630

This commit is contained in:
Thomas Göttgens
2024-05-17 10:21:56 +02:00
parent 2244b0efec
commit 7ef9fec446
6 changed files with 20 additions and 11 deletions

View File

@@ -38,4 +38,8 @@ void initVariant()
pinMode(PIN_LED2, OUTPUT);
ledOff(PIN_LED2);
// 3V3 Power Rail
pinMode(PIN_3V3_EN, OUTPUT);
digitalWrite(PIN_3V3_EN, HIGH);
}