mirror of
https://github.com/meshtastic/protobufs.git
synced 2026-04-20 22:13:55 +00:00
Add the ROUTER_LATE role & supporting fields (#632)
Will always rebroadcast packets, but will do so after all other modes. Intended for router nodes that are there to provide additional coverage in areas not already covered by other routers, or to bridge around problematic terrain, but should not be given priority over other routers in order to avoid unnecessarily consuming hops.
This commit is contained in:
parent
2cffaf53e3
commit
c55f120a9c
2 changed files with 16 additions and 0 deletions
|
|
@ -99,6 +99,15 @@ message Config {
|
|||
* Uses position module configuration to determine TAK PLI broadcast interval.
|
||||
*/
|
||||
TAK_TRACKER = 10;
|
||||
|
||||
/*
|
||||
* Description: Will always rebroadcast packets, but will do so after all other modes.
|
||||
* Technical Details: Used for router nodes that are intended to provide additional coverage
|
||||
* in areas not already covered by other routers, or to bridge around problematic terrain,
|
||||
* but should not be given priority over other routers in order to avoid unnecessaraily
|
||||
* consuming hops.
|
||||
*/
|
||||
ROUTER_LATE = 11;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -1272,6 +1272,13 @@ message MeshPacket {
|
|||
* Set by the firmware internally, clients are not supposed to set this.
|
||||
*/
|
||||
uint32 relay_node = 19;
|
||||
|
||||
/*
|
||||
* *Never* sent over the radio links.
|
||||
* Timestamp after which this packet may be sent.
|
||||
* Set by the firmware internally, clients are not supposed to set this.
|
||||
*/
|
||||
uint32 tx_after = 20;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue