From 1680eb29aa99358f9e80c4fe038b2eee93522031 Mon Sep 17 00:00:00 2001 From: Scott Powell Date: Thu, 15 May 2025 20:36:09 +1000 Subject: [PATCH] * repeater: MAX_CLIENTS now defaults to 32 --- examples/simple_repeater/main.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/simple_repeater/main.cpp b/examples/simple_repeater/main.cpp index 6452137f..d272abb8 100644 --- a/examples/simple_repeater/main.cpp +++ b/examples/simple_repeater/main.cpp @@ -105,7 +105,9 @@ struct ClientInfo { uint8_t out_path[MAX_PATH_SIZE]; }; -#define MAX_CLIENTS 4 +#ifndef MAX_CLIENTS + #define MAX_CLIENTS 32 +#endif struct NeighbourInfo { mesh::Identity id;