mirror of
https://github.com/meshtastic/protobufs.git
synced 2026-04-20 22:13:55 +00:00
Add next_hop to NodeInfoLite
This commit is contained in:
parent
739a6d4af0
commit
40497bf8d4
2 changed files with 8 additions and 2 deletions
|
|
@ -10,8 +10,9 @@
|
|||
|
||||
*NodeInfoLite.channel int_size:8
|
||||
*NodeInfoLite.hops_away int_size:8
|
||||
*NodeInfoLite.next_hop int_size:8
|
||||
|
||||
*UserLite.long_name max_size:40
|
||||
*UserLite.short_name max_size:5
|
||||
*UserLite.public_key max_size:32 # public key
|
||||
*UserLite.macaddr max_size:6 fixed_length:true
|
||||
*UserLite.macaddr max_size:6 fixed_length:true
|
||||
|
|
@ -153,6 +153,11 @@ message NodeInfoLite {
|
|||
* Persists between NodeDB internal clean ups
|
||||
*/
|
||||
bool is_ignored = 11;
|
||||
|
||||
/*
|
||||
* Last byte of the node number of the node that should be used as the next hop to reach this node.
|
||||
*/
|
||||
uint32 next_hop = 12;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
@ -237,4 +242,4 @@ message ChannelFile {
|
|||
* NodeDB.cpp in the device code.
|
||||
*/
|
||||
uint32 version = 2;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue