From c2a3834e2400e419a1665c7395d2172bb9ccc7f9 Mon Sep 17 00:00:00 2001 From: GUVWAF Date: Thu, 7 Nov 2024 18:44:15 +0100 Subject: [PATCH] Add bool to enable LoRa transport for NeighborInfo --- meshtastic/module_config.proto | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/meshtastic/module_config.proto b/meshtastic/module_config.proto index 933d142f..f208d426 100644 --- a/meshtastic/module_config.proto +++ b/meshtastic/module_config.proto @@ -128,9 +128,14 @@ message ModuleConfig { /* * Interval in seconds of how often we should try to send our - * Neighbor Info to the mesh + * Neighbor Info (minimum is 14400, i.e., 4 hours) */ uint32 update_interval = 2; + + /* + * Whether in addition to sending it to MQTT and the PhoneAPI, our NeighborInfo should be transmitted over LoRa. + */ + bool transmit_over_lora = 3; } /*