Changed wireless CMD_TIMEOUT from 100 to 10

This commit is contained in:
Rodrigo Alfonso 2024-08-26 23:47:57 -03:00
parent 5cc1d72361
commit 409a19cf58
2 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ class LinkRawWireless {
static constexpr int PING_WAIT = 50;
static constexpr int TRANSFER_WAIT = 15;
static constexpr int CMD_TIMEOUT = 100;
static constexpr int CMD_TIMEOUT = 10;
static constexpr int LOGIN_STEPS = 9;
static constexpr int COMMAND_HEADER = 0x9966;
static constexpr int RESPONSE_ACK = 0x80;

View File

@ -198,7 +198,7 @@ class LinkWireless {
static constexpr int PING_WAIT = 50;
static constexpr int TRANSFER_WAIT = 15;
static constexpr int BROADCAST_SEARCH_WAIT_FRAMES = 60;
static constexpr int CMD_TIMEOUT = 100;
static constexpr int CMD_TIMEOUT = 10;
static constexpr int LOGIN_STEPS = 9;
static constexpr int COMMAND_HEADER_VALUE = 0x9966;
static constexpr int RESPONSE_ACK_VALUE = 0x80;