Browse Source

* repeater: MAX_CLIENTS now defaults to 32

pull/293/head
Scott Powell 1 year ago
parent
commit
1680eb29aa
  1. 4
      examples/simple_repeater/main.cpp

4
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;

Loading…
Cancel
Save