From 1c3ed70144eab6b939f1c758a48e3548d2202610 Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Fri, 28 Jul 2023 06:38:53 -0500 Subject: [PATCH] Add Neighbor.node_broadcast_interval_secs --- meshtastic/mesh.options | 1 + meshtastic/mesh.proto | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/meshtastic/mesh.options b/meshtastic/mesh.options index ad8bd71..c40b2d2 100644 --- a/meshtastic/mesh.options +++ b/meshtastic/mesh.options @@ -52,6 +52,7 @@ *Waypoint.description max_size:100 *NeighborInfo.neighbors max_count:10 +*Neighbor.node_broadcast_interval_secs max_size:16 *DeviceMetadata.firmware_version max_size:18 diff --git a/meshtastic/mesh.proto b/meshtastic/mesh.proto index f6e083f..ee7757d 100644 --- a/meshtastic/mesh.proto +++ b/meshtastic/mesh.proto @@ -1385,6 +1385,11 @@ message Neighbor { * SNR of last heard message */ float snr = 2; + + /* + * Broadcast interval of the represented node (in seconds) + */ + uint32 node_broadcast_interval_secs = 3; } /*