Merge pull request #627 from meshtastic/payload_length_233

update payload max length
pull/533/merge v2.5.15
Ben Meadors 2024-11-25 10:28:00 -06:00 zatwierdzone przez GitHub
commit 02e6576efa
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
3 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -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

Wyświetl plik

@ -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;
}
/*

Wyświetl plik

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