feat: add max flood hops configuration to repeater settings

This commit is contained in:
Lloyd
2026-04-22 13:52:40 +01:00
parent 827b9a9f98
commit 1626b3f307
5 changed files with 14 additions and 4 deletions
+1 -1
View File
@@ -413,7 +413,7 @@ class MeshCLI:
return f"> {interval}"
elif param == "flood.max":
max_flood = self.repeater_config.get("max_flood_hops", 3)
max_flood = self.repeater_config.get("max_flood_hops", 64)
return f"> {max_flood}"
elif param == "rxdelay":
+1 -1
View File
@@ -401,7 +401,7 @@ class MeshCLI:
return f"> {interval}"
elif param == "flood.max":
max_flood = self.repeater_config.get("max_flood_hops", 3)
max_flood = self.repeater_config.get("max_flood_hops", 64)
return f"> {max_flood}"
elif param == "rxdelay":