Remove compression

This commit is contained in:
Ben Meadors 2024-02-07 09:53:31 -06:00
parent 57d65d69d4
commit ca5b4deaae
2 changed files with 3 additions and 13 deletions

View file

@ -1,4 +1,3 @@
*Contact.callsign_uncompressed max_size:120
*Contact.callsign_compressed max_size:64
*Contact.callsign max_size:120
*Status.battery int_size:8

View file

@ -176,18 +176,9 @@ message Status {
*/
message Contact {
/*
* Compressed or uncompressed callsign
* Callsign
*/
oneof callsign_variant {
/*
* Uncompressed callsign from ATAK
*/
string callsign_uncompressed = 1;
/*
* Compressed callsign using unishox2 for the wire
*/
string callsign_compressed = 2;
}
string callsign = 1;
/*
* IP address of endpoint in integer form (0.0.0.0 default)
*/