From ceb7a4b6185aabe20761746e7698e6ea3478c8bf Mon Sep 17 00:00:00 2001 From: Daniel Kucera Date: Sun, 26 Mar 2023 19:36:52 +0200 Subject: [PATCH] fix enable tx for v3 and v4 HW --- src/main.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 5852229..dc2c13f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -179,8 +179,11 @@ void loop() { if (handleNewClient(wifiServer, serverClients)){ enableTX(); } + if (handleNewClient(wifiServerEnh, enhClients)){ + enableTX(); + } + handleNewClient(wifiServerRO, serverClientsRO); - handleNewClient(wifiServerEnh, enhClients); //check clients for data for (int i = 0; i < MAX_SRV_CLIENTS; i++){