From 17a1f299913249b65434aadf5f0aa657e274991c Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Mon, 18 Sep 2023 12:53:55 -0500 Subject: [PATCH] Hop limit overflow comments --- meshtastic/config.proto | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meshtastic/config.proto b/meshtastic/config.proto index 7ed6377..ae5cc16 100644 --- a/meshtastic/config.proto +++ b/meshtastic/config.proto @@ -758,6 +758,7 @@ message Config { /* * Maximum number of hops. This can't be greater than 7. * Default of 3 + * Attempting to set a value > 7 results in the default */ uint32 hop_limit = 8; @@ -861,4 +862,4 @@ message Config { LoRaConfig lora = 6; BluetoothConfig bluetooth = 7; } -} \ No newline at end of file +}