Skip to content

Commit 1680eb2

Browse files
author
Scott Powell
committed
* repeater: MAX_CLIENTS now defaults to 32
1 parent 6dc9920 commit 1680eb2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

examples/simple_repeater/main.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,9 @@ struct ClientInfo {
105105
uint8_t out_path[MAX_PATH_SIZE];
106106
};
107107

108-
#define MAX_CLIENTS 4
108+
#ifndef MAX_CLIENTS
109+
#define MAX_CLIENTS 32
110+
#endif
109111

110112
struct NeighbourInfo {
111113
mesh::Identity id;

0 commit comments

Comments
 (0)