From 946a87f195834493df1337483285a8e4a5b0439c Mon Sep 17 00:00:00 2001 From: Jm Casler Date: Sat, 18 Dec 2021 15:49:07 -0500 Subject: [PATCH] New hop_limit config option --- radioconfig.proto | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/radioconfig.proto b/radioconfig.proto index d95ac13..c397d8b 100644 --- a/radioconfig.proto +++ b/radioconfig.proto @@ -575,6 +575,12 @@ message RadioConfig { * */ uint32 on_battery_shutdown_after_secs = 153; + + /* + * Overrides HOPS_RELIABLE and sets the maximum number of hops. This can't be greater than 7. + * + */ + uint32 hop_limit = 154; } UserPreferences preferences = 1;