[chirp_devel] [PATCH] [BTech GMRS-V1] Add additional firmware fingerprint. #5625
# HG changeset patch # User Jim Unroe rock.unroe@gmail.com # Date 1551651629 18000 # Node ID 9021bcd38fec973136a192970437ee4b6e6ddfb5 # Parent 6eb12cbd259cf1957a051adb684cc92ee73f50d8 [BTech GMRS-V1] Add additional firmware fingerprint. #5625
diff -r 6eb12cbd259c -r 9021bcd38fec chirp/drivers/gmrsuv1.py --- a/chirp/drivers/gmrsuv1.py Sun Mar 03 16:46:40 2019 -0500 +++ b/chirp/drivers/gmrsuv1.py Sun Mar 03 17:20:29 2019 -0500 @@ -39,9 +39,10 @@ ##### ID strings #####################################################
# BTECH GMRS-V1 -GMRSV1_fp1 = "US32411" -GMRSV1_fp2 = "US32416" -GMRSV1_fp3 = "US32418" +GMRSV1_fp1 = "US32411" # original +GMRSV1_fp2 = "US32416" # original +GMRSV1_fp3 = "US32418" # new rules +GMRSV1_fp4 = "US32412" # original
DTMF_CHARS = "0123456789 *#ABCD" STEPS = [2.5, 5.0, 6.25, 10.0, 12.5, 20.0, 25.0, 50.0] @@ -97,7 +98,7 @@ MODEL = "GMRS-V1"
_fileid = [GMRSV1_fp3, GMRSV1_fp2, GMRSV1_fp1, ] - _is_orig = [GMRSV1_fp2, GMRSV1_fp1, ] + _is_orig = [GMRSV1_fp2, GMRSV1_fp1, GMRSV1_fp4, ]
_magic = [MSTRING_GMRSV1, ] _magic_response_length = 8
participants (1)
-
Jim Unroe