From 6b9c05a69d6420d52f29372a151686a977389ab2 Mon Sep 17 00:00:00 2001 From: Th3maz1ng Date: Sun, 6 Jun 2021 18:04:24 +0200 Subject: [PATCH] Updated a delay value for testing purposes --- src/tests/WSPeripherals.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/WSPeripherals.cpp b/src/tests/WSPeripherals.cpp index 00c841a..068ab2f 100644 --- a/src/tests/WSPeripherals.cpp +++ b/src/tests/WSPeripherals.cpp @@ -108,7 +108,7 @@ void WSPeripherals::_3V3PowerRail(State state) { digitalWrite(_boardConfig.LDOEnable, state); if(state) //We let some time for the voltage to stabilize on the rail. - delay(2); + delay(10); } const RF24 &WSPeripherals::getRadio(){return _NRF;}