From bdebcf83ff4374814b2b81fc2417110643442acc Mon Sep 17 00:00:00 2001 From: Matt Way Date: Fri, 15 Dec 2023 22:40:20 +1100 Subject: [PATCH] Shorten delay after sending command --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index c05a732..1567105 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -146,7 +146,7 @@ void sendCommand(uint8_t *buffer) //transmit a command for (int i = 1; i < 200; i++) { radio.writeFast(buffer, bytecount); } - delay(500); + delay(100); radio.flush_tx(); radio.txStandBy(); }