From 9dacd6b2d038fc7449a011d86e35ea56b6be8408 Mon Sep 17 00:00:00 2001 From: vidplace7 Date: Tue, 9 Jun 2026 12:06:17 -0400 Subject: [PATCH] Add "Long_Name" to HamParameters Adds Long_Name HamParameters. This will be appended to the call_sign in firmware with a // delimter (following Amateur Radio best practices). Since the max length for a callsign is 8 and // uses two characters. The limit for HamParameter.long_name is set to 15 (10 less than traditional LongName). E.g. call_sign = N0CALL long_name = Attic Heltec v3 becomes N0CALL//Attic Heltec v3 --- meshtastic/admin.options | 1 + meshtastic/admin.proto | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/meshtastic/admin.options b/meshtastic/admin.options index f91dc1c7..3f94fe25 100644 --- a/meshtastic/admin.options +++ b/meshtastic/admin.options @@ -18,6 +18,7 @@ *HamParameters.call_sign max_size:8 *HamParameters.short_name max_size:5 +*HamParameters.long_name max_size:15 *NodeRemoteHardwarePinsResponse.node_remote_hardware_pins max_count:16 *LockdownAuth.passphrase max_size:32 diff --git a/meshtastic/admin.proto b/meshtastic/admin.proto index 27b6f9eb..cfbea729 100644 --- a/meshtastic/admin.proto +++ b/meshtastic/admin.proto @@ -691,6 +691,12 @@ message HamParameters { * Optional short name of user */ string short_name = 4; + + /* + * Optional long name of user + * Appended to callsign + */ + string long_name = 5; } /*