[chirp_devel] [PATCH] [UV5R] RT-5R and RT-5RV: Remove "-" from Model Name
Jim Unroe
Wed Dec 23 14:41:01 PST 2020
# HG changeset patch
# User Jim Unroe <rock.unroe at gmail.com>
# Date 1608763210 18000
# Wed Dec 23 17:40:10 2020 -0500
# Node ID b8221f0c59f23cc7c0c9fa778baf6c59ba33fab8
# Parent a8d750ef4e80a9a1fda95eb4090c544af92252b8
[UV5R] RT-5R and RT-5RV: Remove "-" from Model Name
This patch removed the "-" from the radio's model name.
RT-5R ==> RT5R
FT-5RV ==> RT5RV
Requested by Retevis
Retevis was advised that CHIRP Radio Images (*.img) files saved from these
radios prior to this change will most likely not be recognized by CHIRP after
this change. Retevis said they understood and made the decision to proceed.
#8583
diff -r a8d750ef4e80 -r b8221f0c59f2 chirp/drivers/uv5r.py
--- a/chirp/drivers/uv5r.py Mon Dec 21 21:16:47 2020 -0500
+++ b/chirp/drivers/uv5r.py Wed Dec 23 17:40:10 2020 -0500
@@ -1748,12 +1748,12 @@
class RT5RAlias(chirp_common.Alias):
VENDOR = "Retevis"
- MODEL = "RT-5R"
+ MODEL = "RT5R"
class RT5RVAlias(chirp_common.Alias):
VENDOR = "Retevis"
- MODEL = "RT-5RV"
+ MODEL = "RT5RV"
class RT5Alias(chirp_common.Alias):
More information about the chirp_devel
mailing list