Skip to content

Commit

Permalink
fix enable tx for v3 and v4 HW
Browse files Browse the repository at this point in the history
  • Loading branch information
danielkucera committed Mar 26, 2023
1 parent a38ec60 commit ceb7a4b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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++){
Expand Down

0 comments on commit ceb7a4b

Please sign in to comment.