Merge pull request #627 from meshtastic/payload_length_233

update payload max length
This commit is contained in:
Ben Meadors 2024-11-25 10:28:00 -06:00 committed by GitHub
commit 02e6576efa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View file

@ -17,7 +17,7 @@
# 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 max_size:233
*Data.bitfield int_size:8
*NodeInfo.channel int_size:8
@ -62,7 +62,7 @@
# or fixed_length or fixed_count, or max_count
#This value may want to be a few bytes smaller to compensate for the parent fields.
*Compressed.data max_size:237
*Compressed.data max_size:233
*Waypoint.name max_size:30
*Waypoint.description max_size:100

View file

@ -1268,7 +1268,7 @@ enum Constants {
* 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_LEN = 237;
DATA_PAYLOAD_LEN = 233;
}
/*

View file

@ -1 +1 @@
*StoreAndForward.text max_size:237
*StoreAndForward.text max_size:233