From 3b3f65b20ecb3ff2d2617cbaa008065ee262df1b Mon Sep 17 00:00:00 2001 From: Dave Behnke <916775+dbehnke@users.noreply.github.com> Date: Sat, 27 Dec 2025 14:53:11 -0500 Subject: [PATCH] fix(m17): allow numeric callsigns/IDs (fixes Unknown M17 packet for DroidStar/M17-259) --- reflector/Callsign.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reflector/Callsign.cpp b/reflector/Callsign.cpp index b4b9666..968efff 100644 --- a/reflector/Callsign.cpp +++ b/reflector/Callsign.cpp @@ -150,7 +150,7 @@ bool CCallsign::IsValid(void) const iNum++; } } - valid = valid && (iNum < 3); + // valid = valid && (iNum < 3); // Allow numeric callsigns (e.g. M17, DMR IDs) // all remaining char are letter, number or space for ( ; i < CALLSIGN_LEN; i++) {