raise softAP and UDP client limits to 10

This commit is contained in:
jess 2026-04-02 16:08:49 -07:00
parent a04163cade
commit 1ea5c760d7
1 changed files with 2 additions and 2 deletions

View File

@ -13,11 +13,11 @@
#define WIFI_SSID "EIS4" #define WIFI_SSID "EIS4"
#define WIFI_PASS "eis4data" #define WIFI_PASS "eis4data"
#define WIFI_CHANNEL 1 #define WIFI_CHANNEL 1
#define WIFI_MAX_CONN 4 #define WIFI_MAX_CONN 10
#define UDP_PORT 5941 #define UDP_PORT 5941
#define UDP_BUF_SIZE 128 #define UDP_BUF_SIZE 128
#define MAX_UDP_CLIENTS 4 #define MAX_UDP_CLIENTS 10
#define CLIENT_TIMEOUT_MS 30000 #define CLIENT_TIMEOUT_MS 30000
static int udp_sock = -1; static int udp_sock = -1;