mirror of
https://github.com/meshtastic/protobufs.git
synced 2026-04-20 22:13:55 +00:00
Merge pull request #141 from mc-hamster/location
Add compressed payload variant
This commit is contained in:
commit
870a62b27e
2 changed files with 14 additions and 4 deletions
|
|
@ -12,6 +12,8 @@
|
|||
# note: this payload length is ONLY the bytes that are sent inside of the Data protobuf (excluding protobuf overhead). The 16 byte header is
|
||||
# outside of this envelope
|
||||
*Data.payload max_size:237
|
||||
*Data.payload_compressed max_size:237
|
||||
*Data.payloadVariant anonymous_oneof:true
|
||||
|
||||
# Big enough for 1.2.28.568032c-d
|
||||
*MyNodeInfo.firmware_version max_size:18
|
||||
|
|
|
|||
16
mesh.proto
16
mesh.proto
|
|
@ -638,10 +638,18 @@ message Data {
|
|||
*/
|
||||
PortNum portnum = 1;
|
||||
|
||||
/*
|
||||
* TODO: REPLACE
|
||||
*/
|
||||
bytes payload = 2;
|
||||
oneof payloadVariant {
|
||||
|
||||
/*
|
||||
* TODO: REPLACE
|
||||
*/
|
||||
bytes payload = 2;
|
||||
|
||||
/*
|
||||
* TODO: REPLACE
|
||||
*/
|
||||
bytes payload_compressed = 10;
|
||||
}
|
||||
|
||||
/*
|
||||
* Not normally used, but for testing a sender can request that recipient
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue