Move node_broadcast_interval_secs to NeighborInfo

This commit is contained in:
Ben Meadors 2023-07-28 10:15:25 -05:00
parent af693fe022
commit 869b483145
2 changed files with 6 additions and 7 deletions

View file

@ -52,7 +52,6 @@
*Waypoint.description max_size:100
*NeighborInfo.neighbors max_count:10
*Neighbor.node_broadcast_interval_secs int_size:16
*DeviceMetadata.firmware_version max_size:18

View file

@ -1366,10 +1366,15 @@ message NeighborInfo {
* Field to pass neighbor info for the next sending cycle
*/
uint32 last_sent_by_id = 2;
/*
* Broadcast interval of the represented node (in seconds)
*/
uint32 node_broadcast_interval_secs = 3;
/*
* The list of out edges from this node
*/
repeated Neighbor neighbors = 3;
repeated Neighbor neighbors = 4;
}
/*
@ -1385,11 +1390,6 @@ message Neighbor {
* SNR of last heard message
*/
float snr = 2;
/*
* Broadcast interval of the represented node (in seconds)
*/
uint32 node_broadcast_interval_secs = 3;
}
/*