pull/432/head
Ben Meadors 2024-02-07 16:42:54 -06:00
rodzic 5fca196a62
commit 703a85f4d8
2 zmienionych plików z 23 dodań i 9 usunięć

Wyświetl plik

@ -1,4 +1,4 @@
*Contact.callsign max_size:120
*Status.battery int_size:8
*PLI.course int_size:16
*GeoChat.message max_size:200

Wyświetl plik

@ -12,18 +12,22 @@ option swift_prefix = "";
*/
message TAKPacket
{
/*
* Are the payloads strings compressed for LoRA transport?
*/
boolean is_compressed = 1;
/*
* The contact / callsign for ATAK user
*/
Contact contact = 1;
Contact contact = 2;
/*
* The group for ATAK user
*/
Group group = 2;
Group group = 3;
/*
* The status of the ATAK EUD
*/
Status status = 5;
Status status = 4;
/*
* The payload of the packet
*/
@ -31,14 +35,24 @@ message TAKPacket
/*
* TAK position report
*/
PLI pli = 3;
PLI pli = 5;
/*
* Other binary data
* ATAK GeoChat message
*/
bytes data = 4;
GeoChat chat = 6;
}
}
/*
* ATAK GeoChat message
*/
message GeoChat {
/*
* The text message
*/
string message = 1;
}
/*
* ATAK Group
* <__group role='Team Member' name='Cyan'/>