mirror of
https://github.com/meshtastic/protobufs.git
synced 2026-04-20 22:13:55 +00:00
Update MeshPacket to describe if message was delayed for S&F
This commit is contained in:
parent
946a87f195
commit
334afc28ef
1 changed files with 25 additions and 0 deletions
25
mesh.proto
25
mesh.proto
|
|
@ -588,6 +588,26 @@ message MeshPacket {
|
|||
MAX = 127;
|
||||
}
|
||||
|
||||
/*
|
||||
* Identify if this is a delayed packet
|
||||
*/
|
||||
enum Delayed {
|
||||
/*
|
||||
* If unset, the message is being sent in real time.
|
||||
*/
|
||||
NO_DELAY = 0;
|
||||
|
||||
/*
|
||||
* The message is delayed and was originally a broadcast
|
||||
*/
|
||||
DELAYED_BROADCAST = 1;
|
||||
|
||||
/*
|
||||
* The message is delayed and was originally a direct message
|
||||
*/
|
||||
DELAYED_DIRECT = 2;
|
||||
}
|
||||
|
||||
/*
|
||||
* The sending node number.
|
||||
* Note: Our crypto implementation uses this field as well.
|
||||
|
|
@ -687,6 +707,11 @@ message MeshPacket {
|
|||
* rssi of received packet. Only sent to phone for dispay purposes.
|
||||
*/
|
||||
int32 rx_rssi = 13;
|
||||
|
||||
/*
|
||||
* Describe if this message is delayed
|
||||
*/
|
||||
Delayed delayed = 15;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue