Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added to_callsign to atak GeoChat #506

Merged
merged 2 commits into from
May 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion meshtastic/atak.options
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
*Status.battery int_size:8
*PLI.course int_size:16
*GeoChat.message max_size:200
*GeoChat.to max_size:120
*GeoChat.to max_size:120
*GeoChat.to_callsign max_size:120
5 changes: 5 additions & 0 deletions meshtastic/atak.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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 = 3;
}

/*
Expand Down