From 29fbfc2330076ec5bcd8e03b0380f1b0d3546ec8 Mon Sep 17 00:00:00 2001 From: GUVWAF Date: Sun, 30 Jul 2023 16:49:13 +0200 Subject: [PATCH] Add last_rx_time and node_broadcast_interval_secs to Neighbor --- meshtastic/mesh.proto | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/meshtastic/mesh.proto b/meshtastic/mesh.proto index da85c53..0e11d86 100644 --- a/meshtastic/mesh.proto +++ b/meshtastic/mesh.proto @@ -1390,6 +1390,18 @@ message Neighbor { * SNR of last heard message */ float snr = 2; + + /* + * Reception time (in secs since 1970) of last message that was last sent by this ID. + * Note: this is for local storage only and will not be sent out over the mesh. + */ + fixed32 last_rx_time = 3; + + /* + * Broadcast interval of this neighbor (in seconds). + * Note: this is for local storage only and will not be sent out over the mesh. + */ + uint32 node_broadcast_interval_secs = 4; } /*