From 4ef9dd400091b75dcf2e6867d771b1959bfc1993 Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Thu, 30 May 2024 06:53:03 -0500 Subject: [PATCH 1/2] Added to_callsign to atak GeoChat --- meshtastic/atak.options | 3 ++- meshtastic/atak.proto | 5 +++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/meshtastic/atak.options b/meshtastic/atak.options index c341400a..6baa7ea8 100644 --- a/meshtastic/atak.options +++ b/meshtastic/atak.options @@ -3,4 +3,5 @@ *Status.battery int_size:8 *PLI.course int_size:16 *GeoChat.message max_size:200 -*GeoChat.to max_size:120 \ No newline at end of file +*GeoChat.to max_size:120 +*GeoChat.to_callsign max_size:120 diff --git a/meshtastic/atak.proto b/meshtastic/atak.proto index 199f06bb..83996a43 100644 --- a/meshtastic/atak.proto +++ b/meshtastic/atak.proto @@ -56,6 +56,11 @@ message GeoChat { * Uid recipient of the message */ optional string to = 2; + + /* + * Callsign of the recipient for the message + */ + optional string to_callsign = 2; } /* From 7fbaa3c74cda31f9da034980e1367f4d1874aaa4 Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Thu, 30 May 2024 06:54:38 -0500 Subject: [PATCH 2/2] SpaghettiO --- meshtastic/atak.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshtastic/atak.proto b/meshtastic/atak.proto index 83996a43..ccde3359 100644 --- a/meshtastic/atak.proto +++ b/meshtastic/atak.proto @@ -60,7 +60,7 @@ message GeoChat { /* * Callsign of the recipient for the message */ - optional string to_callsign = 2; + optional string to_callsign = 3; } /*