From 84a60f4e62228a15c7b5a149f93fbe430d7555f4 Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Sun, 15 Sep 2024 19:24:15 -0500 Subject: [PATCH] Add generic detail payload variant to TAKPacket --- meshtastic/atak.options | 1 + meshtastic/atak.proto | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/meshtastic/atak.options b/meshtastic/atak.options index 6baa7ea8..cec1ca32 100644 --- a/meshtastic/atak.options +++ b/meshtastic/atak.options @@ -5,3 +5,4 @@ *GeoChat.message max_size:200 *GeoChat.to max_size:120 *GeoChat.to_callsign max_size:120 +*TAKPacket.detail max_size:220 \ No newline at end of file diff --git a/meshtastic/atak.proto b/meshtastic/atak.proto index ccde3359..2fbc2e53 100644 --- a/meshtastic/atak.proto +++ b/meshtastic/atak.proto @@ -40,6 +40,12 @@ message TAKPacket { * ATAK GeoChat message */ GeoChat chat = 6; + + /* + * Generic CoT detail XML + * May be compressed / truncated by the sender + */ + bytes detail = 7; } }