Merge pull request #375 from GUVWAF/neighborStore

Add last_rx_time and node_broadcast_interval_secs to Neighbor
This commit is contained in:
GUVWAF 2023-07-30 17:16:37 +02:00 committed by GitHub
commit da148f9ade
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}
/*