Reduce parallel connections for stability

This commit is contained in:
jpirnay
2026-04-04 16:11:08 +02:00
parent 29b244b027
commit 9baded03ed
@@ -24,7 +24,7 @@ constexpr const char* AP_SSID = "CrossPoint-Reader";
constexpr const char* AP_PASSWORD = nullptr; // Open network for ease of use
constexpr const char* AP_HOSTNAME = "crosspoint";
constexpr uint8_t AP_CHANNEL = 1;
constexpr uint8_t AP_MAX_CONNECTIONS = 4;
constexpr uint8_t AP_MAX_CONNECTIONS = 2; // reduce from default 4 to save resources
constexpr int QR_CODE_WIDTH = 198;
constexpr int QR_CODE_HEIGHT = 198;