Shorten delay after sending command

This commit is contained in:
2023-12-15 22:40:20 +11:00
parent 194d1e96f3
commit bdebcf83ff

View File

@@ -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();
}