mirror of
https://github.com/meshtastic/protobufs.git
synced 2026-04-20 22:13:55 +00:00
Move node_broadcast_interval_secs to NeighborInfo
This commit is contained in:
parent
af693fe022
commit
869b483145
2 changed files with 6 additions and 7 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue