From 88861100f7881a09f88ac78ba21fd0975cd05f38 Mon Sep 17 00:00:00 2001 From: Matthew Poletiek Date: Sat, 19 Dec 2020 19:50:34 -0600 Subject: More driver fixes --- chirp/directory.py | 2 ++ chirp/drivers/ap510.py | 5 +++-- chirp/drivers/ft450d.py | 19 +++++++++++++++++-- chirp/drivers/leixen.py | 4 ++-- chirp/drivers/puxing_px888k.py | 15 ++++++++++++--- chirp/drivers/tk270.py | 2 +- chirp/drivers/tk760.py | 2 +- chirp/drivers/tk760g.py | 11 +++++++++-- chirp/drivers/ts850.py | 2 +- 9 files changed, 48 insertions(+), 14 deletions(-) diff --git a/chirp/directory.py b/chirp/directory.py index f79f23d..60c3813 100644 --- a/chirp/directory.py +++ b/chirp/directory.py @@ -227,3 +227,5 @@ def safe_import_drivers(limit=None): __import__('chirp.drivers.%s' % driver_module) except Exception as e: print('Failed to import %s: %s' % (module, e)) + #Use the below line for more information when troubleshooting + #traceback.print_exc() diff --git a/chirp/drivers/ap510.py b/chirp/drivers/ap510.py index f905d31..724e4e0 100644 --- a/chirp/drivers/ap510.py +++ b/chirp/drivers/ap510.py @@ -242,7 +242,8 @@ class AP510Memory(object): class AP510Memory20141215(AP510Memory): """Compatible with firmware version 20141215""" - ATTR_MAP = dict(AP510Memory.ATTR_MAP.items() + { + ATTR_MAP = dict(AP510Memory.ATTR_MAP.items()) + ATTR_MAP.update({ 'tx_volume': '21', # 1-6 'rx_volume': '22', # 1-9 'tx_power': '23', # 1: 1 watt, 0: 0.5 watt @@ -252,7 +253,7 @@ class AP510Memory20141215(AP510Memory): 'path3': '27', # like "WIDE1 1" else "0" 'multiple': '28', 'auto_on': '29', - }.items()) + }) def get_multiple(self): return dict(zip( diff --git a/chirp/drivers/ft450d.py b/chirp/drivers/ft450d.py index 12af6b8..4d49ea5 100644 --- a/chirp/drivers/ft450d.py +++ b/chirp/drivers/ft450d.py @@ -304,8 +304,23 @@ class FT450DRadio(yaesu_clone.YaesuCloneModeRadio): struct mem_struct current; """ - _CALLSIGN_CHARSET = [chr(x) for x in range(ord("0"), ord("9") + 1) + - range(ord("A"), ord("Z") + 1) + [ord(" ")]] + temp_list = [] + + for x in range(ord("0"),ord("9")+1): + temp_list.append(chr(x)) + + for x in range(ord("A"),ord("Z")+1): + temp_list.append(chr(x)) + + temp_list.append(chr(ord(" "))) + + #print(temp_list) + + #_CALLSIGN_CHARSET = [chr(x) for x in range(ord("0"), ord("9") + 1) + + # range(ord("A"), ord("Z") + 1) + [ord(" ")]] + + _CALLSIGN_CHARSET = temp_list + _CALLSIGN_CHARSET_REV = dict(zip(_CALLSIGN_CHARSET, range(0, len(_CALLSIGN_CHARSET)))) diff --git a/chirp/drivers/leixen.py b/chirp/drivers/leixen.py index fd580d4..e9a39d6 100644 --- a/chirp/drivers/leixen.py +++ b/chirp/drivers/leixen.py @@ -226,8 +226,8 @@ PFKEYSHORT_LIST = ["OFF", ] MODES = ["NFM", "FM"] -WTFTONES = map(float, xrange(56, 64)) -TONES = WTFTONES + chirp_common.TONES +WTFTONES = map(float, range(56, 64)) +TONES = list(WTFTONES) + chirp_common.TONES DTCS_CODES = [17, 50, 645] + chirp_common.DTCS_CODES DTCS_CODES.sort() TMODES = ["", "Tone", "DTCS", "DTCS"] diff --git a/chirp/drivers/puxing_px888k.py b/chirp/drivers/puxing_px888k.py index 78f49a6..63499fe 100644 --- a/chirp/drivers/puxing_px888k.py +++ b/chirp/drivers/puxing_px888k.py @@ -527,7 +527,11 @@ BACKLIGHT_MODES = ["Off", "Auto", "On"] TONE_RESET_TIME = ['Off'] + ['%ds' % x for x in range(1, 256)] DTMF_TONE_RESET_TIME = TONE_RESET_TIME[0:16] -DTMF_GROUPS = zip(["Off", "A", "B", "C", "D", "*", "#"], [255]+range(10, 16)) +temp_list = [255] +for x in range(10,16): + temp_list.append(x) + +DTMF_GROUPS = zip(["Off", "A", "B", "C", "D", "*", "#"], temp_list) FIVE_TONE_STANDARDS = ['ZVEI1', 'ZVEI2', 'CCIR1', 'CCITT'] # should mimic the defaults in the memedit MemoryEditor somewhat @@ -540,13 +544,18 @@ SANE_MEMORY_DEFAULT = b"\x14\x61\x00\x00\x14\x61\x00\x00" + \ # these two option sets are listed differently like this in the stock software, # so I'm keeping them separate for now if they are in fact identical # in behaviour, that should probably be amended +temp_list = [255] +for x in range(1,4): + temp_list.append(x) + DTMF_ALERT_TRANSPOND = zip(['Off', 'Call alert', 'Transpond-alert', 'Transpond-ID code'], - [255]+range(1, 4)) + temp_list) + FIVE_TONE_ALERT_TRANSPOND = zip(['Off', 'Alert tone', 'Transpond', 'Transpond-ID code'], - [255]+range(1, 4)) + temp_list) BFM_BANDS = ['87.5-108MHz', '76.0-91.0MHz', '76.0-108.0MHz', '65.0-76.0MHz'] BFM_STRIDE = ['100kHz', '50kHz'] diff --git a/chirp/drivers/tk270.py b/chirp/drivers/tk270.py index b7927d2..89961ee 100644 --- a/chirp/drivers/tk270.py +++ b/chirp/drivers/tk270.py @@ -96,7 +96,7 @@ struct { MEM_SIZE = 0x400 BLOCK_SIZE = 8 -MEM_BLOCKS = range(0, (MEM_SIZE / BLOCK_SIZE)) +MEM_BLOCKS = range(0, int(int(MEM_SIZE) / BLOCK_SIZE)) ACK_CMD = "\x06" TIMEOUT = 0.05 # from 0.03 up it' s safe, we set in 0.05 for a margin diff --git a/chirp/drivers/tk760.py b/chirp/drivers/tk760.py index c9a2ff1..c272574 100644 --- a/chirp/drivers/tk760.py +++ b/chirp/drivers/tk760.py @@ -97,7 +97,7 @@ KEYS = { MEM_SIZE = 0x400 BLOCK_SIZE = 8 -MEM_BLOCKS = range(0, (MEM_SIZE / BLOCK_SIZE)) +MEM_BLOCKS = range(0, int((int(MEM_SIZE) / BLOCK_SIZE))) ACK_CMD = "\x06" # from 0.03 up it' s safe # I have to turn it up, some users reported problems with this, was 0.05 diff --git a/chirp/drivers/tk760g.py b/chirp/drivers/tk760g.py index 212eb73..6e62c19 100644 --- a/chirp/drivers/tk760g.py +++ b/chirp/drivers/tk760g.py @@ -264,12 +264,19 @@ struct { MEM_SIZE = 0x8000 # 32,768 bytes BLOCK_SIZE = 256 BLOCKS = MEM_SIZE / BLOCK_SIZE -MEM_BLOCKS = range(0, BLOCKS) +MEM_BLOCKS = range(0, int(BLOCKS)) # define and empty block of data, as it will be used a lot in this code EMPTY_BLOCK = "\xFF" * 256 -RO_BLOCKS = range(0x10, 0x1F) + range(0x59, 0x5f) +RO_BLOCKS = [] +for x in range(0x10,0x1F): + RO_BLOCKS.append(x) + +for x in range(0x59,0x5f): + RO_BLOCKS.append(x) + +#RO_BLOCKS = range(0x10, 0x1F) + range(0x59, 0x5f) ACK_CMD = "\x06" POWER_LEVELS = [chirp_common.PowerLevel("Low", watts=1), diff --git a/chirp/drivers/ts850.py b/chirp/drivers/ts850.py index 4520aca..746a94d 100644 --- a/chirp/drivers/ts850.py +++ b/chirp/drivers/ts850.py @@ -37,7 +37,7 @@ TS850_MODES = { "CW-R": "7", "FSK-R": "9", } -TS850_MODES_REV = {val: mode for mode, val in TS850_MODES.iteritems()} +TS850_MODES_REV = {val: mode for mode, val in TS850_MODES.items()} TS850_TONES = list(chirp_common.OLD_TONES) TS850_TONES.remove(69.3) -- cgit v1.2.3 From 5d151ab06f09b8d450d2a93a883b91a58c902351 Mon Sep 17 00:00:00 2001 From: Matthew Poletiek Date: Sat, 19 Dec 2020 22:25:07 -0600 Subject: Adding Radio List --- RADIOS.md | 505 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 505 insertions(+) create mode 100644 RADIOS.md diff --git a/RADIOS.md b/RADIOS.md new file mode 100644 index 0000000..66d42d8 --- /dev/null +++ b/RADIOS.md @@ -0,0 +1,505 @@ +# List of Supported Radios (Tested and Untested) + +Below is a list of radios that are known to work with the original CHIRP program. + +Radios marked `TESTED` are known to work with the current release of py3-CHIRP. + +## Radios + +# Abbree + + - AR-F3 (use Baofeng UV-82III) + - AR-F8 (use Wouxun KG-UV8D) + +# Alinco + + - DJ-175T + - DJ-596T + - DJ-G7EG + - DR-03T + - DR-06T + - DR-135T + - DR-235T + - DR-435T + +# Ansoko + + - A-5R + - A-8S + +# AnyTone + + - AT-778UV + - AT-5888UV + - OBLTR-8R + - TERMN-8R + +# Arcshell + + - AR-5 + - AR-6 + - AR-7 (use Radtel T18) + +# Baiston + + - BST-2100 (use Baofeng BF-888) + +# Baofeng/Pofung + + - 997-S (Foscam Digital Technologies) (use UV-5R) + - B-580T (use UV-5R) + - BF-88E (use BF-888S) + - BF-666S/777S/888S + - BF-9100 (use BF/T1) + - BF-A58, BF-A58S + - BF-C2 (use BF-888S) + - BF-E500S (use UV-5R) + - BF-F8, F8+ (use UV-5R) + - BF-F8+III (use Radioddity UV-5RX3) + - BF-F8HP (3 power levels) `TESTED` + - BF-F9 (use UV-5R) + - BF-F9V2+ (use BF-F8HP) + - BF-F11 (use UV-5R) + - BF-R3 (use Radioddity UV-5RX3) + - BF-R5 Mini (use BF-888S) + - BF-S5 Plus (use UV-82III) + - BF-T1 + - BF-UV9R+HP (use UV-82WP) + - BF-UV10R (use BF-F8HP 3 power levels) + - BF-UVF10 (use BF-A58S) + - BF-UVB2+ (use UV-5R) + - BF-V9 (use BF-888) + - BF-V85 (use UV-B5) + - F-11 (use UV-B5) + - FF-12P (use UV-5R) + - GT-1 (use BF-888S) + - GT-3, GT-3 MK II (use UV-5R) + - GT-3TP (use BF-F8HP) + - GT-3WP + - GT-5 (use UV-82) + - GT-5TP (use UV-82HP) + - Mini (use BF-T1) + - UV-3R + - UV-5R and variants (2 power levels) + - UV-5R V2+, UV-5R2 (use UV-5R) + - UV-5R+ (use BF-F8HP) + - UV-5R++ (use UV-5R) + - UV-5R7W (use BF-F8HP) + - UV-5RA, UV-5RA+, UV-5RAX, UV-5RAX+ (use UV-5R) + - UV-5RB (use UV-5R) + - UV-5RC, UV-5RC, UV-5RCX+ (use UV-5R) + - UV-5RD (use UV-5R) + - UV-5RE, UV-5RE+ (use UV-5R) + - UV-5RG, RK, RQ, RS, RT, RU (use UV-5R) + - UV-5RHP (use BF-F8HP) + - UV-5RIII (use Radioddity UV-5RX3) + - UV-5RM HP (use BF-F8HP) + - UV-5RTP (use BF-F8HP) + - UV-5RWP (use UV-82WP) + - UV-5RX3 (use Radioddity UV-5RX3) + - UV-5S, 5X (use UV-5R) + - UV-5XP + - UV-6 + - UV-6R + - UV-8R (use UV-82HP) + - UV-9R/9R PLUS/9R ERA + - UV-9S (use Radioddity UV-5RX3) + - UV-9X+ (use UV-82HP) + - UV-59T (use Radioddity UV-5RX3) + - UV-82/82C/82L/82X + - UV-82HP/82DX/82HX (3 power levels) + - UV-82III (1 x PTT) + - UV-82III (2 x PTT) (use Radioddity UV-82X3) + - UV-82T (use Radioddity UV-82X3) + - UV-82WP + - UV-82X3 (use Radioddity UV-82X3) + - UV-920 (use UV-5R) + - UV-B2 (use UV-82) + - UV-B2+, B3+ (use UV-5R) + - UV-B5, B6 + - UV-S9 (use BF-F8HP) + - UV-S9T (use Radioddity UV-5RX3) + - UV-X9 (use UV-82HP) + +# Baojie + + - BJ-218 (Variant of Luiton LT-725uv) + - BJ-318 (use Baojie BJ-218) + - BJ-9900 + - BJ-UV55 + +# Boblov + + - X3+ + +# BTech + + - GMRS-50X1 + - GMRS-V1 + - MURS-V1 + - UV-2501 + - UV-2501+220 + - UV-25X2 + - UV-25X4 + - UV-5001 + - UV-50X2 + - UV-50X3 + - UV-5X3 + +# Cignus + + - UV-85 (use Baofeng UV-5R) + - UV-87 (use TYT TH-UV88) + +# CRT + + - Micron UV (Variant of Anytone AT-778UV) + +# eSYNiC + + - ESY-88 (Variant of Baofeng BF-888s) + +# Feidaxin + + - FD-150A + - FD-160A + - FD-268A, B + - FD-288A, B + - FD-450A + - FD-460A, UH + +# Greaval + + - GV-8S + - GV-9S + +# Hesenate + + - BJ-218 (Variant of Luiton LT-725uv) + - HT-5RX3 (use Radioddity UV-5RX3) + - HT-U222 (use Retevis RT22) + +# HobbyPCB + + - RS-UV3 + +# Icom + + - IC-80AD + - IC-91, IC-92AD + - IC-208H + - IC-746 + - IC-910H + - IC-2100H + - IC-2200H + - IC-2300H + - IC-2720H + - IC-2730A + - IC-2820H + - IC-7000 + - IC-7100 + - IC-7200 + - IC-E90 + - IC-P7 + - IC-Q7A + - IC-T70 + - IC-T7H + - IC-T8A + - IC-T90 + - IC-V82, IC-U82 + - IC-V86 + - IC-W32A, E + - ID-31A + - ID-51, ID-51+ + - ID-80H + - ID-800H + - ID-880H + - ID-RPx000V/RP2x + +# Intek + + - HR-2040 (use Anytone AT-5888UB) + - KT-980HP (Variant of Baofeng UV-5R) + +# Jetstream + + - JT220M + - JT270M, MH + - JT2705M (Variant of Waccom Mini 8900) + +# Juentai + + - JT-6188 Mini (Variant of QYT KT8900) + - JT-6188 Plus (Variant of Waccom Mini 8900) + +# Kenwood + + - TH-D7, TH-D7G + - TH-D72 + - TH-F6 + - TH-F7 + - TH-G71 + - TH-K2 + - TK-260/270/272/278 + - TK-260G/270G/272G/278G + - TK-360/370/372/378 + - TK-360G/370G/372G/378G/388G + - TK-760/762/768 + - TK-760G/762G/768G + - TK-860/862/868 + - TK-860G/862G/868G + - TK-7102/8102/7108/8108 + - TK-2180/3180/7180/8180 + - TM-271 + - TM-281 + - TM-471 + - TM-D700 + - TM-D710, TM-D710G + - TM-G707 + - TM-V7 + - TM-V71 + - TS-480HX/SAT + - TS-590S/SG + - TS-850 + - TS-2000 + +# KYD + + - IP-620 + - NC-630A + +# Leadzm + + - LE-C2 (Variant of Baofeng BF-C2) + +# Leixen + + - VV-898, VV-898S, VV-898E + +# Luiton + + - LT-316 (Variant of Retevis RT22) + - LT-580 VHF, UHF + - LT-588UV (Variant of QYT KT8900) + - LT-725UV + - LT-898UV (Variant of Leixen VV-898) + +# Midland + + - DBR2500 (Variant of Anytone AT-778UV) + +# MTC + + - UV-5R-3 + +# NKTech + + - UV-7RX (use Retevis RT6) + +# Plant-Tours + + - MT-700 + +# Pofung + + - (see Baofeng) + +# Polmar + + - DB-50M (use Anytone AT-5888UV) + +# Powerwerx + + - DB-750X (use Anytone AT-5888UV) + +# Puxing + + - PX-2R (UHF) + - PX-777 + - PX-888K + +# QYT + + - KT980+ (same as KT-8900D) + - KT7900D + - KT8900 (same as KT-8900) + - KT8900R + - KT8900D + - KT-8R + - KT-UV980 (Variant of Waccom Mini 8900) + +# R&L Electronics + + - UV-5R 3 band (use Radioddity UV-5RX3) + +# Radioddity + + - DB25 (Variant of QYT KT8900D) + - GA-2S + - GA-5S + - GA-510 + - QB25 + - R2 + - UV-5R EX + - UV-5RX3 + - UV-82X3 + +# Radtel + + - RT-10 (use Retevis RT22) + - T18 + +# Retevis + + - H-777 (use Baofeng BF-888) + - RT1 + - RT5 with 2 power levels (use Baofeng UV-5R) + - RT5 with 3 power levels (variant of Baofeng BF-F8HP) + - RT-5R, RT-5RV (Variants of Baofeng UV-5R) + - RT6 + - RT21 + - RT22 + - RT23 + - RT24 + - RT26 + - RT95 (Variant of Anytone AT-778UV) + - RT-B6 (use Baofeng UV-B5) + +# Rugged Radios + + - RH5R, RH5R-V2 (use Baofeng UV-5R) + - RH5X (Variant of Baofeng BF-A58) + +# Sainsonic + + - GT-3TP (use Baofeng BF-F8HP) + - GT-890 (Variant of QYT KT8900) + +# Standard Horizon + + - (see Yaesu) + +# Surecom + + - KT8900D (Variant of QYT KT7900D) + +# Tacklife + + - MTR01 (use Radioddity R2) + +# TDXone + + - TD-Q8A + +# TechSide + + - TI-F8+ (Variant of the Baofeng BF-F8HP) + +# Tenway + + - TW-325 + - UV-5R Pro (Variant of the Baofeng BF-F8HP) + - UV-82 Pro + +# TIDRADIO + + - BF-F8TD (use TD-UV5R TriPower) + - TD-UV5R TriPower + - TD-H6 + +# TID + + - TD-M8 + +# Tonfa + + - UV-985 (use Baofeng UV-5R) + +# TYT + + - TH-350 + - TH-7800 + - TH-9000 (each 144, 220, 440) + - TH-9800 + - TH-UV3R, TH-UV3R-25 + - TH-UV8000D/E + - TH-UV88 + - TH-UVF1 + - TH-UVF8D + +# Vero + + - UV-E5, UV-E5 MK II (use Baofeng UV-5R) + +# Vertex Standard + + - (see Yaesu) + +# Waccom + + - MINI-8900 + +# WLN + + - KD-C1 (Variant of Retevis RT22) + +# Wouxun + + - KG-816/818 + - KG-UVD1P/UV2D/UV3D + - KG-UV6D/UV6X + - KG-UV7D (use KG-UV6) + - KG-UV8D + - KG-UV8D Plus + - KG-UV8E + - KG-UV8T + - KG-UV9D Plus + - KG-UVD1P + +# Yaesu + + - FT-1D + - FT-2D + - FT-3D + - FT-4VR + - FT-4XE, R + - FT-25R + - FT-50R + - FT-60R + - FT-65E, R + - FT-70D + - FT-90R + - FT-450D + - FT-817/ND + - FT-818/ND + - FT-857/D + - FT-897 + - FT-1500M + - FT-1802M + - FT-2800M + - FT-1900R/2900M + - FT-7100M + - FT-7800/7900 + - FT-8100 + - FT-8800 + - FT-8900 + - FTM-350 + - FTM-3100 (use FTM-3200D selection) + - FTM-3200D + - VX-2R + - VX-3R + - VX-5R + - VX-6, 6R + - VX-7R + - VX-8, 8R, 8D, 8G + - VX-170 + - VXA-700 + +# Zastone + + - BJ-218 (Variant of Luiton LT-725uv) + - MP-300 (Variant of QYT KT8900) + - MP-380 (use QYT KT8900D) + - MP-800 (use TYT TH-9800) + - ZT-V8, V8A, V8A+ (use Baofeng UV-R5) + - ZT-X6 (Variant of Retevis RT22) -- cgit v1.2.3 From f7ce500bf6c47d5a62c8599950f84732990669c1 Mon Sep 17 00:00:00 2001 From: Matthew Poletiek Date: Sat, 19 Dec 2020 22:27:19 -0600 Subject: Adding Radio List --- RADIOS.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/RADIOS.md b/RADIOS.md index 66d42d8..614037d 100644 --- a/RADIOS.md +++ b/RADIOS.md @@ -8,24 +8,24 @@ Radios marked `TESTED` are known to work with the current release of py3-CHIRP. # Abbree - - AR-F3 (use Baofeng UV-82III) - - AR-F8 (use Wouxun KG-UV8D) +- AR-F3 (use Baofeng UV-82III) +- AR-F8 (use Wouxun KG-UV8D) # Alinco - - DJ-175T - - DJ-596T - - DJ-G7EG - - DR-03T - - DR-06T - - DR-135T - - DR-235T - - DR-435T +- DJ-175T +- DJ-596T +- DJ-G7EG +- DR-03T +- DR-06T +- DR-135T +- DR-235T +- DR-435T # Ansoko - - A-5R - - A-8S +- A-5R +- A-8S # AnyTone @@ -46,9 +46,9 @@ Radios marked `TESTED` are known to work with the current release of py3-CHIRP. # Baofeng/Pofung - - 997-S (Foscam Digital Technologies) (use UV-5R) - - B-580T (use UV-5R) - - BF-88E (use BF-888S) +- 997-S (Foscam Digital Technologies) (use UV-5R) +- B-580T (use UV-5R) +- BF-88E (use BF-888S) - BF-666S/777S/888S - BF-9100 (use BF/T1) - BF-A58, BF-A58S -- cgit v1.2.3 From e26e16b03f6ad46a043dd7ae2b614e44d804434b Mon Sep 17 00:00:00 2001 From: Matthew Poletiek Date: Sat, 19 Dec 2020 22:35:48 -0600 Subject: Adding Radio List --- RADIOS.md | 618 +++++++++++++++++++++++++++++++------------------------------- 1 file changed, 309 insertions(+), 309 deletions(-) diff --git a/RADIOS.md b/RADIOS.md index 614037d..4ed0ebf 100644 --- a/RADIOS.md +++ b/RADIOS.md @@ -29,477 +29,477 @@ Radios marked `TESTED` are known to work with the current release of py3-CHIRP. # AnyTone - - AT-778UV - - AT-5888UV - - OBLTR-8R - - TERMN-8R +- AT-778UV +- AT-5888UV +- OBLTR-8R +- TERMN-8R # Arcshell - - AR-5 - - AR-6 - - AR-7 (use Radtel T18) +- AR-5 +- AR-6 +- AR-7 (use Radtel T18) # Baiston - - BST-2100 (use Baofeng BF-888) +- BST-2100 (use Baofeng BF-888) # Baofeng/Pofung - 997-S (Foscam Digital Technologies) (use UV-5R) - B-580T (use UV-5R) - BF-88E (use BF-888S) - - BF-666S/777S/888S - - BF-9100 (use BF/T1) - - BF-A58, BF-A58S - - BF-C2 (use BF-888S) - - BF-E500S (use UV-5R) - - BF-F8, F8+ (use UV-5R) - - BF-F8+III (use Radioddity UV-5RX3) - - BF-F8HP (3 power levels) `TESTED` - - BF-F9 (use UV-5R) - - BF-F9V2+ (use BF-F8HP) - - BF-F11 (use UV-5R) - - BF-R3 (use Radioddity UV-5RX3) - - BF-R5 Mini (use BF-888S) - - BF-S5 Plus (use UV-82III) - - BF-T1 - - BF-UV9R+HP (use UV-82WP) - - BF-UV10R (use BF-F8HP 3 power levels) - - BF-UVF10 (use BF-A58S) - - BF-UVB2+ (use UV-5R) - - BF-V9 (use BF-888) - - BF-V85 (use UV-B5) - - F-11 (use UV-B5) - - FF-12P (use UV-5R) - - GT-1 (use BF-888S) - - GT-3, GT-3 MK II (use UV-5R) - - GT-3TP (use BF-F8HP) - - GT-3WP - - GT-5 (use UV-82) - - GT-5TP (use UV-82HP) - - Mini (use BF-T1) - - UV-3R - - UV-5R and variants (2 power levels) - - UV-5R V2+, UV-5R2 (use UV-5R) - - UV-5R+ (use BF-F8HP) - - UV-5R++ (use UV-5R) - - UV-5R7W (use BF-F8HP) - - UV-5RA, UV-5RA+, UV-5RAX, UV-5RAX+ (use UV-5R) - - UV-5RB (use UV-5R) - - UV-5RC, UV-5RC, UV-5RCX+ (use UV-5R) - - UV-5RD (use UV-5R) - - UV-5RE, UV-5RE+ (use UV-5R) - - UV-5RG, RK, RQ, RS, RT, RU (use UV-5R) - - UV-5RHP (use BF-F8HP) - - UV-5RIII (use Radioddity UV-5RX3) - - UV-5RM HP (use BF-F8HP) - - UV-5RTP (use BF-F8HP) - - UV-5RWP (use UV-82WP) - - UV-5RX3 (use Radioddity UV-5RX3) - - UV-5S, 5X (use UV-5R) - - UV-5XP - - UV-6 - - UV-6R - - UV-8R (use UV-82HP) - - UV-9R/9R PLUS/9R ERA - - UV-9S (use Radioddity UV-5RX3) - - UV-9X+ (use UV-82HP) - - UV-59T (use Radioddity UV-5RX3) - - UV-82/82C/82L/82X - - UV-82HP/82DX/82HX (3 power levels) - - UV-82III (1 x PTT) - - UV-82III (2 x PTT) (use Radioddity UV-82X3) - - UV-82T (use Radioddity UV-82X3) - - UV-82WP - - UV-82X3 (use Radioddity UV-82X3) - - UV-920 (use UV-5R) - - UV-B2 (use UV-82) - - UV-B2+, B3+ (use UV-5R) - - UV-B5, B6 - - UV-S9 (use BF-F8HP) - - UV-S9T (use Radioddity UV-5RX3) - - UV-X9 (use UV-82HP) +- BF-666S/777S/888S +- BF-9100 (use BF/T1) +- BF-A58, BF-A58S +- BF-C2 (use BF-888S) +- BF-E500S (use UV-5R) +- BF-F8, F8+ (use UV-5R) +- BF-F8+III (use Radioddity UV-5RX3) +- BF-F8HP (3 power levels) `TESTED` +- BF-F9 (use UV-5R) +- BF-F9V2+ (use BF-F8HP) +- BF-F11 (use UV-5R) +- BF-R3 (use Radioddity UV-5RX3) +- BF-R5 Mini (use BF-888S) +- BF-S5 Plus (use UV-82III) +- BF-T1 +- BF-UV9R+HP (use UV-82WP) +- BF-UV10R (use BF-F8HP 3 power levels) +- BF-UVF10 (use BF-A58S) +- BF-UVB2+ (use UV-5R) +- BF-V9 (use BF-888) +- BF-V85 (use UV-B5) +- F-11 (use UV-B5) +- FF-12P (use UV-5R) +- GT-1 (use BF-888S) +- GT-3, GT-3 MK II (use UV-5R) +- GT-3TP (use BF-F8HP) +- GT-3WP +- GT-5 (use UV-82) +- GT-5TP (use UV-82HP) +- Mini (use BF-T1) +- UV-3R +- UV-5R and variants (2 power levels) +- UV-5R V2+, UV-5R2 (use UV-5R) +- UV-5R+ (use BF-F8HP) +- UV-5R++ (use UV-5R) +- UV-5R7W (use BF-F8HP) +- UV-5RA, UV-5RA+, UV-5RAX, UV-5RAX+ (use UV-5R) +- UV-5RB (use UV-5R) +- UV-5RC, UV-5RC, UV-5RCX+ (use UV-5R) +- UV-5RD (use UV-5R) +- UV-5RE, UV-5RE+ (use UV-5R) +- UV-5RG, RK, RQ, RS, RT, RU (use UV-5R) +- UV-5RHP (use BF-F8HP) +- UV-5RIII (use Radioddity UV-5RX3) +- UV-5RM HP (use BF-F8HP) +- UV-5RTP (use BF-F8HP) +- UV-5RWP (use UV-82WP) +- UV-5RX3 (use Radioddity UV-5RX3) +- UV-5S, 5X (use UV-5R) +- UV-5XP +- UV-6 +- UV-6R +- UV-8R (use UV-82HP) +- UV-9R/9R PLUS/9R ERA +- UV-9S (use Radioddity UV-5RX3) +- UV-9X+ (use UV-82HP) +- UV-59T (use Radioddity UV-5RX3) +- UV-82/82C/82L/82X +- UV-82HP/82DX/82HX (3 power levels) +- UV-82III (1 x PTT) +- UV-82III (2 x PTT) (use Radioddity UV-82X3) +- UV-82T (use Radioddity UV-82X3) +- UV-82WP +- UV-82X3 (use Radioddity UV-82X3) +- UV-920 (use UV-5R) +- UV-B2 (use UV-82) +- UV-B2+, B3+ (use UV-5R) +- UV-B5, B6 +- UV-S9 (use BF-F8HP) +- UV-S9T (use Radioddity UV-5RX3) +- UV-X9 (use UV-82HP) # Baojie - - BJ-218 (Variant of Luiton LT-725uv) - - BJ-318 (use Baojie BJ-218) - - BJ-9900 - - BJ-UV55 +- BJ-218 (Variant of Luiton LT-725uv) +- BJ-318 (use Baojie BJ-218) +- BJ-9900 +- BJ-UV55 # Boblov - - X3+ +- X3+ # BTech - - GMRS-50X1 - - GMRS-V1 - - MURS-V1 - - UV-2501 - - UV-2501+220 - - UV-25X2 - - UV-25X4 - - UV-5001 - - UV-50X2 - - UV-50X3 - - UV-5X3 +- GMRS-50X1 +- GMRS-V1 +- MURS-V1 +- UV-2501 +- UV-2501+220 +- UV-25X2 +- UV-25X4 +- UV-5001 +- UV-50X2 +- UV-50X3 +- UV-5X3 # Cignus - - UV-85 (use Baofeng UV-5R) - - UV-87 (use TYT TH-UV88) +- UV-85 (use Baofeng UV-5R) +- UV-87 (use TYT TH-UV88) # CRT - - Micron UV (Variant of Anytone AT-778UV) +- Micron UV (Variant of Anytone AT-778UV) # eSYNiC - - ESY-88 (Variant of Baofeng BF-888s) +- ESY-88 (Variant of Baofeng BF-888s) # Feidaxin - - FD-150A - - FD-160A - - FD-268A, B - - FD-288A, B - - FD-450A - - FD-460A, UH +- FD-150A +- FD-160A +- FD-268A, B +- FD-288A, B +- FD-450A +- FD-460A, UH # Greaval - - GV-8S - - GV-9S +- GV-8S +- GV-9S # Hesenate - - BJ-218 (Variant of Luiton LT-725uv) - - HT-5RX3 (use Radioddity UV-5RX3) - - HT-U222 (use Retevis RT22) +- BJ-218 (Variant of Luiton LT-725uv) +- HT-5RX3 (use Radioddity UV-5RX3) +- HT-U222 (use Retevis RT22) # HobbyPCB - - RS-UV3 +- RS-UV3 # Icom - - IC-80AD - - IC-91, IC-92AD - - IC-208H - - IC-746 - - IC-910H - - IC-2100H - - IC-2200H - - IC-2300H - - IC-2720H - - IC-2730A - - IC-2820H - - IC-7000 - - IC-7100 - - IC-7200 - - IC-E90 - - IC-P7 - - IC-Q7A - - IC-T70 - - IC-T7H - - IC-T8A - - IC-T90 - - IC-V82, IC-U82 - - IC-V86 - - IC-W32A, E - - ID-31A - - ID-51, ID-51+ - - ID-80H - - ID-800H - - ID-880H - - ID-RPx000V/RP2x +- IC-80AD +- IC-91, IC-92AD +- IC-208H +- IC-746 +- IC-910H +- IC-2100H +- IC-2200H +- IC-2300H +- IC-2720H +- IC-2730A +- IC-2820H +- IC-7000 +- IC-7100 +- IC-7200 +- IC-E90 +- IC-P7 +- IC-Q7A +- IC-T70 +- IC-T7H +- IC-T8A +- IC-T90 +- IC-V82, IC-U82 +- IC-V86 +- IC-W32A, E +- ID-31A +- ID-51, ID-51+ +- ID-80H +- ID-800H +- ID-880H +- ID-RPx000V/RP2x # Intek - - HR-2040 (use Anytone AT-5888UB) - - KT-980HP (Variant of Baofeng UV-5R) +- HR-2040 (use Anytone AT-5888UB) +- KT-980HP (Variant of Baofeng UV-5R) # Jetstream - - JT220M - - JT270M, MH - - JT2705M (Variant of Waccom Mini 8900) +- JT220M +- JT270M, MH +- JT2705M (Variant of Waccom Mini 8900) # Juentai - - JT-6188 Mini (Variant of QYT KT8900) - - JT-6188 Plus (Variant of Waccom Mini 8900) +- JT-6188 Mini (Variant of QYT KT8900) +- JT-6188 Plus (Variant of Waccom Mini 8900) # Kenwood - - TH-D7, TH-D7G - - TH-D72 - - TH-F6 - - TH-F7 - - TH-G71 - - TH-K2 - - TK-260/270/272/278 - - TK-260G/270G/272G/278G - - TK-360/370/372/378 - - TK-360G/370G/372G/378G/388G - - TK-760/762/768 - - TK-760G/762G/768G - - TK-860/862/868 - - TK-860G/862G/868G - - TK-7102/8102/7108/8108 - - TK-2180/3180/7180/8180 - - TM-271 - - TM-281 - - TM-471 - - TM-D700 - - TM-D710, TM-D710G - - TM-G707 - - TM-V7 - - TM-V71 - - TS-480HX/SAT - - TS-590S/SG - - TS-850 - - TS-2000 +- TH-D7, TH-D7G +- TH-D72 +- TH-F6 +- TH-F7 +- TH-G71 +- TH-K2 +- TK-260/270/272/278 +- TK-260G/270G/272G/278G +- TK-360/370/372/378 +- TK-360G/370G/372G/378G/388G +- TK-760/762/768 +- TK-760G/762G/768G +- TK-860/862/868 +- TK-860G/862G/868G +- TK-7102/8102/7108/8108 +- TK-2180/3180/7180/8180 +- TM-271 +- TM-281 +- TM-471 +- TM-D700 +- TM-D710, TM-D710G +- TM-G707 +- TM-V7 +- TM-V71 +- TS-480HX/SAT +- TS-590S/SG +- TS-850 +- TS-2000 # KYD - - IP-620 - - NC-630A +- IP-620 +- NC-630A # Leadzm - - LE-C2 (Variant of Baofeng BF-C2) +- LE-C2 (Variant of Baofeng BF-C2) # Leixen - - VV-898, VV-898S, VV-898E +- VV-898, VV-898S, VV-898E # Luiton - - LT-316 (Variant of Retevis RT22) - - LT-580 VHF, UHF - - LT-588UV (Variant of QYT KT8900) - - LT-725UV - - LT-898UV (Variant of Leixen VV-898) +- LT-316 (Variant of Retevis RT22) +- LT-580 VHF, UHF +- LT-588UV (Variant of QYT KT8900) +- LT-725UV +- LT-898UV (Variant of Leixen VV-898) # Midland - - DBR2500 (Variant of Anytone AT-778UV) +- DBR2500 (Variant of Anytone AT-778UV) # MTC - - UV-5R-3 +- UV-5R-3 # NKTech - - UV-7RX (use Retevis RT6) +- UV-7RX (use Retevis RT6) # Plant-Tours - - MT-700 +- MT-700 # Pofung - - (see Baofeng) +- (see Baofeng) # Polmar - - DB-50M (use Anytone AT-5888UV) +- DB-50M (use Anytone AT-5888UV) # Powerwerx - - DB-750X (use Anytone AT-5888UV) +- DB-750X (use Anytone AT-5888UV) # Puxing - - PX-2R (UHF) - - PX-777 - - PX-888K +- PX-2R (UHF) +- PX-777 +- PX-888K # QYT - - KT980+ (same as KT-8900D) - - KT7900D - - KT8900 (same as KT-8900) - - KT8900R - - KT8900D - - KT-8R - - KT-UV980 (Variant of Waccom Mini 8900) +- KT980+ (same as KT-8900D) +- KT7900D +- KT8900 (same as KT-8900) +- KT8900R +- KT8900D +- KT-8R +- KT-UV980 (Variant of Waccom Mini 8900) # R&L Electronics - - UV-5R 3 band (use Radioddity UV-5RX3) +- UV-5R 3 band (use Radioddity UV-5RX3) # Radioddity - - DB25 (Variant of QYT KT8900D) - - GA-2S - - GA-5S - - GA-510 - - QB25 - - R2 - - UV-5R EX - - UV-5RX3 - - UV-82X3 +- DB25 (Variant of QYT KT8900D) +- GA-2S +- GA-5S +- GA-510 +- QB25 +- R2 +- UV-5R EX +- UV-5RX3 +- UV-82X3 # Radtel - - RT-10 (use Retevis RT22) - - T18 +- RT-10 (use Retevis RT22) +- T18 # Retevis - - H-777 (use Baofeng BF-888) - - RT1 - - RT5 with 2 power levels (use Baofeng UV-5R) - - RT5 with 3 power levels (variant of Baofeng BF-F8HP) - - RT-5R, RT-5RV (Variants of Baofeng UV-5R) - - RT6 - - RT21 - - RT22 - - RT23 - - RT24 - - RT26 - - RT95 (Variant of Anytone AT-778UV) - - RT-B6 (use Baofeng UV-B5) +- H-777 (use Baofeng BF-888) +- RT1 +- RT5 with 2 power levels (use Baofeng UV-5R) +- RT5 with 3 power levels (variant of Baofeng BF-F8HP) +- RT-5R, RT-5RV (Variants of Baofeng UV-5R) +- RT6 +- RT21 +- RT22 +- RT23 +- RT24 +- RT26 +- RT95 (Variant of Anytone AT-778UV) +- RT-B6 (use Baofeng UV-B5) # Rugged Radios - - RH5R, RH5R-V2 (use Baofeng UV-5R) - - RH5X (Variant of Baofeng BF-A58) +- RH5R, RH5R-V2 (use Baofeng UV-5R) +- RH5X (Variant of Baofeng BF-A58) # Sainsonic - - GT-3TP (use Baofeng BF-F8HP) - - GT-890 (Variant of QYT KT8900) +- GT-3TP (use Baofeng BF-F8HP) +- GT-890 (Variant of QYT KT8900) # Standard Horizon - - (see Yaesu) +- (see Yaesu) # Surecom - - KT8900D (Variant of QYT KT7900D) +- KT8900D (Variant of QYT KT7900D) # Tacklife - - MTR01 (use Radioddity R2) +- MTR01 (use Radioddity R2) # TDXone - - TD-Q8A +- TD-Q8A # TechSide - - TI-F8+ (Variant of the Baofeng BF-F8HP) +- TI-F8+ (Variant of the Baofeng BF-F8HP) `TESTED` # Tenway - - TW-325 - - UV-5R Pro (Variant of the Baofeng BF-F8HP) - - UV-82 Pro +- TW-325 +- UV-5R Pro (Variant of the Baofeng BF-F8HP) `TESTED` +- UV-82 Pro # TIDRADIO - - BF-F8TD (use TD-UV5R TriPower) - - TD-UV5R TriPower - - TD-H6 +- BF-F8TD (use TD-UV5R TriPower) +- TD-UV5R TriPower +- TD-H6 # TID - - TD-M8 +- TD-M8 # Tonfa - - UV-985 (use Baofeng UV-5R) +- UV-985 (use Baofeng UV-5R) # TYT - - TH-350 - - TH-7800 - - TH-9000 (each 144, 220, 440) - - TH-9800 - - TH-UV3R, TH-UV3R-25 - - TH-UV8000D/E - - TH-UV88 - - TH-UVF1 - - TH-UVF8D +- TH-350 +- TH-7800 +- TH-9000 (each 144, 220, 440) +- TH-9800 +- TH-UV3R, TH-UV3R-25 +- TH-UV8000D/E +- TH-UV88 +- TH-UVF1 +- TH-UVF8D # Vero - - UV-E5, UV-E5 MK II (use Baofeng UV-5R) +- UV-E5, UV-E5 MK II (use Baofeng UV-5R) # Vertex Standard - - (see Yaesu) +- (see Yaesu) # Waccom - - MINI-8900 +- MINI-8900 # WLN - - KD-C1 (Variant of Retevis RT22) +- KD-C1 (Variant of Retevis RT22) # Wouxun - - KG-816/818 - - KG-UVD1P/UV2D/UV3D - - KG-UV6D/UV6X - - KG-UV7D (use KG-UV6) - - KG-UV8D - - KG-UV8D Plus - - KG-UV8E - - KG-UV8T - - KG-UV9D Plus - - KG-UVD1P +- KG-816/818 +- KG-UVD1P/UV2D/UV3D +- KG-UV6D/UV6X +- KG-UV7D (use KG-UV6) +- KG-UV8D +- KG-UV8D Plus +- KG-UV8E +- KG-UV8T +- KG-UV9D Plus +- KG-UVD1P # Yaesu - - FT-1D - - FT-2D - - FT-3D - - FT-4VR - - FT-4XE, R - - FT-25R - - FT-50R - - FT-60R - - FT-65E, R - - FT-70D - - FT-90R - - FT-450D - - FT-817/ND - - FT-818/ND - - FT-857/D - - FT-897 - - FT-1500M - - FT-1802M - - FT-2800M - - FT-1900R/2900M - - FT-7100M - - FT-7800/7900 - - FT-8100 - - FT-8800 - - FT-8900 - - FTM-350 - - FTM-3100 (use FTM-3200D selection) - - FTM-3200D - - VX-2R - - VX-3R - - VX-5R - - VX-6, 6R - - VX-7R - - VX-8, 8R, 8D, 8G - - VX-170 - - VXA-700 +- FT-1D +- FT-2D +- FT-3D +- FT-4VR +- FT-4XE, R +- FT-25R +- FT-50R +- FT-60R +- FT-65E, R +- FT-70D +- FT-90R +- FT-450D +- FT-817/ND +- FT-818/ND +- FT-857/D +- FT-897 +- FT-1500M +- FT-1802M +- FT-2800M +- FT-1900R/2900M +- FT-7100M +- FT-7800/7900 +- FT-8100 +- FT-8800 +- FT-8900 +- FTM-350 +- FTM-3100 (use FTM-3200D selection) +- FTM-3200D +- VX-2R +- VX-3R +- VX-5R +- VX-6, 6R +- VX-7R +- VX-8, 8R, 8D, 8G +- VX-170 +- VXA-700 # Zastone - - BJ-218 (Variant of Luiton LT-725uv) - - MP-300 (Variant of QYT KT8900) - - MP-380 (use QYT KT8900D) - - MP-800 (use TYT TH-9800) - - ZT-V8, V8A, V8A+ (use Baofeng UV-R5) - - ZT-X6 (Variant of Retevis RT22) +- BJ-218 (Variant of Luiton LT-725uv) +- MP-300 (Variant of QYT KT8900) +- MP-380 (use QYT KT8900D) +- MP-800 (use TYT TH-9800) +- ZT-V8, V8A, V8A+ (use Baofeng UV-R5) +- ZT-X6 (Variant of Retevis RT22) -- cgit v1.2.3 From ca39750812fd0fb2cca45f44fa8596c951b07d75 Mon Sep 17 00:00:00 2001 From: Matthew Poletiek Date: Sat, 19 Dec 2020 22:39:51 -0600 Subject: Adding Radio List --- RADIOS.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/RADIOS.md b/RADIOS.md index 4ed0ebf..1941b56 100644 --- a/RADIOS.md +++ b/RADIOS.md @@ -6,6 +6,8 @@ Radios marked `TESTED` are known to work with the current release of py3-CHIRP. ## Radios + + # Abbree - AR-F3 (use Baofeng UV-82III) @@ -56,7 +58,7 @@ Radios marked `TESTED` are known to work with the current release of py3-CHIRP. - BF-E500S (use UV-5R) - BF-F8, F8+ (use UV-5R) - BF-F8+III (use Radioddity UV-5RX3) -- BF-F8HP (3 power levels) `TESTED` +- BF-F8HP (3 power levels) *`TESTED`* - BF-F9 (use UV-5R) - BF-F9V2+ (use BF-F8HP) - BF-F11 (use UV-5R) @@ -503,3 +505,6 @@ Radios marked `TESTED` are known to work with the current release of py3-CHIRP. - MP-800 (use TYT TH-9800) - ZT-V8, V8A, V8A+ (use Baofeng UV-R5) - ZT-X6 (Variant of Retevis RT22) + + + -- cgit v1.2.3 From 2a1d41826406861ae53730cc9b84218c93469fc2 Mon Sep 17 00:00:00 2001 From: Matthew Poletiek Date: Sat, 19 Dec 2020 22:41:48 -0600 Subject: Adding Radio List --- RADIOS.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/RADIOS.md b/RADIOS.md index 1941b56..d065d8e 100644 --- a/RADIOS.md +++ b/RADIOS.md @@ -6,8 +6,6 @@ Radios marked `TESTED` are known to work with the current release of py3-CHIRP. ## Radios - - # Abbree - AR-F3 (use Baofeng UV-82III) @@ -58,7 +56,7 @@ Radios marked `TESTED` are known to work with the current release of py3-CHIRP. - BF-E500S (use UV-5R) - BF-F8, F8+ (use UV-5R) - BF-F8+III (use Radioddity UV-5RX3) -- BF-F8HP (3 power levels) *`TESTED`* +- BF-F8HP (3 power levels) `TESTED` - BF-F9 (use UV-5R) - BF-F9V2+ (use BF-F8HP) - BF-F11 (use UV-5R) -- cgit v1.2.3 From 8e4b6c502c9cd78bc301fe4c8f5358f4d87a64e6 Mon Sep 17 00:00:00 2001 From: Matthew Poletiek Date: Sat, 19 Dec 2020 22:42:51 -0600 Subject: Adding Radio List --- RADIOS.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/RADIOS.md b/RADIOS.md index d065d8e..409e58e 100644 --- a/RADIOS.md +++ b/RADIOS.md @@ -503,6 +503,3 @@ Radios marked `TESTED` are known to work with the current release of py3-CHIRP. - MP-800 (use TYT TH-9800) - ZT-V8, V8A, V8A+ (use Baofeng UV-R5) - ZT-X6 (Variant of Retevis RT22) - - - -- cgit v1.2.3 From 868349138a09ac2c5c75a9525bfc6502f5d59688 Mon Sep 17 00:00:00 2001 From: Matthew Poletiek Date: Sat, 19 Dec 2020 22:46:48 -0600 Subject: Adding Radio List --- RADIOS.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/RADIOS.md b/RADIOS.md index 409e58e..0515fa1 100644 --- a/RADIOS.md +++ b/RADIOS.md @@ -56,16 +56,16 @@ Radios marked `TESTED` are known to work with the current release of py3-CHIRP. - BF-E500S (use UV-5R) - BF-F8, F8+ (use UV-5R) - BF-F8+III (use Radioddity UV-5RX3) -- BF-F8HP (3 power levels) `TESTED` +- BF-F8HP (3 power levels) `TESTED` - BF-F9 (use UV-5R) -- BF-F9V2+ (use BF-F8HP) +- BF-F9V2+ (use BF-F8HP) `TESTED` - BF-F11 (use UV-5R) - BF-R3 (use Radioddity UV-5RX3) - BF-R5 Mini (use BF-888S) - BF-S5 Plus (use UV-82III) - BF-T1 - BF-UV9R+HP (use UV-82WP) -- BF-UV10R (use BF-F8HP 3 power levels) +- BF-UV10R (use BF-F8HP 3 power levels) `TESTED` - BF-UVF10 (use BF-A58S) - BF-UVB2+ (use UV-5R) - BF-V9 (use BF-888) @@ -74,7 +74,7 @@ Radios marked `TESTED` are known to work with the current release of py3-CHIRP. - FF-12P (use UV-5R) - GT-1 (use BF-888S) - GT-3, GT-3 MK II (use UV-5R) -- GT-3TP (use BF-F8HP) +- GT-3TP (use BF-F8HP) `TESTED` - GT-3WP - GT-5 (use UV-82) - GT-5TP (use UV-82HP) @@ -82,19 +82,19 @@ Radios marked `TESTED` are known to work with the current release of py3-CHIRP. - UV-3R - UV-5R and variants (2 power levels) - UV-5R V2+, UV-5R2 (use UV-5R) -- UV-5R+ (use BF-F8HP) +- UV-5R+ (use BF-F8HP) `TESTED` - UV-5R++ (use UV-5R) -- UV-5R7W (use BF-F8HP) +- UV-5R7W (use BF-F8HP) `TESTED` - UV-5RA, UV-5RA+, UV-5RAX, UV-5RAX+ (use UV-5R) - UV-5RB (use UV-5R) - UV-5RC, UV-5RC, UV-5RCX+ (use UV-5R) - UV-5RD (use UV-5R) - UV-5RE, UV-5RE+ (use UV-5R) - UV-5RG, RK, RQ, RS, RT, RU (use UV-5R) -- UV-5RHP (use BF-F8HP) +- UV-5RHP (use BF-F8HP) `TESTED` - UV-5RIII (use Radioddity UV-5RX3) -- UV-5RM HP (use BF-F8HP) -- UV-5RTP (use BF-F8HP) +- UV-5RM HP (use BF-F8HP) `TESTED` +- UV-5RTP (use BF-F8HP) `TESTED` - UV-5RWP (use UV-82WP) - UV-5RX3 (use Radioddity UV-5RX3) - UV-5S, 5X (use UV-5R) @@ -117,7 +117,7 @@ Radios marked `TESTED` are known to work with the current release of py3-CHIRP. - UV-B2 (use UV-82) - UV-B2+, B3+ (use UV-5R) - UV-B5, B6 -- UV-S9 (use BF-F8HP) +- UV-S9 (use BF-F8HP) `TESTED` - UV-S9T (use Radioddity UV-5RX3) - UV-X9 (use UV-82HP) @@ -354,7 +354,7 @@ Radios marked `TESTED` are known to work with the current release of py3-CHIRP. - H-777 (use Baofeng BF-888) - RT1 - RT5 with 2 power levels (use Baofeng UV-5R) -- RT5 with 3 power levels (variant of Baofeng BF-F8HP) +- RT5 with 3 power levels (variant of Baofeng BF-F8HP) `TESTED` - RT-5R, RT-5RV (Variants of Baofeng UV-5R) - RT6 - RT21 @@ -372,7 +372,7 @@ Radios marked `TESTED` are known to work with the current release of py3-CHIRP. # Sainsonic -- GT-3TP (use Baofeng BF-F8HP) +- GT-3TP (use Baofeng BF-F8HP) `TESTED` - GT-890 (Variant of QYT KT8900) # Standard Horizon -- cgit v1.2.3 From 4858b44367a1e451bd8acdbca4e5c7144e209a65 Mon Sep 17 00:00:00 2001 From: Matthew Poletiek Date: Sat, 19 Dec 2020 22:48:44 -0600 Subject: Updated README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index e0ad693..42549be 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,8 @@ py3-CHIRP has been tested in Python3.9 on various platforms. Known dependencies ## Testing +For a list of supported radios (tested and untested) see [RADIOS.md](https://github.com/mpoletiek/py3-CHIRP/blob/main/RADIOS.md) + Depending on the platform you're testing on, you should use a different script to start CHIRP. ### Linux & MacOS @@ -26,6 +28,7 @@ Depending on the platform you're testing on, you should use a different script t `chirpwx.py` + ## The Story When I first started using Gentoo again CHIRP was still a part of the main Gentoo Portage Repository. -- cgit v1.2.3 From 9ddcc6ef45bdb138d0a94b31bbf7217d58404fd2 Mon Sep 17 00:00:00 2001 From: Matthew Poletiek Date: Sat, 19 Dec 2020 23:40:56 -0600 Subject: Fixing Tox for Testing --- tests/run_tests.py | 3 ++- tests/unit/base.py | 10 ++++++---- tests/unit/test_memedit_edits.py | 11 +++++++---- tests/unit/test_platform.py | 12 ++++++++---- tests/unit/test_shiftdialog.py | 11 +++++++---- tox.ini | 6 +++--- 6 files changed, 33 insertions(+), 20 deletions(-) diff --git a/tests/run_tests.py b/tests/run_tests.py index e13fd8c..0331e5e 100755 --- a/tests/run_tests.py +++ b/tests/run_tests.py @@ -26,6 +26,7 @@ import glob import tempfile import time from optparse import OptionParser +#import serial from serial import Serial # change to the tests directory @@ -52,7 +53,7 @@ logger.handle_options(LoggerOpts()) from chirp import CHIRP_VERSION # FIXME: Not all drivers are py3 compatible in syntax, so punt on this # until that time, and defer to the safe import loop below. -# from chirp.drivers import * +from chirp.drivers import * from chirp import chirp_common, directory from chirp import import_logic, memmap, settings, errors from chirp import settings diff --git a/tests/unit/base.py b/tests/unit/base.py index 1e112ce..65f2eee 100644 --- a/tests/unit/base.py +++ b/tests/unit/base.py @@ -3,10 +3,12 @@ import unittest import mock -try: - import mox -except ImportError: - from mox3 import mox +from mox3 import mox + +#try: +# import mox3 +#except ImportError: +# from mox3 import mox import warnings warnings.simplefilter('ignore', Warning) diff --git a/tests/unit/test_memedit_edits.py b/tests/unit/test_memedit_edits.py index fdf971c..167f467 100644 --- a/tests/unit/test_memedit_edits.py +++ b/tests/unit/test_memedit_edits.py @@ -1,7 +1,10 @@ -try: - import mox -except ImportError: - from mox3 import mox +from mox3 import mox + +#try: +# import mox3 +#except ImportError: +# from mox3 import mox + from tests.unit import base __builtins__["_"] = lambda s: s diff --git a/tests/unit/test_platform.py b/tests/unit/test_platform.py index 394f894..3dbca47 100644 --- a/tests/unit/test_platform.py +++ b/tests/unit/test_platform.py @@ -14,10 +14,14 @@ # along with this program. If not, see . import unittest -try: - import mox -except ImportError: - from mox3 import mox + +from mox3 import mox + +#try: +# import mox3 +#except ImportError: +# from mox3 import mox + import os from tests.unit import base diff --git a/tests/unit/test_shiftdialog.py b/tests/unit/test_shiftdialog.py index fe0b62d..d146e4d 100644 --- a/tests/unit/test_shiftdialog.py +++ b/tests/unit/test_shiftdialog.py @@ -1,8 +1,11 @@ import unittest -try: - import mox -except ImportError: - from mox3 import mox + +from mox3 import mox + +#try: +# import mox3 +#except ImportError: +# from mox3 import mox from tests.unit import base from chirp import chirp_common diff --git a/tox.ini b/tox.ini index 32f367e..dafd59b 100644 --- a/tox.ini +++ b/tox.ini @@ -3,7 +3,7 @@ envlist = unit,driver,style,py3clean,py3unit,py3driver skipsdist = True [testenv] -basepython = python2.7 +basepython = python3.7 sitepackages = True passenv = HOME whitelist_externals = bash @@ -40,7 +40,7 @@ commands = py3clean chirp tests [testenv:py3unit] -basepython = python3 +basepython = python3.7 sitepackages = False setenv = PYTHONPATH=../.. @@ -51,7 +51,7 @@ commands = pytest --disable-warnings -v tests/unit {posargs} [testenv:py3driver] -basepython = python3 +basepython = python3.7 sitepackages = False setenv = PYTHONPATH=../.. -- cgit v1.2.3 From b74292b26cbf64bcb3b32032a3b09c19f9f82805 Mon Sep 17 00:00:00 2001 From: Matthew Poletiek Date: Sun, 20 Dec 2020 16:35:39 -0600 Subject: Fixing tests --- chirp/drivers/bf-t1.py | 2 +- chirp/drivers/puxing_px888k.py | 2 +- chirp/drivers/th_uvf8d.py | 2 +- chirp/drivers/thd72.py | 6 +++--- chirp/drivers/ts2000.py | 2 +- chirp/drivers/ts850.py | 2 +- share/make_supported.py | 27 +++++++++++++++++++++++++-- 7 files changed, 33 insertions(+), 10 deletions(-) diff --git a/chirp/drivers/bf-t1.py b/chirp/drivers/bf-t1.py index f93972f..a0c4939 100644 --- a/chirp/drivers/bf-t1.py +++ b/chirp/drivers/bf-t1.py @@ -503,7 +503,7 @@ class BFT1(chirp_common.CloneModeRadio, chirp_common.ExperimentalRadio): """Get the radio's features""" rf = chirp_common.RadioFeatures() - rf.valid_special_chans = SPECIALS.keys() + rf.valid_special_chans = list(SPECIALS.keys()) rf.has_settings = True rf.has_bank = False rf.has_tuning_step = False diff --git a/chirp/drivers/puxing_px888k.py b/chirp/drivers/puxing_px888k.py index 63499fe..7e4fb83 100644 --- a/chirp/drivers/puxing_px888k.py +++ b/chirp/drivers/puxing_px888k.py @@ -1151,7 +1151,7 @@ class Puxing_PX888K_Radio(chirp_common.CloneModeRadio): rf.valid_name_length = 6 rf.valid_cross_modes = CROSS_MODES rf.memory_bounds = (1, 128) - rf.valid_special_chans = SPECIAL_CHANNELS.keys() + rf.valid_special_chans = list(SPECIAL_CHANNELS.keys()) rf.valid_tuning_steps = [5.0, 6.25, 10.0, 12.5, 25.0] return rf diff --git a/chirp/drivers/th_uvf8d.py b/chirp/drivers/th_uvf8d.py index e302784..412ec07 100644 --- a/chirp/drivers/th_uvf8d.py +++ b/chirp/drivers/th_uvf8d.py @@ -288,7 +288,7 @@ class TYTUVF8DRadio(chirp_common.CloneModeRadio): rf.valid_skips = ["", "S"] rf.valid_power_levels = POWER_LEVELS rf.valid_modes = ["FM", "NFM"] - rf.valid_special_chans = SPECIALS.keys() + rf.valid_special_chans = list(SPECIALS.keys()) rf.valid_name_length = 7 return rf diff --git a/chirp/drivers/thd72.py b/chirp/drivers/thd72.py index 5b3d053..b8b01e9 100644 --- a/chirp/drivers/thd72.py +++ b/chirp/drivers/thd72.py @@ -244,9 +244,9 @@ class THD72Radio(chirp_common.CloneModeRadio): rf.has_bank = False rf.has_settings = True rf.valid_tuning_steps = [] - rf.valid_modes = MODES_REV.keys() - rf.valid_tmodes = TMODES_REV.keys() - rf.valid_duplexes = DUPLEX_REV.keys() + rf.valid_modes = list(MODES_REV.keys()) + rf.valid_tmodes = list(TMODES_REV.keys()) + rf.valid_duplexes = list(DUPLEX_REV.keys()) rf.valid_skips = ["", "S"] rf.valid_characters = chirp_common.CHARSET_ALPHANUMERIC rf.valid_name_length = 8 diff --git a/chirp/drivers/ts2000.py b/chirp/drivers/ts2000.py index c842a5f..99f4d39 100644 --- a/chirp/drivers/ts2000.py +++ b/chirp/drivers/ts2000.py @@ -50,7 +50,7 @@ class TS2000Radio(KenwoodLiveRadio): rf.valid_tuning_steps = list(TS2000_SSB_STEPS + TS2000_FM_STEPS) rf.valid_bands = [(1000, 1300000000)] rf.valid_skips = ["", "S"] - rf.valid_duplexes = TS2000_DUPLEX.values() + rf.valid_duplexes = list(TS2000_DUPLEX.values()) # TS-2000 uses ";" as a message separator even though it seems to # allow you to to use all printable ASCII characters at the manual diff --git a/chirp/drivers/ts850.py b/chirp/drivers/ts850.py index 746a94d..8fb453d 100644 --- a/chirp/drivers/ts850.py +++ b/chirp/drivers/ts850.py @@ -81,7 +81,7 @@ class TS850Radio(KenwoodLiveRadio): rf.valid_bands = TS850_BANDS rf.valid_characters = chirp_common.CHARSET_UPPER_NUMERIC rf.valid_duplexes = TS850_DUPLEX - rf.valid_modes = TS850_MODES.keys() + rf.valid_modes = list(TS850_MODES.keys()) rf.valid_skips = TS850_SKIP rf.valid_tmodes = TS850_TMODES diff --git a/share/make_supported.py b/share/make_supported.py index 67ecebd..5934688 100755 --- a/share/make_supported.py +++ b/share/make_supported.py @@ -58,7 +58,7 @@ def supported_row(radio): try: value = ", ".join([str(x) for x in value if not str(x).startswith("?")]) - except Exception, e: + except Exception as e: raise if key == "memory_bounds": @@ -167,7 +167,30 @@ for radio in directory.DRV_TO_RADIO.values(): def get_key(rc): return '%s %s %s' % (rc.VENDOR, rc.MODEL, rc.VARIANT) -for radio in sorted(models, cmp=lambda a, b: get_key(a) < get_key(b) and -1 or 1): + + +# Python2 to 3 wrapper for converting an old comparison below to a key +def cmp_to_key(mycmp): + 'Convert a cmp= function into a key= function' + class K: + def __init__(self, obj, *args): + self.obj = obj + def __lt__(self, other): + return mycmp(self.obj, other.obj) < 0 + def __gt__(self, other): + return mycmp(self.obj, other.obj) > 0 + def __eq__(self, other): + return mycmp(self.obj, other.obj) == 0 + def __le__(self, other): + return mycmp(self.obj, other.obj) <= 0 + def __ge__(self, other): + return mycmp(self.obj, other.obj) >= 0 + def __ne__(self, other): + return mycmp(self.obj, other.obj) != 0 + return K + + +for radio in sorted(models, key=cmp_to_key(lambda a, b: get_key(a) < get_key(b) and -1 or 1)): if counter % 10 == 0: output(header_row()) _radio = radio(None) -- cgit v1.2.3 From e25c252325f77ae8f311079c4742ade31fd86b72 Mon Sep 17 00:00:00 2001 From: Matthew Poletiek Date: Sun, 20 Dec 2020 21:39:31 -0600 Subject: tox updates --- logs/debug.log | 856 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 856 insertions(+) create mode 100644 logs/debug.log diff --git a/logs/debug.log b/logs/debug.log new file mode 100644 index 0000000..4884b41 --- /dev/null +++ b/logs/debug.log @@ -0,0 +1,856 @@ +[2020-12-20 21:36:17,733] chirp.directory - INFO: Registered Kenwood_TK-7102 = KenwoodTK7102Radio +[2020-12-20 21:36:17,733] chirp.logger - DEBUG: log level=10 +[2020-12-20 21:36:17,733] chirp.directory - INFO: Registered Kenwood_TK-8102 = KenwoodTK8102Radio +[2020-12-20 21:36:17,733] chirp.directory - INFO: Registered Kenwood_TK-7108 = KenwoodTK7108Radio +[2020-12-20 21:36:17,733] chirp.directory - INFO: Registered Yaesu_FT-450D = FT450DRadio +[2020-12-20 21:36:17,733] chirp.directory - INFO: Registered Kenwood_TK-8108 = KenwoodTK8108Radio +[2020-12-20 21:36:17,733] chirp.directory - INFO: Registered Kenwood_TH-D72_clone_mode = THD72Radio +[2020-12-20 21:36:17,734] chirp.directory - INFO: Registered Yaesu_VX-8R = VX8Radio +[2020-12-20 21:36:17,734] chirp.directory - INFO: Registered Icom_ID-880H = ID880Radio +[2020-12-20 21:36:17,734] chirp.directory - INFO: Registered Yaesu_VX-8DR = VX8DRadio +[2020-12-20 21:36:17,734] chirp.directory - INFO: Registered Icom_ID-80H = ID80Radio +[2020-12-20 21:36:17,734] chirp.directory - INFO: Registered Yaesu_VX-8GE = VX8GERadio +[2020-12-20 21:36:17,734] chirp.directory - INFO: Registered Icom_IC-2200H = IC2200Radio +[2020-12-20 21:36:17,735] chirp.directory - INFO: Registered BTECH_UV-50X3 = UV50X3 +[2020-12-20 21:36:17,735] chirp.directory - INFO: Registered KYD_IP-620 = IP620Radio +[2020-12-20 21:36:17,735] chirp.directory - INFO: Registered Yaesu_FT-2900R_1900R = FT2900Radio +[2020-12-20 21:36:17,736] chirp.directory - INFO: Registered Yaesu_FT-1D_R = FT1Radio +[2020-12-20 21:36:17,736] chirp.directory - INFO: Registered Yaesu_FT-818 = FT818Radio +[2020-12-20 21:36:17,736] chirp.directory - INFO: Registered Yaesu_FT-818ND_US = FT818NDUSRadio +[2020-12-20 21:36:17,736] chirp.directory - INFO: Registered Yaesu_FT2D_R = FT2D +[2020-12-20 21:36:17,736] chirp.directory - INFO: Registered Yaesu_FT2D_Rv2 = FT2Dv2 +[2020-12-20 21:36:17,736] chirp.directory - INFO: Registered Kenwood_TK-260 = TK260_Radio +[2020-12-20 21:36:17,736] chirp.directory - INFO: Registered Yaesu_FT3D_R = FT3D +[2020-12-20 21:36:17,736] chirp.directory - INFO: Registered Kenwood_TK-270 = TK270_Radio +[2020-12-20 21:36:17,736] chirp.directory - INFO: Registered Kenwood_TK-272 = TK272_Radio +[2020-12-20 21:36:17,736] chirp.directory - INFO: Registered Kenwood_TK-278 = TK278_Radio +[2020-12-20 21:36:17,736] chirp.directory - INFO: Registered Kenwood_TK-360 = TK360_Radio +[2020-12-20 21:36:17,736] chirp.directory - INFO: Registered Kenwood_TK-370 = TK370_Radio +[2020-12-20 21:36:17,736] chirp.directory - INFO: Registered Kenwood_TK-372 = TK372_Radio +[2020-12-20 21:36:17,736] chirp.directory - INFO: Registered Kenwood_TK-378 = TK378_Radio +[2020-12-20 21:36:17,737] chirp.directory - INFO: Registered TDXone_TD-Q8A = TDXoneTDQ8A +[2020-12-20 21:36:17,737] chirp.directory - INFO: Registered Retevis_RT23 = RT23Radio +[2020-12-20 21:36:17,737] chirp.directory - INFO: Registered Icom_ID-31A = ID31Radio +[2020-12-20 21:36:17,737] chirp.directory - INFO: Registered Icom_ID-51_Plus = ID51PLUSRadio +[2020-12-20 21:36:17,737] chirp.directory - INFO: Registered Wouxun_KG-UVD1P = KGUVD1PRadio +[2020-12-20 21:36:17,737] chirp.directory - INFO: Registered Icom_IC-V82_U82 = ICx8xRadio +[2020-12-20 21:36:17,737] chirp.directory - INFO: Registered Wouxun_KG-UV6 = KGUV6DRadio +[2020-12-20 21:36:17,737] chirp.directory - INFO: Registered Wouxun_KG-816 = KG816Radio +[2020-12-20 21:36:17,738] chirp.directory - INFO: Registered Wouxun_KG-818 = KG818Radio +[2020-12-20 21:36:17,738] chirp.directory - INFO: Registered Wouxun_KG-UV8D_Plus = KGUV8DPlusRadio +[2020-12-20 21:36:17,738] chirp.directory - INFO: Registered Kenwood_TK-7180 = KenwoodTK7180Radio +[2020-12-20 21:36:17,738] chirp.directory - INFO: Registered TYT_TH-UV3R = TYTUV3RRadio +[2020-12-20 21:36:17,738] chirp.directory - INFO: Registered Kenwood_TK-8180 = KenwoodTK8180Radio +[2020-12-20 21:36:17,738] chirp.directory - INFO: Registered TYT_TH-UV3R-25 = TYTUV3R25Radio +[2020-12-20 21:36:17,738] chirp.directory - INFO: Registered Kenwood_TK-2180 = KenwoodTK2180Radio +[2020-12-20 21:36:17,738] chirp.directory - INFO: Registered Kenwood_TK-3180K = KenwoodTK3180K1Radio +[2020-12-20 21:36:17,738] chirp.directory - INFO: Registered Kenwood_TK-3180K2 = KenwoodTK3180K2Radio +[2020-12-20 21:36:17,738] chirp.directory - INFO: Registered Icom_IC-Q7A = ICQ7Radio +[2020-12-20 21:36:17,739] chirp.directory - INFO: Registered Baojie_BJ-9900 = BJ9900Radio +[2020-12-20 21:36:17,739] chirp.directory - INFO: Registered Generic_CSV = CSVRadio +[2020-12-20 21:36:17,739] chirp.directory - INFO: Registered Commander_KG-UV = CommanderCSVRadio +[2020-12-20 21:36:17,739] chirp.directory - INFO: Registered Yaesu_FT-7800_7900 = FT7800Radio +[2020-12-20 21:36:17,739] chirp.directory - INFO: Registered RT_Systems_CSV = RTCSVRadio +[2020-12-20 21:36:17,739] chirp.directory - INFO: Registered Yaesu_FT-8800 = FT8800Radio +[2020-12-20 21:36:17,740] chirp.directory - INFO: Registered Kenwood_HMK = HMKRadio +[2020-12-20 21:36:17,740] chirp.directory - INFO: Registered Icom_ID-800H_v2 = ID800v2Radio +[2020-12-20 21:36:17,740] chirp.directory - INFO: Registered Yaesu_FT-8900 = FT8900Radio +[2020-12-20 21:36:17,740] chirp.directory - INFO: Registered Kenwood_TS-850 = TS850Radio +[2020-12-20 21:36:17,740] chirp.directory - INFO: Registered Vertex_Standard_VXA-700 = VXA700Radio +[2020-12-20 21:36:17,740] chirp.directory - INFO: Registered Icom_IC-P7 = ICP7Radio +[2020-12-20 21:36:17,741] chirp.directory - INFO: Registered TYT_TH-UVF8D = TYTUVF8DRadio +[2020-12-20 21:36:17,741] chirp.directory - INFO: Registered Baofeng_BF-A58 = BFA58 +[2020-12-20 21:36:17,741] chirp.directory - INFO: Registered Baofeng_UV-B5 = BaofengUVB5 +[2020-12-20 21:36:17,741] chirp.directory - INFO: Registered Baofeng_UV-82WP = UV82WP +[2020-12-20 21:36:17,741] chirp.directory - INFO: Registered Baofeng_GT-3WP = GT3WP +[2020-12-20 21:36:17,741] chirp.directory - INFO: Registered Retevis_RT6 = RT6 +[2020-12-20 21:36:17,741] chirp.directory - INFO: Registered Baofeng_BF-A58S = BFA58S +[2020-12-20 21:36:17,741] chirp.directory - INFO: Registered Baofeng_UV-9R = UV9R +[2020-12-20 21:36:17,741] chirp.directory - INFO: Registered Retevis_RT1 = RT1Radio +[2020-12-20 21:36:17,742] chirp.directory - INFO: Registered Icom_IC-2100H = IC2100Radio +[2020-12-20 21:36:17,742] chirp.directory - INFO: Registered Yaesu_FT-4XR = YaesuFT4XRRadio +[2020-12-20 21:36:17,742] chirp.directory - INFO: Registered Kenwood_TK-868G = TK868G_Radios +[2020-12-20 21:36:17,742] chirp.directory - INFO: Registered Yaesu_FT-4XE = YaesuFT4XERadio +[2020-12-20 21:36:17,742] chirp.directory - INFO: Registered Yaesu_FT-4VR = YaesuFT4VRRadio +[2020-12-20 21:36:17,742] chirp.directory - INFO: Registered Yaesu_FT-65R = YaesuFT65RRadio +[2020-12-20 21:36:17,742] chirp.directory - INFO: Registered Yaesu_FT-65E = YaesuFT65ERadio +[2020-12-20 21:36:17,742] chirp.directory - INFO: Registered Yaesu_FT-25R = YaesuFT25RRadio +[2020-12-20 21:36:17,742] chirp.directory - INFO: Registered Retevis_RT21 = RT21Radio +[2020-12-20 21:36:17,742] chirp.directory - INFO: Registered Kenwood_TK-862G = TK862G_Radios +[2020-12-20 21:36:17,743] chirp.directory - INFO: Registered Kenwood_TK-860G = TK860G_Radios +[2020-12-20 21:36:17,743] chirp.directory - INFO: Registered Kenwood_TK-768G = TK768G_Radios +[2020-12-20 21:36:17,743] chirp.directory - INFO: Registered Kenwood_TK-762G = TK762G_Radios +[2020-12-20 21:36:17,743] chirp.directory - INFO: Registered Kenwood_TK-760G = TK760G_Radios +[2020-12-20 21:36:17,743] chirp.directory - INFO: Registered BTECH_GMRS-V1 = GMRSV1 +[2020-12-20 21:36:17,743] chirp.directory - INFO: Registered Kenwood_TK-388G = TK388G_Radios +[2020-12-20 21:36:17,743] chirp.directory - INFO: Registered Kenwood_TK-378G = TK378G_Radios +[2020-12-20 21:36:17,743] chirp.directory - INFO: Registered Wouxun_KG-UV8E = KGUV8ERadio +[2020-12-20 21:36:17,743] chirp.directory - INFO: Registered Kenwood_TK-372G = TK372G_Radios +[2020-12-20 21:36:17,743] chirp.directory - INFO: Registered Kenwood_TK-370G = TK370G_Radios +[2020-12-20 21:36:17,744] chirp.directory - INFO: Registered Kenwood_TK-360G = TK360G_Radios +[2020-12-20 21:36:17,744] chirp.directory - INFO: Registered Icom_IC-208H = IC208Radio +[2020-12-20 21:36:17,744] chirp.directory - INFO: Registered Kenwood_TK-278G = TK278G_Radios +[2020-12-20 21:36:17,744] chirp.directory - INFO: Registered Kenwood_TK-272G = TK272G_Radios +[2020-12-20 21:36:17,744] chirp.directory - INFO: Registered Kenwood_TK-270G = TK270G_Radios +[2020-12-20 21:36:17,744] chirp.directory - INFO: Registered Kenwood_TK-260G = TK260G_Radios +[2020-12-20 21:36:17,744] chirp.directory - INFO: Registered Yaesu_VX-3 = VX3Radio +[2020-12-20 21:36:17,744] chirp.directory - INFO: Registered Yaesu_VX-2 = VX2Radio +[2020-12-20 21:36:17,744] chirp.directory - INFO: Registered Icom_IC-W32A = ICW32ARadio +[2020-12-20 21:36:17,745] chirp.directory - INFO: Registered Icom_IC-W32E = ICW32ERadio +[2020-12-20 21:36:17,745] chirp.directory - INFO: Registered KYD_NC-630A = NC630aRadio +[2020-12-20 21:36:17,745] chirp.directory - INFO: Registered Alinco_DR03T = DR03Radio +[2020-12-20 21:36:17,745] chirp.directory - INFO: Registered Alinco_DR06T = DR06Radio +[2020-12-20 21:36:17,745] chirp.directory - INFO: Registered Alinco_DR135T = DR135Radio +[2020-12-20 21:36:17,745] chirp.directory - INFO: Registered Alinco_DR235T = DR235Radio +[2020-12-20 21:36:17,745] chirp.directory - INFO: Registered Alinco_DR435T = DR435Radio +[2020-12-20 21:36:17,745] chirp.directory - INFO: Registered Alinco_DJ596 = DJ596Radio +[2020-12-20 21:36:17,745] chirp.directory - INFO: Registered Jetstream_JT220M = JT220MRadio +[2020-12-20 21:36:17,745] chirp.directory - INFO: Registered LUITON_LT-725UV = LT725UV +[2020-12-20 21:36:17,745] chirp.directory - INFO: Registered Alinco_DJ175 = DJ175Radio +[2020-12-20 21:36:17,746] chirp.directory - INFO: Registered Baofeng_UV-6R = UV6R +[2020-12-20 21:36:17,746] chirp.directory - INFO: Registered Alinco_DJ-G7EG = AlincoDJG7EG +[2020-12-20 21:36:17,746] chirp.directory - INFO: Registered Baojie_BJ-218 = Baojie218 +[2020-12-20 21:36:17,746] chirp.directory - INFO: Registered TYT_TH9000_220 = Th9000220Radio +[2020-12-20 21:36:17,746] chirp.directory - INFO: Registered Puxing_PX-777 = Puxing777Radio +[2020-12-20 21:36:17,746] chirp.directory - INFO: Registered TYT_TH9000_144 = Th9000144Radio +[2020-12-20 21:36:17,746] chirp.directory - INFO: Registered Puxing_PX-2R = Puxing2RRadio +[2020-12-20 21:36:17,746] chirp.directory - INFO: Registered TYT_TH9000_440 = Th9000440Radio +[2020-12-20 21:36:17,747] chirp.directory - INFO: Registered Wouxun_KG-UV9D_Plus = KGUV9DPlusRadio +[2020-12-20 21:36:17,747] chirp.directory - INFO: Registered Icom_IC-2720H = IC2720Radio +[2020-12-20 21:36:17,747] chirp.directory - INFO: Registered Icom_IC-91_92AD = IC9xRadio +[2020-12-20 21:36:17,747] chirp.directory - INFO: Registered Rugged_RH5R-V2 = RH5RV2 +[2020-12-20 21:36:17,747] chirp.directory - INFO: Registered Radtel_T18 = T18Radio +[2020-12-20 21:36:17,747] chirp.directory - INFO: Registered Yaesu_FT-7100M = FT7100Radio +[2020-12-20 21:36:17,748] chirp.directory - INFO: Registered Yaesu_FT-2800M = FT2800Radio +[2020-12-20 21:36:17,748] chirp.directory - INFO: Registered Kenwood_TK-7102 = KenwoodTK7102Radio +[2020-12-20 21:36:17,748] chirp.directory - INFO: Registered Kenwood_TK-8102 = KenwoodTK8102Radio +[2020-12-20 21:36:17,748] chirp.directory - INFO: Registered Kenwood_TK-7108 = KenwoodTK7108Radio +[2020-12-20 21:36:17,748] chirp.directory - INFO: Registered Yaesu_VX-170 = VX170Radio +[2020-12-20 21:36:17,748] chirp.directory - INFO: Registered Kenwood_TK-8108 = KenwoodTK8108Radio +[2020-12-20 21:36:17,748] chirp.directory - INFO: Registered Icom_IC-2820H = IC2820Radio +[2020-12-20 21:36:17,748] chirp.directory - INFO: Registered HobbyPCB_RS-UV3 = HobbyPCBRSUV3Radio +[2020-12-20 21:36:17,749] chirp.directory - INFO: Registered Yaesu_VX-5 = VX5Radio +[2020-12-20 21:36:17,749] chirp.directory - INFO: Registered Yaesu_VX-8R = VX8Radio +[2020-12-20 21:36:17,749] chirp.directory - INFO: Registered ARRL_Travel_Plus = TpeRadio +[2020-12-20 21:36:17,749] chirp.directory - INFO: Registered Yaesu_VX-8DR = VX8DRadio +[2020-12-20 21:36:17,749] chirp.directory - INFO: Registered Kenwood_TS-480_CloneMode = TS480Radio +[2020-12-20 21:36:17,749] chirp.directory - INFO: Registered Yaesu_VX-8GE = VX8GERadio +[2020-12-20 21:36:17,749] chirp.directory - INFO: Registered Icom_IC-2300H = IC2300Radio +[2020-12-20 21:36:17,750] chirp.directory - INFO: Registered Icom_IC-2200H = IC2200Radio +[2020-12-20 21:36:17,750] chirp.directory - INFO: Registered Icom_IC-2730A = IC2730Radio +[2020-12-20 21:36:17,750] chirp.directory - INFO: Registered Icom_IC-T70 = ICT70Radio +[2020-12-20 21:36:17,750] chirp.directory - INFO: Registered Retevis_RT22 = RT22Radio +[2020-12-20 21:36:17,750] chirp.directory - INFO: Registered WLN_KD-C1 = KDC1 +[2020-12-20 21:36:17,750] chirp.directory - INFO: Registered Zastone_ZT-X6 = ZTX6 +[2020-12-20 21:36:17,750] chirp.directory - INFO: Registered Icom_7200 = Icom7200Radio +[2020-12-20 21:36:17,750] chirp.directory - INFO: Registered LUITON_LT-316 = LT316 +[2020-12-20 21:36:17,750] chirp.directory - INFO: Registered Icom_IC-7000 = Icom7000Radio +[2020-12-20 21:36:17,750] chirp.directory - INFO: Registered TID_TD-M8 = TDM8 +[2020-12-20 21:36:17,750] chirp.directory - INFO: Registered Yaesu_FT-2900R_1900R = FT2900Radio +[2020-12-20 21:36:17,750] chirp.directory - INFO: Registered Icom_IC-7100 = Icom7100Radio +[2020-12-20 21:36:17,751] chirp.directory - INFO: Registered Icom_746 = Icom746Radio +[2020-12-20 21:36:17,751] chirp.directory - INFO: Registered Icom_IC-T8A = ICT8ARadio +[2020-12-20 21:36:17,751] chirp.directory - INFO: Registered Yaesu_FTM-3200D_R = FTM3200Radio +[2020-12-20 21:36:17,751] chirp.directory - INFO: Registered Kenwood_TK-260 = TK260_Radio +[2020-12-20 21:36:17,751] chirp.directory - INFO: Registered Kenwood_TK-270 = TK270_Radio +[2020-12-20 21:36:17,751] chirp.directory - INFO: Registered Kenwood_TK-272 = TK272_Radio +[2020-12-20 21:36:17,751] chirp.directory - INFO: Registered BTECH_UV-5X3 = UV5X3 +[2020-12-20 21:36:17,751] chirp.directory - INFO: Registered Kenwood_TK-278 = TK278_Radio +[2020-12-20 21:36:17,751] chirp.directory - INFO: Registered MTC_UV-5R-3 = MTCUV5R3Radio +[2020-12-20 21:36:17,751] chirp.directory - INFO: Registered Kenwood_TK-360 = TK360_Radio +[2020-12-20 21:36:17,752] chirp.directory - INFO: Registered Kenwood_TK-370 = TK370_Radio +[2020-12-20 21:36:17,752] chirp.directory - INFO: Registered Kenwood_TK-372 = TK372_Radio +[2020-12-20 21:36:17,752] chirp.directory - INFO: Registered Kenwood_TK-378 = TK378_Radio +[2020-12-20 21:36:17,752] chirp.directory - INFO: Registered Puxing_PX-888K = Puxing_PX888K_Radio +[2020-12-20 21:36:17,752] chirp.directory - INFO: Registered Yaesu_VX-7 = VX7Radio +[2020-12-20 21:36:17,752] chirp.directory - INFO: Registered Retevis_RT23 = RT23Radio +[2020-12-20 21:36:17,752] chirp.directory - INFO: Registered Yaesu_FT-60 = FT60Radio +[2020-12-20 21:36:17,753] chirp.directory - INFO: Registered Icom_IC-V82_U82 = ICx8xRadio +[2020-12-20 21:36:17,753] chirp.directory - INFO: Registered Wouxun_KG-UV8D = KGUV8DRadio +[2020-12-20 21:36:17,753] chirp.directory - INFO: Registered BTECH_UV-2501 = UV2501 +[2020-12-20 21:36:17,753] chirp.directory - INFO: Registered BTECH_UV-2501+220 = UV2501_220 +[2020-12-20 21:36:17,753] chirp.directory - INFO: Registered Wouxun_KG-UV8D_Plus = KGUV8DPlusRadio +[2020-12-20 21:36:17,753] chirp.directory - INFO: Registered BTECH_UV-5001 = UV5001 +[2020-12-20 21:36:17,753] chirp.directory - INFO: Registered WACCOM_MINI-8900 = MINI8900 +[2020-12-20 21:36:17,753] chirp.directory - INFO: Registered QYT_KT-UV980 = KTUV980 +[2020-12-20 21:36:17,753] chirp.directory - INFO: Registered QYT_KT8900 = KT9800 +[2020-12-20 21:36:17,754] chirp.directory - INFO: Registered QYT_KT8900R = KT9800R +[2020-12-20 21:36:17,754] chirp.directory - INFO: Registered Icom_IC-Q7A = ICQ7Radio +[2020-12-20 21:36:17,754] chirp.directory - INFO: Registered LUITON_LT-588UV = LT588UV +[2020-12-20 21:36:17,754] chirp.directory - INFO: Registered BTECH_UV-25X2 = UV25X2 +[2020-12-20 21:36:17,754] chirp.directory - INFO: Registered BTECH_UV-25X4 = UV25X4 +[2020-12-20 21:36:17,754] chirp.directory - INFO: Registered BTECH_UV-50X2 = UV50X2 +[2020-12-20 21:36:17,754] chirp.directory - INFO: Registered QYT_KT7900D = KT7900D +[2020-12-20 21:36:17,754] chirp.directory - INFO: Registered Baojie_BJ-9900 = BJ9900Radio +[2020-12-20 21:36:17,754] chirp.directory - INFO: Registered QYT_KT8900D = KT8900D +[2020-12-20 21:36:17,754] chirp.directory - INFO: Registered BTECH_GMRS-50X1 = GMRS50X1 +[2020-12-20 21:36:17,755] chirp.directory - INFO: Registered Icom_ID-800H_v2 = ID800v2Radio +[2020-12-20 21:36:17,755] chirp.directory - INFO: Registered Boblov_X3Plus = BoblovX3Plus +[2020-12-20 21:36:17,755] chirp.directory - INFO: Registered Icom_IC-T7H = ICT7HRadio +[2020-12-20 21:36:17,755] chirp.directory - INFO: Registered Kenwood_TS-850 = TS850Radio +[2020-12-20 21:36:17,755] chirp.directory - INFO: Registered Baofeng_BF-A58 = BFA58 +[2020-12-20 21:36:17,756] chirp.directory - INFO: Registered Baofeng_UV-82WP = UV82WP +[2020-12-20 21:36:17,756] chirp.directory - INFO: Registered Kenwood_TH-D7 = THD7Radio +[2020-12-20 21:36:17,756] chirp.directory - INFO: Registered Baofeng_GT-3WP = GT3WP +[2020-12-20 21:36:17,756] chirp.directory - INFO: Registered Retevis_RT6 = RT6 +[2020-12-20 21:36:17,756] chirp.directory - INFO: Registered Kenwood_TH-D7G = THD7GRadio +[2020-12-20 21:36:17,756] chirp.directory - INFO: Registered Baofeng_BF-A58S = BFA58S +[2020-12-20 21:36:17,756] chirp.directory - INFO: Registered Kenwood_TM-D700 = TMD700Radio +[2020-12-20 21:36:17,756] chirp.directory - INFO: Registered Baofeng_UV-9R = UV9R +[2020-12-20 21:36:17,756] chirp.directory - INFO: Registered Kenwood_TM-V7 = TMV7Radio +[2020-12-20 21:36:17,756] chirp.directory - INFO: Registered Kenwood_TM-G707 = TMG707Radio +[2020-12-20 21:36:17,756] chirp.directory - INFO: Registered Kenwood_TH-G71 = THG71Radio +[2020-12-20 21:36:17,756] chirp.directory - INFO: Registered Kenwood_TH-F6 = THF6ARadio +[2020-12-20 21:36:17,756] chirp.directory - INFO: Registered Kenwood_TH-F7 = THF7ERadio +[2020-12-20 21:36:17,756] chirp.directory - INFO: Registered Kenwood_TM-D710 = TMD710Radio +[2020-12-20 21:36:17,757] chirp.directory - INFO: Registered Kenwood_TH-D72_live_mode = THD72Radio +[2020-12-20 21:36:17,757] chirp.directory - INFO: Registered Kenwood_TM-V71 = TMV71Radio +[2020-12-20 21:36:17,757] chirp.directory - INFO: Registered Kenwood_TK-868G = TK868G_Radios +[2020-12-20 21:36:17,757] chirp.directory - INFO: Registered Kenwood_TM-D710G = TMD710GRadio +[2020-12-20 21:36:17,757] chirp.directory - INFO: Registered Kenwood_TH-K2 = THK2Radio +[2020-12-20 21:36:17,757] chirp.directory - INFO: Registered Kenwood_TM-271 = TM271Radio +[2020-12-20 21:36:17,757] chirp.directory - INFO: Registered Kenwood_TM-281 = TM281Radio +[2020-12-20 21:36:17,757] chirp.directory - INFO: Registered Kenwood_TM-471 = TM471Radio +[2020-12-20 21:36:17,757] chirp.directory - INFO: Registered Kenwood_TS-590S_SG_LiveMode = TS590Radio +[2020-12-20 21:36:17,757] chirp.directory - INFO: Registered Kenwood_TS-480_LiveMode = TS480Radio +[2020-12-20 21:36:17,757] chirp.directory - INFO: Registered Kenwood_TK-862G = TK862G_Radios +[2020-12-20 21:36:17,757] chirp.directory - INFO: Registered Kenwood_TK-860G = TK860G_Radios +[2020-12-20 21:36:17,757] chirp.directory - INFO: Registered Kenwood_TK-768G = TK768G_Radios +[2020-12-20 21:36:17,758] chirp.directory - INFO: Registered Kenwood_TK-762G = TK762G_Radios +[2020-12-20 21:36:17,758] chirp.directory - INFO: Registered Kenwood_TK-760G = TK760G_Radios +[2020-12-20 21:36:17,758] chirp.directory - INFO: Registered Yaesu_FT-817 = FT817Radio +[2020-12-20 21:36:17,758] chirp.directory - INFO: Registered Kenwood_TK-388G = TK388G_Radios +[2020-12-20 21:36:17,758] chirp.directory - INFO: Registered Yaesu_FT-817ND = FT817NDRadio +[2020-12-20 21:36:17,758] chirp.directory - INFO: Registered Kenwood_TK-378G = TK378G_Radios +[2020-12-20 21:36:17,758] chirp.directory - INFO: Registered Yaesu_FT-817ND_US = FT817NDUSRadio +[2020-12-20 21:36:17,758] chirp.directory - INFO: Registered Kenwood_TK-372G = TK372G_Radios +[2020-12-20 21:36:17,758] chirp.directory - INFO: Registered Kenwood_TK-370G = TK370G_Radios +[2020-12-20 21:36:17,758] chirp.directory - INFO: Registered Kenwood_TK-360G = TK360G_Radios +[2020-12-20 21:36:17,758] chirp.directory - INFO: Registered Kenwood_TK-278G = TK278G_Radios +[2020-12-20 21:36:17,758] chirp.directory - INFO: Registered Kenwood_TK-272G = TK272G_Radios +[2020-12-20 21:36:17,758] chirp.directory - INFO: Registered Icom_ID-51 = ID51Radio +[2020-12-20 21:36:17,758] chirp.directory - INFO: Registered Kenwood_TK-270G = TK270G_Radios +[2020-12-20 21:36:17,758] chirp.directory - INFO: Registered Kenwood_TK-260G = TK260G_Radios +[2020-12-20 21:36:17,759] chirp.directory - INFO: Registered TYT_TH-350 = Th350Radio +[2020-12-20 21:36:17,759] chirp.drivers.ft7100 - DEBUG: get_features +[2020-12-20 21:36:17,759] chirp.directory - INFO: Registered Icom_IC-W32A = ICW32ARadio +[2020-12-20 21:36:17,759] chirp.directory - INFO: Registered Icom_IC-W32E = ICW32ERadio +[2020-12-20 21:36:17,759] chirp.directory - INFO: Registered Yaesu_FT-857_897 = FT857Radio +[2020-12-20 21:36:17,759] chirp.directory - INFO: Registered Yaesu_FT-857_897_US = FT857USRadio +[2020-12-20 21:36:17,760] chirp.directory - INFO: Registered LUITON_LT-725UV = LT725UV +[2020-12-20 21:36:17,760] chirp.directory - INFO: Registered TYT_TH-7800_File = TYTTH7800File +[2020-12-20 21:36:17,760] chirp.directory - INFO: Registered Baojie_BJ-218 = Baojie218 +[2020-12-20 21:36:17,760] chirp.directory - INFO: Registered TYT_TH-7800 = TYTTH7800Radio +[2020-12-20 21:36:17,761] chirp.directory - INFO: Registered Kenwood_ITM = ITMRadio +[2020-12-20 21:36:17,761] chirp.directory - INFO: Registered Wouxun_KG-UV9D_Plus = KGUV9DPlusRadio +[2020-12-20 21:36:17,761] chirp.directory - INFO: Registered Yaesu_FT-1500M = FT1500Radio +[2020-12-20 21:36:17,761] chirp.directory - INFO: Registered Rugged_RH5R-V2 = RH5RV2 +[2020-12-20 21:36:17,762] chirp.directory - INFO: Registered TYT_TH-UV8000 = THUV8000Radio +[2020-12-20 21:36:17,762] chirp.directory - INFO: Registered Yaesu_VX-170 = VX170Radio +[2020-12-20 21:36:17,762] chirp.directory - INFO: Registered Retevis_RT26 = RT26Radio +[2020-12-20 21:36:17,762] chirp.directory - INFO: Registered HobbyPCB_RS-UV3 = HobbyPCBRSUV3Radio +[2020-12-20 21:36:17,763] chirp.directory - INFO: Registered Kenwood_TS-590SG_CloneMode = TS590Radio +[2020-12-20 21:36:17,763] chirp.directory - INFO: Registered Kenwood_TS-590S_CloneMode = TS590SRadio +[2020-12-20 21:36:17,763] chirp.directory - INFO: Registered ARRL_Travel_Plus = TpeRadio +[2020-12-20 21:36:17,763] chirp.directory - INFO: Registered Icom_IC-2300H = IC2300Radio +[2020-12-20 21:36:17,763] chirp.directory - INFO: Registered Baofeng_BF-T1 = BFT1 +[2020-12-20 21:36:17,764] chirp.directory - INFO: Registered Icom_IC-T70 = ICT70Radio +[2020-12-20 21:36:17,764] chirp.directory - INFO: Registered Baofeng_BF-888 = H777Radio +[2020-12-20 21:36:17,764] chirp.directory - INFO: Registered Radioddity_GA-2S = ROGA2SRadio +[2020-12-20 21:36:17,764] chirp.directory - INFO: Registered Icom_7200 = Icom7200Radio +[2020-12-20 21:36:17,764] chirp.directory - INFO: Registered Yaesu_FT-8100 = FT8100Radio +[2020-12-20 21:36:17,764] chirp.directory - INFO: Registered Icom_IC-7000 = Icom7000Radio +[2020-12-20 21:36:17,765] chirp.directory - INFO: Registered Icom_IC-7100 = Icom7100Radio +[2020-12-20 21:36:17,765] chirp.directory - INFO: Registered Icom_746 = Icom746Radio +[2020-12-20 21:36:17,765] chirp.directory - INFO: Registered Yaesu_FTM-3200D_R = FTM3200Radio +[2020-12-20 21:36:17,765] chirp.directory - INFO: Registered Yaesu_FT-1802M = FT1802Radio +[2020-12-20 21:36:17,766] chirp.directory - INFO: Registered AnyTone_TERMN-8R = AnyToneTERMN8RRadio +[2020-12-20 21:36:17,766] chirp.directory - INFO: Registered AnyTone_OBLTR-8R = AnyToneOBLTR8RRadio +[2020-12-20 21:36:17,766] chirp.directory - INFO: Registered Puxing_PX-888K = Puxing_PX888K_Radio +[2020-12-20 21:36:17,766] chirp.directory - INFO: Registered Baofeng_UV-3R = UV3RRadio +[2020-12-20 21:36:17,767] chirp.directory - INFO: Registered Yaesu_FT-90 = FT90Radio +[2020-12-20 21:36:17,767] chirp.directory - INFO: Registered Yaesu_FT-60 = FT60Radio +[2020-12-20 21:36:17,768] chirp.directory - INFO: Registered Wouxun_KG-UV8D = KGUV8DRadio +[2020-12-20 21:36:17,768] chirp.directory - INFO: Registered Baofeng_UV-5R = BaofengUV5RGeneric +[2020-12-20 21:36:17,768] chirp.directory - INFO: Registered Baofeng_F-11 = BaofengF11Radio +[2020-12-20 21:36:17,768] chirp.directory - INFO: Registered Baofeng_UV-82 = BaofengUV82Radio +[2020-12-20 21:36:17,768] chirp.directory - INFO: Registered Radioddity_UV-82X3 = Radioddity82X3Radio +[2020-12-20 21:36:17,768] chirp.directory - INFO: Registered Baofeng_UV-6 = BaofengUV6Radio +[2020-12-20 21:36:17,768] chirp.directory - INFO: Registered Intek_KT-980HP = IntekKT980Radio +[2020-12-20 21:36:17,768] chirp.directory - INFO: Registered Baofeng_BF-F8HP = BaofengBFF8HPRadio +[2020-12-20 21:36:17,769] chirp.directory - INFO: Registered Baofeng_UV-82HP = BaofengUV82HPRadio +[2020-12-20 21:36:17,769] chirp.directory - INFO: Registered Radioddity_UV-5RX3 = RadioddityUV5RX3Radio +[2020-12-20 21:36:17,769] chirp.directory - INFO: Registered AnyTone_5888UV = AnyTone5888UVRadio +[2020-12-20 21:36:17,769] chirp.directory - INFO: Registered Intek_HR-2040 = IntekHR2040Radio +[2020-12-20 21:36:17,769] chirp.directory - INFO: Registered Polmar_DB-50M = PolmarDB50MRadio +[2020-12-20 21:36:17,769] chirp.directory - INFO: Registered Powerwerx_DB-750X = PowerwerxDB750XRadio +[2020-12-20 21:36:17,770] chirp.directory - INFO: Registered BTECH_MURS-V1 = MURSV1 +[2020-12-20 21:36:17,771] chirp.directory - INFO: Registered Yaesu_FTM-350 = FTM350Radio +[2020-12-20 21:36:17,772] chirp.directory - INFO: Registered Yaesu_FT-50 = FT50Radio +[2020-12-20 21:36:17,772] chirp.directory - INFO: Registered Kenwood_TS-2000 = TS2000Radio +[2020-12-20 21:36:17,772] chirp.directory - INFO: Registered TYT_TH-9800_File = TYTTH9800File +[2020-12-20 21:36:17,773] chirp.directory - INFO: Registered TYT_TH-9800 = TYTTH9800Radio +[2020-12-20 21:36:17,774] chirp.directory - INFO: Registered Leixen_VV-898 = LeixenVV898Radio +[2020-12-20 21:36:17,774] chirp.directory - INFO: Registered Jetstream_JT270M = JetstreamJT270MRadio +[2020-12-20 21:36:17,774] chirp.directory - INFO: Registered Jetstream_JT270MH = JetstreamJT270MHRadio +[2020-12-20 21:36:17,774] chirp.directory - INFO: Registered Leixen_VV-898S = LeixenVV898SRadio +[2020-12-20 21:36:17,775] chirp.directory - INFO: Registered Kenwood_TK-760 = TK760_Radio +[2020-12-20 21:36:17,775] chirp.directory - INFO: Registered Kenwood_TK-762 = TK762_Radio +[2020-12-20 21:36:17,775] chirp.directory - INFO: Registered Kenwood_TK-768 = TK768_Radio +[2020-12-20 21:36:17,775] chirp.directory - INFO: Registered Kenwood_TK-860 = TK860_Radio +[2020-12-20 21:36:17,775] chirp.directory - INFO: Registered Kenwood_TK-862 = TK862_Radio +[2020-12-20 21:36:17,776] chirp.directory - INFO: Registered Kenwood_TK-868 = TK868_Radio +[2020-12-20 21:36:17,776] chirp.directory - INFO: Registered Baojie_BJ-UV55 = BaojieBJUV55Radio +[2020-12-20 21:36:17,778] chirp.directory - INFO: Registered Yaesu_FT-70D = FT70Radio +[2020-12-20 21:36:17,778] chirp.directory - INFO: Registered Radioddity_R2 = RadioddityR2Radio +[2020-12-20 21:36:17,779] chirp.directory - INFO: Registered TYT_TH-UVF1 = TYTTHUVF1Radio +[2020-12-20 21:36:17,780] chirp.directory - INFO: Registered Yaesu_VX-6 = VX6Radio +[2020-12-20 21:36:17,781] chirp.directory - INFO: Registered Feidaxin_FD-268A = FD268ARadio +[2020-12-20 21:36:17,781] chirp.directory - INFO: Registered Feidaxin_FD-268B = FD268BRadio +[2020-12-20 21:36:17,781] chirp.directory - INFO: Registered Feidaxin_FD-288A = FD288ARadio +[2020-12-20 21:36:17,781] chirp.directory - INFO: Registered Feidaxin_FD-288B = FD288BRadio +[2020-12-20 21:36:17,781] chirp.directory - INFO: Registered Feidaxin_FD-150A = FD150ARadio +[2020-12-20 21:36:17,781] chirp.directory - INFO: Registered Feidaxin_FD-160A = FD160ARadio +[2020-12-20 21:36:17,781] chirp.directory - INFO: Registered Feidaxin_FD-450A = FD450ARadio +[2020-12-20 21:36:17,781] chirp.directory - INFO: Registered Feidaxin_FD-460A = FD460ARadio +[2020-12-20 21:36:17,781] chirp.directory - INFO: Registered Feidaxin_FD-460UH = FD460UHRadio +[2020-12-20 21:36:17,782] chirp.directory - INFO: Registered Yaesu_FT-450D = FT450DRadio +[2020-12-20 21:36:17,783] chirp.directory - INFO: Registered Kenwood_TH-D72_clone_mode = THD72Radio +[2020-12-20 21:36:17,783] chirp.directory - INFO: Registered Icom_ID-880H = ID880Radio +[2020-12-20 21:36:17,783] chirp.directory - INFO: Registered Icom_ID-80H = ID80Radio +[2020-12-20 21:36:17,784] chirp.directory - INFO: Registered BTECH_UV-50X3 = UV50X3 +[2020-12-20 21:36:17,784] chirp.directory - INFO: Registered KYD_IP-620 = IP620Radio +[2020-12-20 21:36:17,785] chirp.directory - INFO: Registered Yaesu_FT-818 = FT818Radio +[2020-12-20 21:36:17,785] chirp.directory - INFO: Registered Yaesu_FT-818ND_US = FT818NDUSRadio +[2020-12-20 21:36:17,786] chirp.directory - INFO: Registered Wouxun_KG-UVD1P = KGUVD1PRadio +[2020-12-20 21:36:17,787] chirp.directory - INFO: Registered Wouxun_KG-UV6 = KGUV6DRadio +[2020-12-20 21:36:17,787] chirp.directory - INFO: Registered Wouxun_KG-816 = KG816Radio +[2020-12-20 21:36:17,787] chirp.directory - INFO: Registered Wouxun_KG-818 = KG818Radio +[2020-12-20 21:36:17,787] chirp.directory - INFO: Registered TYT_TH-UV3R = TYTUV3RRadio +[2020-12-20 21:36:17,787] chirp.directory - INFO: Registered TYT_TH-UV3R-25 = TYTUV3R25Radio +[2020-12-20 21:36:17,788] chirp.directory - INFO: Registered Yaesu_FT-7800_7900 = FT7800Radio +[2020-12-20 21:36:17,788] chirp.directory - INFO: Registered Yaesu_FT-8800 = FT8800Radio +[2020-12-20 21:36:17,788] chirp.directory - INFO: Registered Yaesu_FT-8900 = FT8900Radio +[2020-12-20 21:36:17,789] chirp.directory - INFO: Registered Vertex_Standard_VXA-700 = VXA700Radio +[2020-12-20 21:36:17,789] chirp.directory - INFO: Registered TYT_TH-UVF8D = TYTUVF8DRadio +[2020-12-20 21:36:17,790] chirp.directory - INFO: Registered Yaesu_FT-4XR = YaesuFT4XRRadio +[2020-12-20 21:36:17,790] chirp.directory - INFO: Registered Yaesu_FT-4XE = YaesuFT4XERadio +[2020-12-20 21:36:17,791] chirp.directory - INFO: Registered Yaesu_FT-4VR = YaesuFT4VRRadio +[2020-12-20 21:36:17,791] chirp.directory - INFO: Registered Yaesu_FT-65R = YaesuFT65RRadio +[2020-12-20 21:36:17,791] chirp.directory - INFO: Registered Yaesu_FT-65E = YaesuFT65ERadio +[2020-12-20 21:36:17,791] chirp.directory - INFO: Registered Yaesu_FT-25R = YaesuFT25RRadio +[2020-12-20 21:36:17,791] chirp.drivers.ft7100 - DEBUG: get_features +[2020-12-20 21:36:17,791] chirp.directory - INFO: Registered BTECH_GMRS-V1 = GMRSV1 +[2020-12-20 21:36:17,792] chirp.directory - INFO: Registered Icom_IC-208H = IC208Radio +[2020-12-20 21:36:17,792] chirp.directory - INFO: Registered Yaesu_VX-2 = VX2Radio +[2020-12-20 21:36:17,793] chirp.directory - INFO: Registered Alinco_DR03T = DR03Radio +[2020-12-20 21:36:17,793] chirp.directory - INFO: Registered Alinco_DR06T = DR06Radio +[2020-12-20 21:36:17,793] chirp.directory - INFO: Registered Alinco_DR135T = DR135Radio +[2020-12-20 21:36:17,793] chirp.directory - INFO: Registered Alinco_DR235T = DR235Radio +[2020-12-20 21:36:17,793] chirp.directory - INFO: Registered Alinco_DR435T = DR435Radio +[2020-12-20 21:36:17,793] chirp.directory - INFO: Registered Alinco_DJ596 = DJ596Radio +[2020-12-20 21:36:17,793] chirp.directory - INFO: Registered Jetstream_JT220M = JT220MRadio +[2020-12-20 21:36:17,793] chirp.directory - INFO: Registered Alinco_DJ175 = DJ175Radio +[2020-12-20 21:36:17,793] chirp.directory - INFO: Registered Alinco_DJ-G7EG = AlincoDJG7EG +[2020-12-20 21:36:17,794] chirp.directory - INFO: Registered Puxing_PX-777 = Puxing777Radio +[2020-12-20 21:36:17,794] chirp.directory - INFO: Registered Puxing_PX-2R = Puxing2RRadio +[2020-12-20 21:36:17,794] chirp.directory - INFO: Registered Icom_IC-91_92AD = IC9xRadio +[2020-12-20 21:36:17,795] chirp.directory - INFO: Registered Radtel_T18 = T18Radio +[2020-12-20 21:36:17,795] chirp.directory - INFO: Registered Kenwood_TK-7102 = KenwoodTK7102Radio +[2020-12-20 21:36:17,795] chirp.directory - INFO: Registered Kenwood_TK-8102 = KenwoodTK8102Radio +[2020-12-20 21:36:17,795] chirp.directory - INFO: Registered Kenwood_TK-7108 = KenwoodTK7108Radio +[2020-12-20 21:36:17,795] chirp.directory - INFO: Registered Kenwood_TK-8108 = KenwoodTK8108Radio +[2020-12-20 21:36:17,796] chirp.directory - INFO: Registered Yaesu_VX-8R = VX8Radio +[2020-12-20 21:36:17,796] chirp.directory - INFO: Registered Yaesu_VX-8DR = VX8DRadio +[2020-12-20 21:36:17,797] chirp.directory - INFO: Registered Yaesu_VX-8GE = VX8GERadio +[2020-12-20 21:36:17,797] chirp.directory - INFO: Registered Icom_IC-2200H = IC2200Radio +[2020-12-20 21:36:17,798] chirp.directory - INFO: Registered Yaesu_FT-2900R_1900R = FT2900Radio +[2020-12-20 21:36:17,798] chirp.directory - INFO: Registered Kenwood_TK-260 = TK260_Radio +[2020-12-20 21:36:17,799] chirp.directory - INFO: Registered Kenwood_TK-270 = TK270_Radio +[2020-12-20 21:36:17,799] chirp.directory - INFO: Registered Kenwood_TK-272 = TK272_Radio +[2020-12-20 21:36:17,799] chirp.directory - INFO: Registered Kenwood_TK-278 = TK278_Radio +[2020-12-20 21:36:17,799] chirp.directory - INFO: Registered Kenwood_TK-360 = TK360_Radio +[2020-12-20 21:36:17,799] chirp.directory - INFO: Registered Kenwood_TK-370 = TK370_Radio +[2020-12-20 21:36:17,799] chirp.directory - INFO: Registered Kenwood_TK-372 = TK372_Radio +[2020-12-20 21:36:17,799] chirp.directory - INFO: Registered Kenwood_TK-378 = TK378_Radio +[2020-12-20 21:36:17,799] chirp.directory - INFO: Registered Retevis_RT23 = RT23Radio +[2020-12-20 21:36:17,800] chirp.directory - INFO: Registered Icom_IC-V82_U82 = ICx8xRadio +[2020-12-20 21:36:17,800] chirp.directory - INFO: Registered Wouxun_KG-UV8D_Plus = KGUV8DPlusRadio +[2020-12-20 21:36:17,801] chirp.directory - INFO: Registered Icom_IC-Q7A = ICQ7Radio +[2020-12-20 21:36:17,801] chirp.directory - INFO: Registered Baojie_BJ-9900 = BJ9900Radio +[2020-12-20 21:36:17,802] chirp.directory - INFO: Registered Icom_ID-800H_v2 = ID800v2Radio +[2020-12-20 21:36:17,802] chirp.directory - INFO: Registered Kenwood_TS-850 = TS850Radio +[2020-12-20 21:36:17,803] chirp.directory - INFO: Registered Baofeng_BF-A58 = BFA58 +[2020-12-20 21:36:17,803] chirp.directory - INFO: Registered Baofeng_UV-82WP = UV82WP +[2020-12-20 21:36:17,803] chirp.directory - INFO: Registered Baofeng_GT-3WP = GT3WP +[2020-12-20 21:36:17,803] chirp.directory - INFO: Registered Retevis_RT6 = RT6 +[2020-12-20 21:36:17,803] chirp.directory - INFO: Registered Baofeng_BF-A58S = BFA58S +[2020-12-20 21:36:17,803] chirp.directory - INFO: Registered Baofeng_UV-9R = UV9R +[2020-12-20 21:36:17,804] chirp.directory - INFO: Registered Kenwood_TK-868G = TK868G_Radios +[2020-12-20 21:36:17,804] chirp.directory - INFO: Registered Kenwood_TK-862G = TK862G_Radios +[2020-12-20 21:36:17,804] chirp.directory - INFO: Registered Kenwood_TK-860G = TK860G_Radios +[2020-12-20 21:36:17,805] chirp.directory - INFO: Registered Kenwood_TK-768G = TK768G_Radios +[2020-12-20 21:36:17,805] chirp.directory - INFO: Registered Kenwood_TK-762G = TK762G_Radios +[2020-12-20 21:36:17,805] chirp.directory - INFO: Registered Kenwood_TK-760G = TK760G_Radios +[2020-12-20 21:36:17,805] chirp.directory - INFO: Registered Kenwood_TK-388G = TK388G_Radios +[2020-12-20 21:36:17,805] chirp.directory - INFO: Registered Kenwood_TK-378G = TK378G_Radios +[2020-12-20 21:36:17,805] chirp.directory - INFO: Registered Kenwood_TK-372G = TK372G_Radios +[2020-12-20 21:36:17,805] chirp.directory - INFO: Registered Kenwood_TK-370G = TK370G_Radios +[2020-12-20 21:36:17,805] chirp.directory - INFO: Registered Kenwood_TK-360G = TK360G_Radios +[2020-12-20 21:36:17,805] chirp.directory - INFO: Registered Kenwood_TK-278G = TK278G_Radios +[2020-12-20 21:36:17,805] chirp.directory - INFO: Registered Kenwood_TK-272G = TK272G_Radios +[2020-12-20 21:36:17,805] chirp.directory - INFO: Registered Kenwood_TK-270G = TK270G_Radios +[2020-12-20 21:36:17,805] chirp.directory - INFO: Registered Kenwood_TK-260G = TK260G_Radios +[2020-12-20 21:36:17,806] chirp.directory - INFO: Registered Icom_IC-W32A = ICW32ARadio +[2020-12-20 21:36:17,806] chirp.directory - INFO: Registered Icom_IC-W32E = ICW32ERadio +[2020-12-20 21:36:17,806] chirp.drivers.ft7100 - DEBUG: get_features +[2020-12-20 21:36:17,807] chirp.directory - INFO: Registered LUITON_LT-725UV = LT725UV +[2020-12-20 21:36:17,807] chirp.directory - INFO: Registered Baojie_BJ-218 = Baojie218 +[2020-12-20 21:36:17,808] chirp.directory - INFO: Registered Wouxun_KG-UV9D_Plus = KGUV9DPlusRadio +[2020-12-20 21:36:17,808] chirp.directory - INFO: Registered Rugged_RH5R-V2 = RH5RV2 +[2020-12-20 21:36:17,809] chirp.directory - INFO: Registered Yaesu_VX-170 = VX170Radio +[2020-12-20 21:36:17,809] chirp.directory - INFO: Registered HobbyPCB_RS-UV3 = HobbyPCBRSUV3Radio +[2020-12-20 21:36:17,810] chirp.directory - INFO: Registered ARRL_Travel_Plus = TpeRadio +[2020-12-20 21:36:17,810] chirp.directory - INFO: Registered Icom_IC-2300H = IC2300Radio +[2020-12-20 21:36:17,811] chirp.directory - INFO: Registered Icom_IC-T70 = ICT70Radio +[2020-12-20 21:36:17,811] chirp.directory - INFO: Registered Icom_7200 = Icom7200Radio +[2020-12-20 21:36:17,811] chirp.directory - INFO: Registered Icom_IC-7000 = Icom7000Radio +[2020-12-20 21:36:17,811] chirp.directory - INFO: Registered Icom_IC-7100 = Icom7100Radio +[2020-12-20 21:36:17,811] chirp.directory - INFO: Registered Icom_746 = Icom746Radio +[2020-12-20 21:36:17,812] chirp.directory - INFO: Registered Yaesu_FTM-3200D_R = FTM3200Radio +[2020-12-20 21:36:17,813] chirp.directory - INFO: Registered Puxing_PX-888K = Puxing_PX888K_Radio +[2020-12-20 21:36:17,813] chirp.directory - INFO: Registered Yaesu_FT-60 = FT60Radio +[2020-12-20 21:36:17,814] chirp.directory - INFO: Registered Wouxun_KG-UV8D = KGUV8DRadio +[2020-12-20 21:36:17,850] chirp.drivers.ft7100 - DEBUG: get_features +[2020-12-20 21:36:18,958] chirp.chirp_common - DEBUG: Image data has no metadata blob +[2020-12-20 21:36:18,962] chirp.directory - ERROR: Radio class CSVRadio failed during detection: 'str' object has no attribute 'decode' +[2020-12-20 21:36:18,962] chirp.directory - ERROR: Radio class CommanderCSVRadio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str +[2020-12-20 21:36:18,962] chirp.directory - ERROR: Radio class RTCSVRadio failed during detection: 'str' object has no attribute 'decode' +[2020-12-20 21:36:18,962] chirp.directory - ERROR: Radio class BaofengUVB5 failed during detection: startswith first arg must be bytes or a tuple of bytes, not str +[2020-12-20 21:36:18,962] chirp.directory - ERROR: Radio class RT1Radio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str +[2020-12-20 21:36:18,962] chirp.directory - ERROR: Radio class RT21Radio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str +[2020-12-20 21:36:18,962] chirp.directory - ERROR: Radio class KGUV8ERadio failed during detection: a bytes-like object is required, not 'str' +[2020-12-20 21:36:18,963] chirp.drivers.boblov_x3plus - DEBUG: Boblov_x3plus: match_model: size mismatch +[2020-12-20 21:36:18,963] chirp.drivers.boblov_x3plus - DEBUG: Boblov_x3plus: match_model: size mismatch +[2020-12-20 21:36:18,963] chirp.directory - ERROR: Radio class Th350Radio failed during detection: startswith first arg must be str or a tuple of str, not bytes +[2020-12-20 21:36:18,963] chirp.directory - ERROR: Radio class RT26Radio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str +[2020-12-20 21:36:18,963] chirp.directory - ERROR: Radio class AnyToneTERMN8RRadio failed during detection: a bytes-like object is required, not 'str' +[2020-12-20 21:36:18,963] chirp.directory - ERROR: Radio class AnyToneOBLTR8RRadio failed during detection: a bytes-like object is required, not 'str' +[2020-12-20 21:36:18,963] chirp.directory - ERROR: Radio class AnyTone5888UVRadio failed during detection: a bytes-like object is required, not 'str' +[2020-12-20 21:36:18,963] chirp.directory - ERROR: Radio class IntekHR2040Radio failed during detection: a bytes-like object is required, not 'str' +[2020-12-20 21:36:18,963] chirp.directory - WARNING: Radio driver PolmarDB50MRadio needs py3 match_model conversion! +[2020-12-20 21:36:18,986] chirp.drivers.anytone - ERROR: Error writing to radio: Bar +[2020-12-20 21:36:19,054] chirp.drivers.anytone - ERROR: Error writing to radio: Bar +[2020-12-20 21:36:19,054] chirp.drivers.anytone - ERROR: Error writing to radio: name 'six' is not defined +[2020-12-20 21:36:19,117] chirp.drivers.anytone - ERROR: Error writing to radio: name 'six' is not defined +[2020-12-20 21:36:19,117] chirp.drivers.anytone - ERROR: Error writing to radio: name 'six' is not defined +[2020-12-20 21:36:19,179] chirp.drivers.anytone - ERROR: Error writing to radio: name 'six' is not defined +[2020-12-20 21:36:19,179] chirp.drivers.anytone - ERROR: Error writing to radio: name 'six' is not defined +[2020-12-20 21:36:19,239] chirp.drivers.anytone - ERROR: Error writing to radio: name 'six' is not defined +[2020-12-20 21:36:19,399] chirp.chirp_common - DEBUG: Image data has no metadata blob +[2020-12-20 21:36:19,402] chirp.directory - ERROR: Radio class CSVRadio failed during detection: 'str' object has no attribute 'decode' +[2020-12-20 21:36:19,402] chirp.directory - ERROR: Radio class CommanderCSVRadio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str +[2020-12-20 21:36:19,402] chirp.directory - ERROR: Radio class RTCSVRadio failed during detection: 'str' object has no attribute 'decode' +[2020-12-20 21:36:19,402] chirp.directory - ERROR: Radio class BaofengUVB5 failed during detection: startswith first arg must be bytes or a tuple of bytes, not str +[2020-12-20 21:36:19,402] chirp.directory - ERROR: Radio class RT1Radio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str +[2020-12-20 21:36:19,402] chirp.directory - ERROR: Radio class RT21Radio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str +[2020-12-20 21:36:19,402] chirp.directory - ERROR: Radio class KGUV8ERadio failed during detection: a bytes-like object is required, not 'str' +[2020-12-20 21:36:19,403] chirp.drivers.boblov_x3plus - DEBUG: Boblov_x3plus: match_model: size mismatch +[2020-12-20 21:36:19,403] chirp.drivers.boblov_x3plus - DEBUG: Boblov_x3plus: match_model: size mismatch +[2020-12-20 21:36:19,403] chirp.directory - ERROR: Radio class Th350Radio failed during detection: startswith first arg must be str or a tuple of str, not bytes +[2020-12-20 21:36:19,403] chirp.directory - ERROR: Radio class RT26Radio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str +[2020-12-20 21:36:19,403] chirp.directory - ERROR: Radio class AnyToneTERMN8RRadio failed during detection: a bytes-like object is required, not 'str' +[2020-12-20 21:36:19,403] chirp.directory - ERROR: Radio class AnyToneOBLTR8RRadio failed during detection: a bytes-like object is required, not 'str' +[2020-12-20 21:36:19,403] chirp.directory - ERROR: Radio class AnyTone5888UVRadio failed during detection: a bytes-like object is required, not 'str' +[2020-12-20 21:36:19,403] chirp.directory - ERROR: Radio class IntekHR2040Radio failed during detection: a bytes-like object is required, not 'str' +[2020-12-20 21:36:19,403] chirp.directory - ERROR: Radio class PolmarDB50MRadio failed during detection: a bytes-like object is required, not 'str' +[2020-12-20 21:36:19,403] chirp.directory - ERROR: Radio class PowerwerxDB750XRadio failed during detection: a bytes-like object is required, not 'str' +[2020-12-20 21:36:19,403] chirp.directory - ERROR: Radio class FTM350Radio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str +[2020-12-20 21:36:19,403] chirp.directory - ERROR: Radio class LeixenVV898Radio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str +[2020-12-20 21:36:19,404] chirp.directory - ERROR: Radio class JetstreamJT270MRadio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str +[2020-12-20 21:36:19,404] chirp.directory - ERROR: Radio class JetstreamJT270MHRadio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str +[2020-12-20 21:36:19,404] chirp.directory - ERROR: Radio class LeixenVV898SRadio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str +[2020-12-20 21:36:19,404] chirp.directory - ERROR: Radio class TK760_Radio failed during detection: can only concatenate str (not "int") to str +[2020-12-20 21:36:19,404] chirp.directory - ERROR: Radio class TK762_Radio failed during detection: can only concatenate str (not "int") to str +[2020-12-20 21:36:19,404] chirp.directory - ERROR: Radio class TK768_Radio failed during detection: can only concatenate str (not "int") to str +[2020-12-20 21:36:19,404] chirp.directory - ERROR: Radio class TK860_Radio failed during detection: can only concatenate str (not "int") to str +[2020-12-20 21:36:19,404] chirp.directory - ERROR: Radio class TK862_Radio failed during detection: can only concatenate str (not "int") to str +[2020-12-20 21:36:19,404] chirp.directory - ERROR: Radio class TK868_Radio failed during detection: can only concatenate str (not "int") to str +[2020-12-20 21:36:19,404] chirp.directory - ERROR: Radio class TYTTHUVF1Radio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str +[2020-12-20 21:36:19,404] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: +[2020-12-20 21:36:19,404] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 31 00 00 00 00 AH01.... + +[2020-12-20 21:36:19,404] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: +[2020-12-20 21:36:19,404] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 31 00 00 00 00 AH01.... + +[2020-12-20 21:36:19,405] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: +[2020-12-20 21:36:19,405] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 31 00 00 00 00 AH01.... + +[2020-12-20 21:36:19,405] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: +[2020-12-20 21:36:19,405] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 31 00 00 00 00 AH01.... + +[2020-12-20 21:36:19,405] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: +[2020-12-20 21:36:19,405] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 31 00 00 00 00 AH01.... + +[2020-12-20 21:36:19,405] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: +[2020-12-20 21:36:19,405] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 31 00 00 00 00 AH01.... + +[2020-12-20 21:36:19,405] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: +[2020-12-20 21:36:19,405] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 31 00 00 00 00 AH01.... + +[2020-12-20 21:36:19,405] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: +[2020-12-20 21:36:19,405] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 31 00 00 00 00 AH01.... + +[2020-12-20 21:36:19,405] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: +[2020-12-20 21:36:19,406] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 31 00 00 00 00 AH01.... + +[2020-12-20 21:36:19,406] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: +[2020-12-20 21:36:19,406] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 31 00 00 00 00 AH01.... + +[2020-12-20 21:36:19,406] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: +[2020-12-20 21:36:19,406] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 31 00 00 00 00 AH01.... + +[2020-12-20 21:36:19,406] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: +[2020-12-20 21:36:19,406] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 31 00 00 00 00 AH01.... + +[2020-12-20 21:36:19,406] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: +[2020-12-20 21:36:19,406] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 31 00 00 00 00 AH01.... + +[2020-12-20 21:36:19,406] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: +[2020-12-20 21:36:19,406] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 31 00 00 00 00 AH01.... + +[2020-12-20 21:36:19,406] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: +[2020-12-20 21:36:19,406] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 31 00 00 00 00 AH01.... + +[2020-12-20 21:36:19,406] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: +[2020-12-20 21:36:19,406] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 31 00 00 00 00 AH01.... + +[2020-12-20 21:36:19,407] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: +[2020-12-20 21:36:19,407] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 31 00 00 00 00 AH01.... + +[2020-12-20 21:36:19,407] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: +[2020-12-20 21:36:19,407] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 31 00 00 00 00 AH01.... + +[2020-12-20 21:36:19,407] chirp.directory - ERROR: Radio class UV50X3 failed during detection: 'in ' requires string as left operand, not bytes +[2020-12-20 21:36:19,407] chirp.directory - WARNING: Radio driver FT8800Radio needs py3 match_model conversion! +[2020-12-20 21:36:19,409] chirp.chirp_common - DEBUG: Loaded metadata: {'vendor': 'Baofeng', 'model': 'BF-A58S', 'chirp_version': 'daily-20190925', 'rclass': 'BFA58S', 'variant': ''} +[2020-12-20 21:36:19,410] chirp.chirp_common - DEBUG: Parsed version 'daily-20190925' to (20190925,) +[2020-12-20 21:36:19,410] chirp.chirp_common - ERROR: Failed to parse my version '0.3.0dev': invalid literal for int() with base 10: '0dev' +[2020-12-20 21:36:19,410] chirp.chirp_common - WARNING: Image is from version daily-20190925 but we are 0.3.0dev +[2020-12-20 21:36:19,465] chirp.chirp_common - DEBUG: Loaded metadata: {'vendor': 'Baofeng', 'model': 'BF-A58S', 'chirp_version': 'daily-20190925', 'rclass': 'BFA58S', 'variant': ''} +[2020-12-20 21:36:19,465] chirp.chirp_common - DEBUG: Parsed version 'daily-20190925' to (20190925,) +[2020-12-20 21:36:19,465] chirp.chirp_common - ERROR: Failed to parse my version '0.3.0dev': invalid literal for int() with base 10: '0dev' +[2020-12-20 21:36:19,465] chirp.chirp_common - WARNING: Image is from version daily-20190925 but we are 0.3.0dev +[2020-12-20 21:36:19,586] chirp.chirp_common - DEBUG: Loaded metadata: {'vendor': 'Baofeng', 'model': 'BF-A58S', 'chirp_version': 'daily-20190925', 'rclass': 'BFA58S', 'variant': ''} +[2020-12-20 21:36:19,586] chirp.chirp_common - DEBUG: Parsed version 'daily-20190925' to (20190925,) +[2020-12-20 21:36:19,587] chirp.chirp_common - ERROR: Failed to parse my version '0.3.0dev': invalid literal for int() with base 10: '0dev' +[2020-12-20 21:36:19,587] chirp.chirp_common - WARNING: Image is from version daily-20190925 but we are 0.3.0dev +[2020-12-20 21:36:19,737] chirp.chirp_common - DEBUG: Loaded metadata: {'vendor': 'Baofeng', 'model': 'BF-A58S', 'chirp_version': 'daily-20190925', 'rclass': 'BFA58S', 'variant': ''} +[2020-12-20 21:36:19,737] chirp.chirp_common - DEBUG: Parsed version 'daily-20190925' to (20190925,) +[2020-12-20 21:36:19,737] chirp.chirp_common - ERROR: Failed to parse my version '0.3.0dev': invalid literal for int() with base 10: '0dev' +[2020-12-20 21:36:19,737] chirp.chirp_common - WARNING: Image is from version daily-20190925 but we are 0.3.0dev +[2020-12-20 21:36:19,856] chirp.chirp_common - DEBUG: Loaded metadata: {'vendor': 'Baofeng', 'model': 'BF-A58S', 'chirp_version': 'daily-20190925', 'rclass': 'BFA58S', 'variant': ''} +[2020-12-20 21:36:19,856] chirp.chirp_common - DEBUG: Parsed version 'daily-20190925' to (20190925,) +[2020-12-20 21:36:19,856] chirp.chirp_common - ERROR: Failed to parse my version '0.3.0dev': invalid literal for int() with base 10: '0dev' +[2020-12-20 21:36:19,856] chirp.chirp_common - WARNING: Image is from version daily-20190925 but we are 0.3.0dev +[2020-12-20 21:36:19,910] chirp.chirp_common - DEBUG: Loaded metadata: {'vendor': 'Baofeng', 'model': 'BF-A58S', 'chirp_version': 'daily-20190925', 'rclass': 'BFA58S', 'variant': ''} +[2020-12-20 21:36:19,910] chirp.chirp_common - DEBUG: Parsed version 'daily-20190925' to (20190925,) +[2020-12-20 21:36:19,910] chirp.chirp_common - ERROR: Failed to parse my version '0.3.0dev': invalid literal for int() with base 10: '0dev' +[2020-12-20 21:36:19,910] chirp.chirp_common - WARNING: Image is from version daily-20190925 but we are 0.3.0dev +[2020-12-20 21:36:19,914] chirp.chirp_common - DEBUG: Loaded metadata: {'vendor': 'Baofeng', 'model': 'BF-A58S', 'chirp_version': 'daily-20190925', 'rclass': 'BFA58S', 'variant': ''} +[2020-12-20 21:36:19,915] chirp.chirp_common - DEBUG: Parsed version 'daily-20190925' to (20190925,) +[2020-12-20 21:36:19,915] chirp.chirp_common - ERROR: Failed to parse my version '0.3.0dev': invalid literal for int() with base 10: '0dev' +[2020-12-20 21:36:19,915] chirp.chirp_common - WARNING: Image is from version daily-20190925 but we are 0.3.0dev +[2020-12-20 21:36:19,969] chirp.chirp_common - DEBUG: Loaded metadata: {'vendor': 'Baofeng', 'model': 'BF-A58S', 'chirp_version': 'daily-20190925', 'rclass': 'BFA58S', 'variant': ''} +[2020-12-20 21:36:19,969] chirp.chirp_common - DEBUG: Parsed version 'daily-20190925' to (20190925,) +[2020-12-20 21:36:19,969] chirp.chirp_common - ERROR: Failed to parse my version '0.3.0dev': invalid literal for int() with base 10: '0dev' +[2020-12-20 21:36:19,969] chirp.chirp_common - WARNING: Image is from version daily-20190925 but we are 0.3.0dev +[2020-12-20 21:36:20,054] chirp.chirp_common - DEBUG: Loaded metadata: {'vendor': 'Baofeng', 'model': 'BF-A58S', 'chirp_version': 'daily-20190925', 'rclass': 'BFA58S', 'variant': ''} +[2020-12-20 21:36:20,055] chirp.chirp_common - DEBUG: Loaded metadata: {'vendor': 'Baofeng', 'model': 'BF-A58S', 'chirp_version': 'daily-20190925', 'rclass': 'BFA58S', 'variant': ''} +[2020-12-20 21:36:20,055] chirp.chirp_common - DEBUG: Parsed version 'daily-20190925' to (20190925,) +[2020-12-20 21:36:20,056] chirp.chirp_common - ERROR: Failed to parse my version '0.3.0dev': invalid literal for int() with base 10: '0dev' +[2020-12-20 21:36:20,056] chirp.chirp_common - WARNING: Image is from version daily-20190925 but we are 0.3.0dev +[2020-12-20 21:36:20,090] chirp.chirp_common - DEBUG: Loaded metadata: {'vendor': 'Baofeng', 'model': 'BF-A58S', 'chirp_version': 'daily-20190925', 'rclass': 'BFA58S', 'variant': ''} +[2020-12-20 21:36:20,090] chirp.chirp_common - DEBUG: Parsed version 'daily-20190925' to (20190925,) +[2020-12-20 21:36:20,090] chirp.chirp_common - ERROR: Failed to parse my version '0.3.0dev': invalid literal for int() with base 10: '0dev' +[2020-12-20 21:36:20,090] chirp.chirp_common - WARNING: Image is from version daily-20190925 but we are 0.3.0dev +[2020-12-20 21:36:20,136] chirp.chirp_common - DEBUG: Loaded metadata: {'vendor': 'Baofeng', 'model': 'BF-A58S', 'chirp_version': 'daily-20190925', 'rclass': 'BFA58S', 'variant': ''} +[2020-12-20 21:36:20,136] chirp.chirp_common - DEBUG: Parsed version 'daily-20190925' to (20190925,) +[2020-12-20 21:36:20,136] chirp.chirp_common - ERROR: Failed to parse my version '0.3.0dev': invalid literal for int() with base 10: '0dev' +[2020-12-20 21:36:20,136] chirp.chirp_common - WARNING: Image is from version daily-20190925 but we are 0.3.0dev +[2020-12-20 21:36:20,145] chirp.chirp_common - DEBUG: Loaded metadata: {'vendor': 'Baofeng', 'model': 'BF-A58S', 'chirp_version': 'daily-20190925', 'rclass': 'BFA58S', 'variant': ''} +[2020-12-20 21:36:20,145] chirp.chirp_common - DEBUG: Parsed version 'daily-20190925' to (20190925,) +[2020-12-20 21:36:20,145] chirp.chirp_common - ERROR: Failed to parse my version '0.3.0dev': invalid literal for int() with base 10: '0dev' +[2020-12-20 21:36:20,145] chirp.chirp_common - WARNING: Image is from version daily-20190925 but we are 0.3.0dev +[2020-12-20 21:36:20,177] chirp.chirp_common - DEBUG: Loaded metadata: {'vendor': 'Baofeng', 'model': 'BF-A58S', 'chirp_version': 'daily-20190925', 'rclass': 'BFA58S', 'variant': ''} +[2020-12-20 21:36:20,177] chirp.chirp_common - DEBUG: Parsed version 'daily-20190925' to (20190925,) +[2020-12-20 21:36:20,177] chirp.chirp_common - ERROR: Failed to parse my version '0.3.0dev': invalid literal for int() with base 10: '0dev' +[2020-12-20 21:36:20,177] chirp.chirp_common - WARNING: Image is from version daily-20190925 but we are 0.3.0dev +[2020-12-20 21:36:20,195] chirp.drivers.baofeng_common - DEBUG: Setting squelch = 3 +[2020-12-20 21:36:20,195] chirp.drivers.baofeng_common - DEBUG: Setting save = 1:3 +[2020-12-20 21:36:20,195] chirp.drivers.baofeng_common - DEBUG: Setting vox = Off +[2020-12-20 21:36:20,195] chirp.drivers.baofeng_common - DEBUG: Setting abr = 5 +[2020-12-20 21:36:20,195] chirp.drivers.baofeng_common - DEBUG: Setting tdr = False +[2020-12-20 21:36:20,195] chirp.drivers.baofeng_common - DEBUG: Setting beep = True +[2020-12-20 21:36:20,195] chirp.drivers.baofeng_common - DEBUG: Setting timeout = 60 sec +[2020-12-20 21:36:20,195] chirp.drivers.baofeng_common - DEBUG: Setting voice = English +[2020-12-20 21:36:20,195] chirp.drivers.baofeng_common - DEBUG: Setting dtmfst = DT+ANI +[2020-12-20 21:36:20,196] chirp.drivers.baofeng_common - DEBUG: Setting screv = TO +[2020-12-20 21:36:20,196] chirp.drivers.baofeng_common - DEBUG: Setting pttid = Off +[2020-12-20 21:36:20,196] chirp.drivers.baofeng_common - DEBUG: Setting pttlt = 5 +[2020-12-20 21:36:20,196] chirp.drivers.baofeng_common - DEBUG: Setting mdfa = Frequency +[2020-12-20 21:36:20,196] chirp.drivers.baofeng_common - DEBUG: Setting mdfb = Frequency +[2020-12-20 21:36:20,196] chirp.drivers.baofeng_common - DEBUG: Setting autolk = False +[2020-12-20 21:36:20,196] chirp.drivers.baofeng_common - DEBUG: Setting wtled = Purple +[2020-12-20 21:36:20,196] chirp.drivers.baofeng_common - DEBUG: Setting rxled = Blue +[2020-12-20 21:36:20,196] chirp.drivers.baofeng_common - DEBUG: Setting txled = Orange +[2020-12-20 21:36:20,196] chirp.drivers.baofeng_common - DEBUG: Setting almod = Site +[2020-12-20 21:36:20,196] chirp.drivers.baofeng_common - DEBUG: Setting tdrab = Off +[2020-12-20 21:36:20,196] chirp.drivers.baofeng_common - DEBUG: Setting ste = True +[2020-12-20 21:36:20,197] chirp.drivers.baofeng_common - DEBUG: Setting rpste = 5 +[2020-12-20 21:36:20,197] chirp.drivers.baofeng_common - DEBUG: Setting rptrl = Off +[2020-12-20 21:36:20,197] chirp.drivers.baofeng_common - DEBUG: Setting ponmsg = Message +[2020-12-20 21:36:20,197] chirp.drivers.baofeng_common - DEBUG: Setting roger = False +[2020-12-20 21:36:20,197] chirp.drivers.baofeng_common - DEBUG: Setting reset = True +[2020-12-20 21:36:20,197] chirp.drivers.baofeng_common - DEBUG: Setting menu = True +[2020-12-20 21:36:20,197] chirp.drivers.baofeng_common - DEBUG: Setting fmradio = True +[2020-12-20 21:36:20,197] chirp.drivers.baofeng_common - DEBUG: Setting alarm = True +[2020-12-20 21:36:20,197] chirp.drivers.baofeng_common - DEBUG: Setting line1 = WELCOME +[2020-12-20 21:36:20,197] chirp.drivers.baofeng_common - DEBUG: Setting line2 = +[2020-12-20 21:36:20,197] chirp.drivers.baofeng_common - DEBUG: Setting lower = 136 +[2020-12-20 21:36:20,198] chirp.drivers.baofeng_common - DEBUG: Setting upper = 174 +[2020-12-20 21:36:20,198] chirp.drivers.baofeng_common - DEBUG: Setting lower = 400 +[2020-12-20 21:36:20,198] chirp.drivers.baofeng_common - DEBUG: Setting upper = 520 +[2020-12-20 21:36:20,198] chirp.drivers.baofeng_common - DEBUG: Setting displayab = A +[2020-12-20 21:36:20,198] chirp.drivers.baofeng_common - DEBUG: Setting workmode = Frequency +[2020-12-20 21:36:20,198] chirp.drivers.baofeng_common - DEBUG: Setting keylock = False +[2020-12-20 21:36:20,198] chirp.drivers.baofeng_common - DEBUG: Setting mrcha = 17 +[2020-12-20 21:36:20,198] chirp.drivers.baofeng_common - DEBUG: Setting mrchb = 5 +[2020-12-20 21:36:20,198] chirp.drivers.baofeng_common - DEBUG: Using apply callback +[2020-12-20 21:36:20,198] chirp.drivers.baofeng_common - DEBUG: Using apply callback +[2020-12-20 21:36:20,198] chirp.drivers.baofeng_common - DEBUG: Setting sftd = Off +[2020-12-20 21:36:20,199] chirp.drivers.baofeng_common - DEBUG: Setting sftd = Off +[2020-12-20 21:36:20,199] chirp.drivers.baofeng_common - DEBUG: Using apply callback +[2020-12-20 21:36:20,199] chirp.drivers.baofeng_common - DEBUG: Using apply callback +[2020-12-20 21:36:20,199] chirp.drivers.baofeng_common - DEBUG: Setting txpower3 = High +[2020-12-20 21:36:20,199] chirp.drivers.baofeng_common - DEBUG: Setting txpower3 = High +[2020-12-20 21:36:20,199] chirp.drivers.baofeng_common - DEBUG: Setting widenarr = Wide +[2020-12-20 21:36:20,199] chirp.drivers.baofeng_common - ERROR: Unexpected error during download +Traceback (most recent call last): + File "/home/mpoletiek/devspace/py3-CHIRP/chirp/drivers/baofeng_common.py", line 320, in sync_in + data = _download(self) + File "/home/mpoletiek/devspace/py3-CHIRP/chirp/drivers/baofeng_common.py", line 179, in _download + ident = _ident_radio(radio) + File "/home/mpoletiek/devspace/py3-CHIRP/chirp/drivers/baofeng_common.py", line 165, in _ident_radio + data = _do_ident(radio, magic) + File "/home/mpoletiek/devspace/py3-CHIRP/chirp/drivers/baofeng_common.py", line 123, in _do_ident + _clean_buffer(radio) + File "/home/mpoletiek/devspace/py3-CHIRP/chirp/drivers/baofeng_common.py", line 34, in _clean_buffer + junk = radio.pipe.read(256) + File "/home/mpoletiek/devspace/py3-CHIRP/tests/run_tests.py", line 946, in read + raise Exception("Foo") +Exception: Foo +[2020-12-20 21:36:20,199] chirp.drivers.baofeng_common - DEBUG: Setting widenarr = Wide +[2020-12-20 21:36:20,199] chirp.drivers.baofeng_common - DEBUG: Setting scode = 1 +[2020-12-20 21:36:20,199] chirp.drivers.baofeng_common - DEBUG: Setting scode = 1 +[2020-12-20 21:36:20,199] chirp.drivers.baofeng_common - DEBUG: Setting step = 25.0 +[2020-12-20 21:36:20,199] chirp.drivers.baofeng_common - DEBUG: Setting step = 25.0 +[2020-12-20 21:36:20,200] chirp.drivers.baofeng_common - DEBUG: Setting fm_presets = 650 +[2020-12-20 21:36:20,200] chirp.drivers.baofeng_common - DEBUG: Using apply callback +[2020-12-20 21:36:20,200] chirp.drivers.baofeng_common - DEBUG: Using apply callback +[2020-12-20 21:36:20,200] chirp.drivers.baofeng_common - DEBUG: Using apply callback +[2020-12-20 21:36:20,200] chirp.drivers.baofeng_common - DEBUG: Using apply callback +[2020-12-20 21:36:20,200] chirp.drivers.baofeng_common - DEBUG: Using apply callback +[2020-12-20 21:36:20,200] chirp.drivers.baofeng_common - DEBUG: Using apply callback +[2020-12-20 21:36:20,200] chirp.drivers.baofeng_common - DEBUG: Using apply callback +[2020-12-20 21:36:20,200] chirp.drivers.baofeng_common - DEBUG: Using apply callback +[2020-12-20 21:36:20,200] chirp.drivers.baofeng_common - DEBUG: Using apply callback +[2020-12-20 21:36:20,200] chirp.drivers.baofeng_common - DEBUG: Using apply callback +[2020-12-20 21:36:20,201] chirp.drivers.baofeng_common - DEBUG: Using apply callback +[2020-12-20 21:36:20,201] chirp.drivers.baofeng_common - DEBUG: Using apply callback +[2020-12-20 21:36:20,201] chirp.drivers.baofeng_common - DEBUG: Using apply callback +[2020-12-20 21:36:20,201] chirp.drivers.baofeng_common - DEBUG: Using apply callback +[2020-12-20 21:36:20,201] chirp.drivers.baofeng_common - DEBUG: Using apply callback +[2020-12-20 21:36:20,201] chirp.drivers.baofeng_common - DEBUG: Setting dtmfon = 80 ms +[2020-12-20 21:36:20,201] chirp.drivers.baofeng_common - DEBUG: Setting dtmfoff = 80 ms +[2020-12-20 21:36:20,201] chirp.drivers.baofeng_common - DEBUG: Using apply callback +[2020-12-20 21:36:20,201] chirp.drivers.baofeng_common - DEBUG: Setting aniid = EOT +[2020-12-20 21:36:20,201] chirp.drivers.baofeng_common - DEBUG: Setting sql1 = 13 +[2020-12-20 21:36:20,201] chirp.drivers.baofeng_common - DEBUG: Setting sql2 = 14 +[2020-12-20 21:36:20,202] chirp.drivers.baofeng_common - DEBUG: Setting sql3 = 15 +[2020-12-20 21:36:20,202] chirp.drivers.baofeng_common - DEBUG: Setting sql4 = 16 +[2020-12-20 21:36:20,202] chirp.drivers.baofeng_common - DEBUG: Setting sql5 = 17 +[2020-12-20 21:36:20,202] chirp.drivers.baofeng_common - DEBUG: Setting sql6 = 18 +[2020-12-20 21:36:20,202] chirp.drivers.baofeng_common - DEBUG: Setting sql7 = 19 +[2020-12-20 21:36:20,202] chirp.drivers.baofeng_common - DEBUG: Setting sql8 = 20 +[2020-12-20 21:36:20,202] chirp.drivers.baofeng_common - DEBUG: Setting sql9 = 21 +[2020-12-20 21:36:20,202] chirp.drivers.baofeng_common - DEBUG: Setting sql1 = 12 +[2020-12-20 21:36:20,202] chirp.drivers.baofeng_common - DEBUG: Setting sql2 = 13 +[2020-12-20 21:36:20,202] chirp.drivers.baofeng_common - DEBUG: Setting sql3 = 14 +[2020-12-20 21:36:20,202] chirp.drivers.baofeng_common - DEBUG: Setting sql4 = 15 +[2020-12-20 21:36:20,202] chirp.drivers.baofeng_common - DEBUG: Setting sql5 = 16 +[2020-12-20 21:36:20,203] chirp.drivers.baofeng_common - DEBUG: Setting sql6 = 17 +[2020-12-20 21:36:20,203] chirp.drivers.baofeng_common - DEBUG: Setting sql7 = 18 +[2020-12-20 21:36:20,203] chirp.drivers.baofeng_common - DEBUG: Setting sql8 = 19 +[2020-12-20 21:36:20,203] chirp.drivers.baofeng_common - DEBUG: Setting sql9 = 20 +[2020-12-20 21:36:20,232] chirp.chirp_common - DEBUG: Loaded metadata: {'vendor': 'Baofeng', 'model': 'BF-A58S', 'chirp_version': 'daily-20190925', 'rclass': 'BFA58S', 'variant': ''} +[2020-12-20 21:36:20,232] chirp.chirp_common - DEBUG: Parsed version 'daily-20190925' to (20190925,) +[2020-12-20 21:36:20,232] chirp.chirp_common - ERROR: Failed to parse my version '0.3.0dev': invalid literal for int() with base 10: '0dev' +[2020-12-20 21:36:20,232] chirp.chirp_common - WARNING: Image is from version daily-20190925 but we are 0.3.0dev +[2020-12-20 21:36:20,258] chirp.drivers.baofeng_common - ERROR: Unexpected error during upload +Traceback (most recent call last): + File "/home/mpoletiek/devspace/py3-CHIRP/chirp/drivers/baofeng_common.py", line 336, in sync_out + _upload(self) + File "/home/mpoletiek/devspace/py3-CHIRP/chirp/drivers/baofeng_common.py", line 241, in _upload + _ident_radio(radio) + File "/home/mpoletiek/devspace/py3-CHIRP/chirp/drivers/baofeng_common.py", line 165, in _ident_radio + data = _do_ident(radio, magic) + File "/home/mpoletiek/devspace/py3-CHIRP/chirp/drivers/baofeng_common.py", line 123, in _do_ident + _clean_buffer(radio) + File "/home/mpoletiek/devspace/py3-CHIRP/chirp/drivers/baofeng_common.py", line 34, in _clean_buffer + junk = radio.pipe.read(256) + File "/home/mpoletiek/devspace/py3-CHIRP/tests/run_tests.py", line 946, in read + raise Exception("Foo") +Exception: Foo +[2020-12-20 21:36:20,314] chirp.drivers.baofeng_common - DEBUG: Got 256 bytes of junk before starting +[2020-12-20 21:36:20,368] chirp.drivers.baofeng_common - DEBUG: Got 256 bytes of junk before starting +[2020-12-20 21:36:20,368] chirp.drivers.baofeng_common - DEBUG: Got 255 bytes of junk before starting +[2020-12-20 21:36:20,423] chirp.drivers.baofeng_common - DEBUG: Got 255 bytes of junk before starting +[2020-12-20 21:36:21,211] chirp.drivers.yaesu_clone - DEBUG: Sending 0-10 +[2020-12-20 21:36:21,211] chirp.drivers.yaesu_clone - DEBUG: +[2020-12-20 21:36:21,261] chirp.drivers.yaesu_clone - DEBUG: Sending 0-10 +[2020-12-20 21:36:21,311] chirp.drivers.yaesu_clone - DEBUG: Sending 0-10 +[2020-12-20 21:36:21,312] chirp.drivers.yaesu_clone - DEBUG: 000: 00 00 00 00 00 00 00 00 ........ +008: 00 00 00 00 00 00 00 00 ........ + +[2020-12-20 21:36:21,327] chirp.drivers.vx8 - DEBUG: Enabling banks for VFO 0 +[2020-12-20 21:36:21,327] chirp.drivers.vx8 - DEBUG: Enabling banks for VFO 1 +[2020-12-20 21:36:21,328] chirp.drivers.vx8 - INFO: Disabling banks for VFO 0 +[2020-12-20 21:36:21,329] chirp.drivers.vx8 - INFO: Disabling banks for VFO 1 +[2020-12-20 21:36:21,330] chirp.drivers.vx8 - DEBUG: Enabling banks for VFO 0 +[2020-12-20 21:36:21,331] chirp.drivers.vx8 - DEBUG: Enabling banks for VFO 1 +[2020-12-20 21:36:21,332] chirp.drivers.vx8 - INFO: Disabling banks for VFO 0 +[2020-12-20 21:36:21,332] chirp.drivers.vx8 - INFO: Disabling banks for VFO 1 +[2020-12-20 21:36:21,365] chirp.drivers.yaesu_clone - DEBUG: Sending 0-10 +[2020-12-20 21:36:21,862] chirp.chirp_common - DEBUG: Image data has no metadata blob +[2020-12-20 21:36:21,870] chirp.directory - ERROR: Radio class CSVRadio failed during detection: 'str' object has no attribute 'decode' +[2020-12-20 21:36:21,870] chirp.directory - ERROR: Radio class CommanderCSVRadio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str +[2020-12-20 21:36:21,870] chirp.directory - ERROR: Radio class RTCSVRadio failed during detection: 'str' object has no attribute 'decode' +[2020-12-20 21:36:21,870] chirp.directory - ERROR: Radio class BaofengUVB5 failed during detection: startswith first arg must be bytes or a tuple of bytes, not str +[2020-12-20 21:36:21,870] chirp.directory - ERROR: Radio class RT1Radio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str +[2020-12-20 21:36:21,871] chirp.directory - ERROR: Radio class RT21Radio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str +[2020-12-20 21:36:21,871] chirp.directory - ERROR: Radio class KGUV8ERadio failed during detection: a bytes-like object is required, not 'str' +[2020-12-20 21:36:21,871] chirp.drivers.boblov_x3plus - DEBUG: Boblov_x3plus: match_model: size mismatch +[2020-12-20 21:36:21,871] chirp.drivers.boblov_x3plus - DEBUG: Boblov_x3plus: match_model: size mismatch +[2020-12-20 21:36:21,871] chirp.directory - ERROR: Radio class Th350Radio failed during detection: startswith first arg must be str or a tuple of str, not bytes +[2020-12-20 21:36:21,871] chirp.directory - ERROR: Radio class RT26Radio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str +[2020-12-20 21:36:21,871] chirp.directory - ERROR: Radio class AnyToneTERMN8RRadio failed during detection: a bytes-like object is required, not 'str' +[2020-12-20 21:36:21,871] chirp.directory - ERROR: Radio class AnyToneOBLTR8RRadio failed during detection: a bytes-like object is required, not 'str' +[2020-12-20 21:36:21,871] chirp.directory - ERROR: Radio class AnyTone5888UVRadio failed during detection: a bytes-like object is required, not 'str' +[2020-12-20 21:36:21,871] chirp.directory - ERROR: Radio class IntekHR2040Radio failed during detection: a bytes-like object is required, not 'str' +[2020-12-20 21:36:21,871] chirp.directory - ERROR: Radio class PolmarDB50MRadio failed during detection: a bytes-like object is required, not 'str' +[2020-12-20 21:36:21,871] chirp.directory - ERROR: Radio class PowerwerxDB750XRadio failed during detection: a bytes-like object is required, not 'str' +[2020-12-20 21:36:21,872] chirp.directory - ERROR: Radio class FTM350Radio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str +[2020-12-20 21:36:21,872] chirp.directory - ERROR: Radio class LeixenVV898Radio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str +[2020-12-20 21:36:21,872] chirp.directory - ERROR: Radio class JetstreamJT270MRadio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str +[2020-12-20 21:36:21,872] chirp.directory - ERROR: Radio class JetstreamJT270MHRadio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str +[2020-12-20 21:36:21,872] chirp.directory - ERROR: Radio class LeixenVV898SRadio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str +[2020-12-20 21:36:21,872] chirp.directory - ERROR: Radio class TK760_Radio failed during detection: can only concatenate str (not "int") to str +[2020-12-20 21:36:21,872] chirp.directory - ERROR: Radio class TK762_Radio failed during detection: can only concatenate str (not "int") to str +[2020-12-20 21:36:21,872] chirp.directory - ERROR: Radio class TK768_Radio failed during detection: can only concatenate str (not "int") to str +[2020-12-20 21:36:21,872] chirp.directory - ERROR: Radio class TK860_Radio failed during detection: can only concatenate str (not "int") to str +[2020-12-20 21:36:21,872] chirp.directory - ERROR: Radio class TK862_Radio failed during detection: can only concatenate str (not "int") to str +[2020-12-20 21:36:21,872] chirp.directory - ERROR: Radio class TK868_Radio failed during detection: can only concatenate str (not "int") to str +[2020-12-20 21:36:21,872] chirp.directory - ERROR: Radio class TYTTHUVF1Radio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str +[2020-12-20 21:36:21,872] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: +[2020-12-20 21:36:21,872] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 32 00 00 00 00 AH02.... + +[2020-12-20 21:36:21,872] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: +[2020-12-20 21:36:21,873] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 32 00 00 00 00 AH02.... + +[2020-12-20 21:36:21,873] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: +[2020-12-20 21:36:21,873] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 32 00 00 00 00 AH02.... + +[2020-12-20 21:36:21,873] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: +[2020-12-20 21:36:21,873] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 32 00 00 00 00 AH02.... + +[2020-12-20 21:36:21,873] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: +[2020-12-20 21:36:21,873] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 32 00 00 00 00 AH02.... + +[2020-12-20 21:36:21,873] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: +[2020-12-20 21:36:21,873] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 32 00 00 00 00 AH02.... + +[2020-12-20 21:36:21,873] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: +[2020-12-20 21:36:21,873] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 32 00 00 00 00 AH02.... + +[2020-12-20 21:36:21,873] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: +[2020-12-20 21:36:21,873] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 32 00 00 00 00 AH02.... + +[2020-12-20 21:36:21,873] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: +[2020-12-20 21:36:21,873] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 32 00 00 00 00 AH02.... + +[2020-12-20 21:36:21,873] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: +[2020-12-20 21:36:21,874] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 32 00 00 00 00 AH02.... + +[2020-12-20 21:36:21,874] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: +[2020-12-20 21:36:21,874] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 32 00 00 00 00 AH02.... + +[2020-12-20 21:36:21,874] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: +[2020-12-20 21:36:21,874] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 32 00 00 00 00 AH02.... + +[2020-12-20 21:36:21,874] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: +[2020-12-20 21:36:21,874] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 32 00 00 00 00 AH02.... + +[2020-12-20 21:36:21,874] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: +[2020-12-20 21:36:21,874] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 32 00 00 00 00 AH02.... + +[2020-12-20 21:36:21,874] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: +[2020-12-20 21:36:21,874] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 32 00 00 00 00 AH02.... + +[2020-12-20 21:36:21,874] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: +[2020-12-20 21:36:21,874] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 32 00 00 00 00 AH02.... + +[2020-12-20 21:36:21,874] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: +[2020-12-20 21:36:21,875] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 32 00 00 00 00 AH02.... + +[2020-12-20 21:36:21,875] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: +[2020-12-20 21:36:21,875] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 32 00 00 00 00 AH02.... + +[2020-12-20 21:36:21,875] chirp.directory - ERROR: Radio class UV50X3 failed during detection: 'in ' requires string as left operand, not bytes +[2020-12-20 21:36:21,875] chirp.directory - ERROR: Radio class TYTUVF8DRadio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str +[2020-12-20 21:36:21,875] chirp.drivers.tk8102 - DEBUG: b'\xff\xff\xff\xff' +[2020-12-20 21:36:21,875] chirp.drivers.tk8102 - DEBUG: ÿÿÿÿ +[2020-12-20 21:36:21,875] chirp.drivers.tk8102 - DEBUG: b'\xff\xff\xff\xff' +[2020-12-20 21:36:21,875] chirp.drivers.tk8102 - DEBUG: ÿÿÿÿ +[2020-12-20 21:36:21,875] chirp.drivers.tk8102 - DEBUG: b'\xff\xff\xff\xff' +[2020-12-20 21:36:21,875] chirp.drivers.tk8102 - DEBUG: ÿÿÿÿ +[2020-12-20 21:36:21,875] chirp.drivers.tk8102 - DEBUG: b'\xff\xff\xff\xff' +[2020-12-20 21:36:21,875] chirp.drivers.tk8102 - DEBUG: ÿÿÿÿ +[2020-12-20 21:36:21,875] chirp.directory - WARNING: Radio driver VX8Radio needs py3 match_model conversion! +[2020-12-20 21:36:22,926] chirp.drivers.yaesu_clone - DEBUG: Sending 0-10 +[2020-12-20 21:36:22,926] chirp.drivers.yaesu_clone - DEBUG: +[2020-12-20 21:36:22,952] chirp.drivers.yaesu_clone - DEBUG: Sending 0-10 +[2020-12-20 21:36:22,977] chirp.drivers.yaesu_clone - DEBUG: Sending 0-10 +[2020-12-20 21:36:22,978] chirp.drivers.yaesu_clone - DEBUG: 000: 00 00 00 00 00 00 00 00 ........ +008: 00 00 00 00 00 00 00 00 ........ + +[2020-12-20 21:36:22,982] chirp.chirp_common - DEBUG: Image data has no metadata blob +[2020-12-20 21:36:22,986] chirp.directory - ERROR: Radio class CSVRadio failed during detection: 'str' object has no attribute 'decode' +[2020-12-20 21:36:22,987] chirp.directory - ERROR: Radio class CommanderCSVRadio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str +[2020-12-20 21:36:22,987] chirp.directory - ERROR: Radio class RTCSVRadio failed during detection: 'str' object has no attribute 'decode' +[2020-12-20 21:36:22,987] chirp.directory - ERROR: Radio class BaofengUVB5 failed during detection: startswith first arg must be bytes or a tuple of bytes, not str +[2020-12-20 21:36:22,987] chirp.directory - ERROR: Radio class RT1Radio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str +[2020-12-20 21:36:22,987] chirp.directory - ERROR: Radio class RT21Radio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str +[2020-12-20 21:36:22,987] chirp.directory - ERROR: Radio class KGUV8ERadio failed during detection: a bytes-like object is required, not 'str' +[2020-12-20 21:36:22,987] chirp.directory - WARNING: Radio driver VX3Radio needs py3 match_model conversion! +[2020-12-20 21:36:23,004] chirp.drivers.yaesu_clone - DEBUG: Sending 0-10 +[2020-12-20 21:36:23,205] chirp.drivers.ft50 - DEBUG: @_decode_chars, type: +[2020-12-20 21:36:23,205] chirp.drivers.ft50 - DEBUG: [0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF] +[2020-12-20 21:36:23,205] chirp.drivers.ft50 - DEBUG: +[2020-12-20 21:36:23,206] chirp.drivers.ft50 - DEBUG: @_decode_chars, type: +[2020-12-20 21:36:23,206] chirp.drivers.ft50 - DEBUG: [0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF] +[2020-12-20 21:36:23,206] chirp.drivers.ft50 - DEBUG: +[2020-12-20 21:36:23,207] chirp.drivers.ft50 - DEBUG: @_decode_chars, type: +[2020-12-20 21:36:23,207] chirp.drivers.ft50 - DEBUG: [0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF] +[2020-12-20 21:36:23,207] chirp.drivers.ft50 - DEBUG: +[2020-12-20 21:36:23,240] chirp.drivers.boblov_x3plus - DEBUG: empty channel 2 -- cgit v1.2.3 From 0c096d7a49115416a4ed2d8eb2b9701f7045f9db Mon Sep 17 00:00:00 2001 From: Matthew Poletiek Date: Sun, 20 Dec 2020 21:40:25 -0600 Subject: gitingore update --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index f1334df..392a03d 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ .pytest_cache .tox .eggs +logs -- cgit v1.2.3 From fa0d2958186eadc410cf8dc117906ed388af273d Mon Sep 17 00:00:00 2001 From: Matthew Poletiek Date: Sun, 20 Dec 2020 21:40:44 -0600 Subject: gitingore update --- logs/debug.log | 856 --------------------------------------------------------- 1 file changed, 856 deletions(-) delete mode 100644 logs/debug.log diff --git a/logs/debug.log b/logs/debug.log deleted file mode 100644 index 4884b41..0000000 --- a/logs/debug.log +++ /dev/null @@ -1,856 +0,0 @@ -[2020-12-20 21:36:17,733] chirp.directory - INFO: Registered Kenwood_TK-7102 = KenwoodTK7102Radio -[2020-12-20 21:36:17,733] chirp.logger - DEBUG: log level=10 -[2020-12-20 21:36:17,733] chirp.directory - INFO: Registered Kenwood_TK-8102 = KenwoodTK8102Radio -[2020-12-20 21:36:17,733] chirp.directory - INFO: Registered Kenwood_TK-7108 = KenwoodTK7108Radio -[2020-12-20 21:36:17,733] chirp.directory - INFO: Registered Yaesu_FT-450D = FT450DRadio -[2020-12-20 21:36:17,733] chirp.directory - INFO: Registered Kenwood_TK-8108 = KenwoodTK8108Radio -[2020-12-20 21:36:17,733] chirp.directory - INFO: Registered Kenwood_TH-D72_clone_mode = THD72Radio -[2020-12-20 21:36:17,734] chirp.directory - INFO: Registered Yaesu_VX-8R = VX8Radio -[2020-12-20 21:36:17,734] chirp.directory - INFO: Registered Icom_ID-880H = ID880Radio -[2020-12-20 21:36:17,734] chirp.directory - INFO: Registered Yaesu_VX-8DR = VX8DRadio -[2020-12-20 21:36:17,734] chirp.directory - INFO: Registered Icom_ID-80H = ID80Radio -[2020-12-20 21:36:17,734] chirp.directory - INFO: Registered Yaesu_VX-8GE = VX8GERadio -[2020-12-20 21:36:17,734] chirp.directory - INFO: Registered Icom_IC-2200H = IC2200Radio -[2020-12-20 21:36:17,735] chirp.directory - INFO: Registered BTECH_UV-50X3 = UV50X3 -[2020-12-20 21:36:17,735] chirp.directory - INFO: Registered KYD_IP-620 = IP620Radio -[2020-12-20 21:36:17,735] chirp.directory - INFO: Registered Yaesu_FT-2900R_1900R = FT2900Radio -[2020-12-20 21:36:17,736] chirp.directory - INFO: Registered Yaesu_FT-1D_R = FT1Radio -[2020-12-20 21:36:17,736] chirp.directory - INFO: Registered Yaesu_FT-818 = FT818Radio -[2020-12-20 21:36:17,736] chirp.directory - INFO: Registered Yaesu_FT-818ND_US = FT818NDUSRadio -[2020-12-20 21:36:17,736] chirp.directory - INFO: Registered Yaesu_FT2D_R = FT2D -[2020-12-20 21:36:17,736] chirp.directory - INFO: Registered Yaesu_FT2D_Rv2 = FT2Dv2 -[2020-12-20 21:36:17,736] chirp.directory - INFO: Registered Kenwood_TK-260 = TK260_Radio -[2020-12-20 21:36:17,736] chirp.directory - INFO: Registered Yaesu_FT3D_R = FT3D -[2020-12-20 21:36:17,736] chirp.directory - INFO: Registered Kenwood_TK-270 = TK270_Radio -[2020-12-20 21:36:17,736] chirp.directory - INFO: Registered Kenwood_TK-272 = TK272_Radio -[2020-12-20 21:36:17,736] chirp.directory - INFO: Registered Kenwood_TK-278 = TK278_Radio -[2020-12-20 21:36:17,736] chirp.directory - INFO: Registered Kenwood_TK-360 = TK360_Radio -[2020-12-20 21:36:17,736] chirp.directory - INFO: Registered Kenwood_TK-370 = TK370_Radio -[2020-12-20 21:36:17,736] chirp.directory - INFO: Registered Kenwood_TK-372 = TK372_Radio -[2020-12-20 21:36:17,736] chirp.directory - INFO: Registered Kenwood_TK-378 = TK378_Radio -[2020-12-20 21:36:17,737] chirp.directory - INFO: Registered TDXone_TD-Q8A = TDXoneTDQ8A -[2020-12-20 21:36:17,737] chirp.directory - INFO: Registered Retevis_RT23 = RT23Radio -[2020-12-20 21:36:17,737] chirp.directory - INFO: Registered Icom_ID-31A = ID31Radio -[2020-12-20 21:36:17,737] chirp.directory - INFO: Registered Icom_ID-51_Plus = ID51PLUSRadio -[2020-12-20 21:36:17,737] chirp.directory - INFO: Registered Wouxun_KG-UVD1P = KGUVD1PRadio -[2020-12-20 21:36:17,737] chirp.directory - INFO: Registered Icom_IC-V82_U82 = ICx8xRadio -[2020-12-20 21:36:17,737] chirp.directory - INFO: Registered Wouxun_KG-UV6 = KGUV6DRadio -[2020-12-20 21:36:17,737] chirp.directory - INFO: Registered Wouxun_KG-816 = KG816Radio -[2020-12-20 21:36:17,738] chirp.directory - INFO: Registered Wouxun_KG-818 = KG818Radio -[2020-12-20 21:36:17,738] chirp.directory - INFO: Registered Wouxun_KG-UV8D_Plus = KGUV8DPlusRadio -[2020-12-20 21:36:17,738] chirp.directory - INFO: Registered Kenwood_TK-7180 = KenwoodTK7180Radio -[2020-12-20 21:36:17,738] chirp.directory - INFO: Registered TYT_TH-UV3R = TYTUV3RRadio -[2020-12-20 21:36:17,738] chirp.directory - INFO: Registered Kenwood_TK-8180 = KenwoodTK8180Radio -[2020-12-20 21:36:17,738] chirp.directory - INFO: Registered TYT_TH-UV3R-25 = TYTUV3R25Radio -[2020-12-20 21:36:17,738] chirp.directory - INFO: Registered Kenwood_TK-2180 = KenwoodTK2180Radio -[2020-12-20 21:36:17,738] chirp.directory - INFO: Registered Kenwood_TK-3180K = KenwoodTK3180K1Radio -[2020-12-20 21:36:17,738] chirp.directory - INFO: Registered Kenwood_TK-3180K2 = KenwoodTK3180K2Radio -[2020-12-20 21:36:17,738] chirp.directory - INFO: Registered Icom_IC-Q7A = ICQ7Radio -[2020-12-20 21:36:17,739] chirp.directory - INFO: Registered Baojie_BJ-9900 = BJ9900Radio -[2020-12-20 21:36:17,739] chirp.directory - INFO: Registered Generic_CSV = CSVRadio -[2020-12-20 21:36:17,739] chirp.directory - INFO: Registered Commander_KG-UV = CommanderCSVRadio -[2020-12-20 21:36:17,739] chirp.directory - INFO: Registered Yaesu_FT-7800_7900 = FT7800Radio -[2020-12-20 21:36:17,739] chirp.directory - INFO: Registered RT_Systems_CSV = RTCSVRadio -[2020-12-20 21:36:17,739] chirp.directory - INFO: Registered Yaesu_FT-8800 = FT8800Radio -[2020-12-20 21:36:17,740] chirp.directory - INFO: Registered Kenwood_HMK = HMKRadio -[2020-12-20 21:36:17,740] chirp.directory - INFO: Registered Icom_ID-800H_v2 = ID800v2Radio -[2020-12-20 21:36:17,740] chirp.directory - INFO: Registered Yaesu_FT-8900 = FT8900Radio -[2020-12-20 21:36:17,740] chirp.directory - INFO: Registered Kenwood_TS-850 = TS850Radio -[2020-12-20 21:36:17,740] chirp.directory - INFO: Registered Vertex_Standard_VXA-700 = VXA700Radio -[2020-12-20 21:36:17,740] chirp.directory - INFO: Registered Icom_IC-P7 = ICP7Radio -[2020-12-20 21:36:17,741] chirp.directory - INFO: Registered TYT_TH-UVF8D = TYTUVF8DRadio -[2020-12-20 21:36:17,741] chirp.directory - INFO: Registered Baofeng_BF-A58 = BFA58 -[2020-12-20 21:36:17,741] chirp.directory - INFO: Registered Baofeng_UV-B5 = BaofengUVB5 -[2020-12-20 21:36:17,741] chirp.directory - INFO: Registered Baofeng_UV-82WP = UV82WP -[2020-12-20 21:36:17,741] chirp.directory - INFO: Registered Baofeng_GT-3WP = GT3WP -[2020-12-20 21:36:17,741] chirp.directory - INFO: Registered Retevis_RT6 = RT6 -[2020-12-20 21:36:17,741] chirp.directory - INFO: Registered Baofeng_BF-A58S = BFA58S -[2020-12-20 21:36:17,741] chirp.directory - INFO: Registered Baofeng_UV-9R = UV9R -[2020-12-20 21:36:17,741] chirp.directory - INFO: Registered Retevis_RT1 = RT1Radio -[2020-12-20 21:36:17,742] chirp.directory - INFO: Registered Icom_IC-2100H = IC2100Radio -[2020-12-20 21:36:17,742] chirp.directory - INFO: Registered Yaesu_FT-4XR = YaesuFT4XRRadio -[2020-12-20 21:36:17,742] chirp.directory - INFO: Registered Kenwood_TK-868G = TK868G_Radios -[2020-12-20 21:36:17,742] chirp.directory - INFO: Registered Yaesu_FT-4XE = YaesuFT4XERadio -[2020-12-20 21:36:17,742] chirp.directory - INFO: Registered Yaesu_FT-4VR = YaesuFT4VRRadio -[2020-12-20 21:36:17,742] chirp.directory - INFO: Registered Yaesu_FT-65R = YaesuFT65RRadio -[2020-12-20 21:36:17,742] chirp.directory - INFO: Registered Yaesu_FT-65E = YaesuFT65ERadio -[2020-12-20 21:36:17,742] chirp.directory - INFO: Registered Yaesu_FT-25R = YaesuFT25RRadio -[2020-12-20 21:36:17,742] chirp.directory - INFO: Registered Retevis_RT21 = RT21Radio -[2020-12-20 21:36:17,742] chirp.directory - INFO: Registered Kenwood_TK-862G = TK862G_Radios -[2020-12-20 21:36:17,743] chirp.directory - INFO: Registered Kenwood_TK-860G = TK860G_Radios -[2020-12-20 21:36:17,743] chirp.directory - INFO: Registered Kenwood_TK-768G = TK768G_Radios -[2020-12-20 21:36:17,743] chirp.directory - INFO: Registered Kenwood_TK-762G = TK762G_Radios -[2020-12-20 21:36:17,743] chirp.directory - INFO: Registered Kenwood_TK-760G = TK760G_Radios -[2020-12-20 21:36:17,743] chirp.directory - INFO: Registered BTECH_GMRS-V1 = GMRSV1 -[2020-12-20 21:36:17,743] chirp.directory - INFO: Registered Kenwood_TK-388G = TK388G_Radios -[2020-12-20 21:36:17,743] chirp.directory - INFO: Registered Kenwood_TK-378G = TK378G_Radios -[2020-12-20 21:36:17,743] chirp.directory - INFO: Registered Wouxun_KG-UV8E = KGUV8ERadio -[2020-12-20 21:36:17,743] chirp.directory - INFO: Registered Kenwood_TK-372G = TK372G_Radios -[2020-12-20 21:36:17,743] chirp.directory - INFO: Registered Kenwood_TK-370G = TK370G_Radios -[2020-12-20 21:36:17,744] chirp.directory - INFO: Registered Kenwood_TK-360G = TK360G_Radios -[2020-12-20 21:36:17,744] chirp.directory - INFO: Registered Icom_IC-208H = IC208Radio -[2020-12-20 21:36:17,744] chirp.directory - INFO: Registered Kenwood_TK-278G = TK278G_Radios -[2020-12-20 21:36:17,744] chirp.directory - INFO: Registered Kenwood_TK-272G = TK272G_Radios -[2020-12-20 21:36:17,744] chirp.directory - INFO: Registered Kenwood_TK-270G = TK270G_Radios -[2020-12-20 21:36:17,744] chirp.directory - INFO: Registered Kenwood_TK-260G = TK260G_Radios -[2020-12-20 21:36:17,744] chirp.directory - INFO: Registered Yaesu_VX-3 = VX3Radio -[2020-12-20 21:36:17,744] chirp.directory - INFO: Registered Yaesu_VX-2 = VX2Radio -[2020-12-20 21:36:17,744] chirp.directory - INFO: Registered Icom_IC-W32A = ICW32ARadio -[2020-12-20 21:36:17,745] chirp.directory - INFO: Registered Icom_IC-W32E = ICW32ERadio -[2020-12-20 21:36:17,745] chirp.directory - INFO: Registered KYD_NC-630A = NC630aRadio -[2020-12-20 21:36:17,745] chirp.directory - INFO: Registered Alinco_DR03T = DR03Radio -[2020-12-20 21:36:17,745] chirp.directory - INFO: Registered Alinco_DR06T = DR06Radio -[2020-12-20 21:36:17,745] chirp.directory - INFO: Registered Alinco_DR135T = DR135Radio -[2020-12-20 21:36:17,745] chirp.directory - INFO: Registered Alinco_DR235T = DR235Radio -[2020-12-20 21:36:17,745] chirp.directory - INFO: Registered Alinco_DR435T = DR435Radio -[2020-12-20 21:36:17,745] chirp.directory - INFO: Registered Alinco_DJ596 = DJ596Radio -[2020-12-20 21:36:17,745] chirp.directory - INFO: Registered Jetstream_JT220M = JT220MRadio -[2020-12-20 21:36:17,745] chirp.directory - INFO: Registered LUITON_LT-725UV = LT725UV -[2020-12-20 21:36:17,745] chirp.directory - INFO: Registered Alinco_DJ175 = DJ175Radio -[2020-12-20 21:36:17,746] chirp.directory - INFO: Registered Baofeng_UV-6R = UV6R -[2020-12-20 21:36:17,746] chirp.directory - INFO: Registered Alinco_DJ-G7EG = AlincoDJG7EG -[2020-12-20 21:36:17,746] chirp.directory - INFO: Registered Baojie_BJ-218 = Baojie218 -[2020-12-20 21:36:17,746] chirp.directory - INFO: Registered TYT_TH9000_220 = Th9000220Radio -[2020-12-20 21:36:17,746] chirp.directory - INFO: Registered Puxing_PX-777 = Puxing777Radio -[2020-12-20 21:36:17,746] chirp.directory - INFO: Registered TYT_TH9000_144 = Th9000144Radio -[2020-12-20 21:36:17,746] chirp.directory - INFO: Registered Puxing_PX-2R = Puxing2RRadio -[2020-12-20 21:36:17,746] chirp.directory - INFO: Registered TYT_TH9000_440 = Th9000440Radio -[2020-12-20 21:36:17,747] chirp.directory - INFO: Registered Wouxun_KG-UV9D_Plus = KGUV9DPlusRadio -[2020-12-20 21:36:17,747] chirp.directory - INFO: Registered Icom_IC-2720H = IC2720Radio -[2020-12-20 21:36:17,747] chirp.directory - INFO: Registered Icom_IC-91_92AD = IC9xRadio -[2020-12-20 21:36:17,747] chirp.directory - INFO: Registered Rugged_RH5R-V2 = RH5RV2 -[2020-12-20 21:36:17,747] chirp.directory - INFO: Registered Radtel_T18 = T18Radio -[2020-12-20 21:36:17,747] chirp.directory - INFO: Registered Yaesu_FT-7100M = FT7100Radio -[2020-12-20 21:36:17,748] chirp.directory - INFO: Registered Yaesu_FT-2800M = FT2800Radio -[2020-12-20 21:36:17,748] chirp.directory - INFO: Registered Kenwood_TK-7102 = KenwoodTK7102Radio -[2020-12-20 21:36:17,748] chirp.directory - INFO: Registered Kenwood_TK-8102 = KenwoodTK8102Radio -[2020-12-20 21:36:17,748] chirp.directory - INFO: Registered Kenwood_TK-7108 = KenwoodTK7108Radio -[2020-12-20 21:36:17,748] chirp.directory - INFO: Registered Yaesu_VX-170 = VX170Radio -[2020-12-20 21:36:17,748] chirp.directory - INFO: Registered Kenwood_TK-8108 = KenwoodTK8108Radio -[2020-12-20 21:36:17,748] chirp.directory - INFO: Registered Icom_IC-2820H = IC2820Radio -[2020-12-20 21:36:17,748] chirp.directory - INFO: Registered HobbyPCB_RS-UV3 = HobbyPCBRSUV3Radio -[2020-12-20 21:36:17,749] chirp.directory - INFO: Registered Yaesu_VX-5 = VX5Radio -[2020-12-20 21:36:17,749] chirp.directory - INFO: Registered Yaesu_VX-8R = VX8Radio -[2020-12-20 21:36:17,749] chirp.directory - INFO: Registered ARRL_Travel_Plus = TpeRadio -[2020-12-20 21:36:17,749] chirp.directory - INFO: Registered Yaesu_VX-8DR = VX8DRadio -[2020-12-20 21:36:17,749] chirp.directory - INFO: Registered Kenwood_TS-480_CloneMode = TS480Radio -[2020-12-20 21:36:17,749] chirp.directory - INFO: Registered Yaesu_VX-8GE = VX8GERadio -[2020-12-20 21:36:17,749] chirp.directory - INFO: Registered Icom_IC-2300H = IC2300Radio -[2020-12-20 21:36:17,750] chirp.directory - INFO: Registered Icom_IC-2200H = IC2200Radio -[2020-12-20 21:36:17,750] chirp.directory - INFO: Registered Icom_IC-2730A = IC2730Radio -[2020-12-20 21:36:17,750] chirp.directory - INFO: Registered Icom_IC-T70 = ICT70Radio -[2020-12-20 21:36:17,750] chirp.directory - INFO: Registered Retevis_RT22 = RT22Radio -[2020-12-20 21:36:17,750] chirp.directory - INFO: Registered WLN_KD-C1 = KDC1 -[2020-12-20 21:36:17,750] chirp.directory - INFO: Registered Zastone_ZT-X6 = ZTX6 -[2020-12-20 21:36:17,750] chirp.directory - INFO: Registered Icom_7200 = Icom7200Radio -[2020-12-20 21:36:17,750] chirp.directory - INFO: Registered LUITON_LT-316 = LT316 -[2020-12-20 21:36:17,750] chirp.directory - INFO: Registered Icom_IC-7000 = Icom7000Radio -[2020-12-20 21:36:17,750] chirp.directory - INFO: Registered TID_TD-M8 = TDM8 -[2020-12-20 21:36:17,750] chirp.directory - INFO: Registered Yaesu_FT-2900R_1900R = FT2900Radio -[2020-12-20 21:36:17,750] chirp.directory - INFO: Registered Icom_IC-7100 = Icom7100Radio -[2020-12-20 21:36:17,751] chirp.directory - INFO: Registered Icom_746 = Icom746Radio -[2020-12-20 21:36:17,751] chirp.directory - INFO: Registered Icom_IC-T8A = ICT8ARadio -[2020-12-20 21:36:17,751] chirp.directory - INFO: Registered Yaesu_FTM-3200D_R = FTM3200Radio -[2020-12-20 21:36:17,751] chirp.directory - INFO: Registered Kenwood_TK-260 = TK260_Radio -[2020-12-20 21:36:17,751] chirp.directory - INFO: Registered Kenwood_TK-270 = TK270_Radio -[2020-12-20 21:36:17,751] chirp.directory - INFO: Registered Kenwood_TK-272 = TK272_Radio -[2020-12-20 21:36:17,751] chirp.directory - INFO: Registered BTECH_UV-5X3 = UV5X3 -[2020-12-20 21:36:17,751] chirp.directory - INFO: Registered Kenwood_TK-278 = TK278_Radio -[2020-12-20 21:36:17,751] chirp.directory - INFO: Registered MTC_UV-5R-3 = MTCUV5R3Radio -[2020-12-20 21:36:17,751] chirp.directory - INFO: Registered Kenwood_TK-360 = TK360_Radio -[2020-12-20 21:36:17,752] chirp.directory - INFO: Registered Kenwood_TK-370 = TK370_Radio -[2020-12-20 21:36:17,752] chirp.directory - INFO: Registered Kenwood_TK-372 = TK372_Radio -[2020-12-20 21:36:17,752] chirp.directory - INFO: Registered Kenwood_TK-378 = TK378_Radio -[2020-12-20 21:36:17,752] chirp.directory - INFO: Registered Puxing_PX-888K = Puxing_PX888K_Radio -[2020-12-20 21:36:17,752] chirp.directory - INFO: Registered Yaesu_VX-7 = VX7Radio -[2020-12-20 21:36:17,752] chirp.directory - INFO: Registered Retevis_RT23 = RT23Radio -[2020-12-20 21:36:17,752] chirp.directory - INFO: Registered Yaesu_FT-60 = FT60Radio -[2020-12-20 21:36:17,753] chirp.directory - INFO: Registered Icom_IC-V82_U82 = ICx8xRadio -[2020-12-20 21:36:17,753] chirp.directory - INFO: Registered Wouxun_KG-UV8D = KGUV8DRadio -[2020-12-20 21:36:17,753] chirp.directory - INFO: Registered BTECH_UV-2501 = UV2501 -[2020-12-20 21:36:17,753] chirp.directory - INFO: Registered BTECH_UV-2501+220 = UV2501_220 -[2020-12-20 21:36:17,753] chirp.directory - INFO: Registered Wouxun_KG-UV8D_Plus = KGUV8DPlusRadio -[2020-12-20 21:36:17,753] chirp.directory - INFO: Registered BTECH_UV-5001 = UV5001 -[2020-12-20 21:36:17,753] chirp.directory - INFO: Registered WACCOM_MINI-8900 = MINI8900 -[2020-12-20 21:36:17,753] chirp.directory - INFO: Registered QYT_KT-UV980 = KTUV980 -[2020-12-20 21:36:17,753] chirp.directory - INFO: Registered QYT_KT8900 = KT9800 -[2020-12-20 21:36:17,754] chirp.directory - INFO: Registered QYT_KT8900R = KT9800R -[2020-12-20 21:36:17,754] chirp.directory - INFO: Registered Icom_IC-Q7A = ICQ7Radio -[2020-12-20 21:36:17,754] chirp.directory - INFO: Registered LUITON_LT-588UV = LT588UV -[2020-12-20 21:36:17,754] chirp.directory - INFO: Registered BTECH_UV-25X2 = UV25X2 -[2020-12-20 21:36:17,754] chirp.directory - INFO: Registered BTECH_UV-25X4 = UV25X4 -[2020-12-20 21:36:17,754] chirp.directory - INFO: Registered BTECH_UV-50X2 = UV50X2 -[2020-12-20 21:36:17,754] chirp.directory - INFO: Registered QYT_KT7900D = KT7900D -[2020-12-20 21:36:17,754] chirp.directory - INFO: Registered Baojie_BJ-9900 = BJ9900Radio -[2020-12-20 21:36:17,754] chirp.directory - INFO: Registered QYT_KT8900D = KT8900D -[2020-12-20 21:36:17,754] chirp.directory - INFO: Registered BTECH_GMRS-50X1 = GMRS50X1 -[2020-12-20 21:36:17,755] chirp.directory - INFO: Registered Icom_ID-800H_v2 = ID800v2Radio -[2020-12-20 21:36:17,755] chirp.directory - INFO: Registered Boblov_X3Plus = BoblovX3Plus -[2020-12-20 21:36:17,755] chirp.directory - INFO: Registered Icom_IC-T7H = ICT7HRadio -[2020-12-20 21:36:17,755] chirp.directory - INFO: Registered Kenwood_TS-850 = TS850Radio -[2020-12-20 21:36:17,755] chirp.directory - INFO: Registered Baofeng_BF-A58 = BFA58 -[2020-12-20 21:36:17,756] chirp.directory - INFO: Registered Baofeng_UV-82WP = UV82WP -[2020-12-20 21:36:17,756] chirp.directory - INFO: Registered Kenwood_TH-D7 = THD7Radio -[2020-12-20 21:36:17,756] chirp.directory - INFO: Registered Baofeng_GT-3WP = GT3WP -[2020-12-20 21:36:17,756] chirp.directory - INFO: Registered Retevis_RT6 = RT6 -[2020-12-20 21:36:17,756] chirp.directory - INFO: Registered Kenwood_TH-D7G = THD7GRadio -[2020-12-20 21:36:17,756] chirp.directory - INFO: Registered Baofeng_BF-A58S = BFA58S -[2020-12-20 21:36:17,756] chirp.directory - INFO: Registered Kenwood_TM-D700 = TMD700Radio -[2020-12-20 21:36:17,756] chirp.directory - INFO: Registered Baofeng_UV-9R = UV9R -[2020-12-20 21:36:17,756] chirp.directory - INFO: Registered Kenwood_TM-V7 = TMV7Radio -[2020-12-20 21:36:17,756] chirp.directory - INFO: Registered Kenwood_TM-G707 = TMG707Radio -[2020-12-20 21:36:17,756] chirp.directory - INFO: Registered Kenwood_TH-G71 = THG71Radio -[2020-12-20 21:36:17,756] chirp.directory - INFO: Registered Kenwood_TH-F6 = THF6ARadio -[2020-12-20 21:36:17,756] chirp.directory - INFO: Registered Kenwood_TH-F7 = THF7ERadio -[2020-12-20 21:36:17,756] chirp.directory - INFO: Registered Kenwood_TM-D710 = TMD710Radio -[2020-12-20 21:36:17,757] chirp.directory - INFO: Registered Kenwood_TH-D72_live_mode = THD72Radio -[2020-12-20 21:36:17,757] chirp.directory - INFO: Registered Kenwood_TM-V71 = TMV71Radio -[2020-12-20 21:36:17,757] chirp.directory - INFO: Registered Kenwood_TK-868G = TK868G_Radios -[2020-12-20 21:36:17,757] chirp.directory - INFO: Registered Kenwood_TM-D710G = TMD710GRadio -[2020-12-20 21:36:17,757] chirp.directory - INFO: Registered Kenwood_TH-K2 = THK2Radio -[2020-12-20 21:36:17,757] chirp.directory - INFO: Registered Kenwood_TM-271 = TM271Radio -[2020-12-20 21:36:17,757] chirp.directory - INFO: Registered Kenwood_TM-281 = TM281Radio -[2020-12-20 21:36:17,757] chirp.directory - INFO: Registered Kenwood_TM-471 = TM471Radio -[2020-12-20 21:36:17,757] chirp.directory - INFO: Registered Kenwood_TS-590S_SG_LiveMode = TS590Radio -[2020-12-20 21:36:17,757] chirp.directory - INFO: Registered Kenwood_TS-480_LiveMode = TS480Radio -[2020-12-20 21:36:17,757] chirp.directory - INFO: Registered Kenwood_TK-862G = TK862G_Radios -[2020-12-20 21:36:17,757] chirp.directory - INFO: Registered Kenwood_TK-860G = TK860G_Radios -[2020-12-20 21:36:17,757] chirp.directory - INFO: Registered Kenwood_TK-768G = TK768G_Radios -[2020-12-20 21:36:17,758] chirp.directory - INFO: Registered Kenwood_TK-762G = TK762G_Radios -[2020-12-20 21:36:17,758] chirp.directory - INFO: Registered Kenwood_TK-760G = TK760G_Radios -[2020-12-20 21:36:17,758] chirp.directory - INFO: Registered Yaesu_FT-817 = FT817Radio -[2020-12-20 21:36:17,758] chirp.directory - INFO: Registered Kenwood_TK-388G = TK388G_Radios -[2020-12-20 21:36:17,758] chirp.directory - INFO: Registered Yaesu_FT-817ND = FT817NDRadio -[2020-12-20 21:36:17,758] chirp.directory - INFO: Registered Kenwood_TK-378G = TK378G_Radios -[2020-12-20 21:36:17,758] chirp.directory - INFO: Registered Yaesu_FT-817ND_US = FT817NDUSRadio -[2020-12-20 21:36:17,758] chirp.directory - INFO: Registered Kenwood_TK-372G = TK372G_Radios -[2020-12-20 21:36:17,758] chirp.directory - INFO: Registered Kenwood_TK-370G = TK370G_Radios -[2020-12-20 21:36:17,758] chirp.directory - INFO: Registered Kenwood_TK-360G = TK360G_Radios -[2020-12-20 21:36:17,758] chirp.directory - INFO: Registered Kenwood_TK-278G = TK278G_Radios -[2020-12-20 21:36:17,758] chirp.directory - INFO: Registered Kenwood_TK-272G = TK272G_Radios -[2020-12-20 21:36:17,758] chirp.directory - INFO: Registered Icom_ID-51 = ID51Radio -[2020-12-20 21:36:17,758] chirp.directory - INFO: Registered Kenwood_TK-270G = TK270G_Radios -[2020-12-20 21:36:17,758] chirp.directory - INFO: Registered Kenwood_TK-260G = TK260G_Radios -[2020-12-20 21:36:17,759] chirp.directory - INFO: Registered TYT_TH-350 = Th350Radio -[2020-12-20 21:36:17,759] chirp.drivers.ft7100 - DEBUG: get_features -[2020-12-20 21:36:17,759] chirp.directory - INFO: Registered Icom_IC-W32A = ICW32ARadio -[2020-12-20 21:36:17,759] chirp.directory - INFO: Registered Icom_IC-W32E = ICW32ERadio -[2020-12-20 21:36:17,759] chirp.directory - INFO: Registered Yaesu_FT-857_897 = FT857Radio -[2020-12-20 21:36:17,759] chirp.directory - INFO: Registered Yaesu_FT-857_897_US = FT857USRadio -[2020-12-20 21:36:17,760] chirp.directory - INFO: Registered LUITON_LT-725UV = LT725UV -[2020-12-20 21:36:17,760] chirp.directory - INFO: Registered TYT_TH-7800_File = TYTTH7800File -[2020-12-20 21:36:17,760] chirp.directory - INFO: Registered Baojie_BJ-218 = Baojie218 -[2020-12-20 21:36:17,760] chirp.directory - INFO: Registered TYT_TH-7800 = TYTTH7800Radio -[2020-12-20 21:36:17,761] chirp.directory - INFO: Registered Kenwood_ITM = ITMRadio -[2020-12-20 21:36:17,761] chirp.directory - INFO: Registered Wouxun_KG-UV9D_Plus = KGUV9DPlusRadio -[2020-12-20 21:36:17,761] chirp.directory - INFO: Registered Yaesu_FT-1500M = FT1500Radio -[2020-12-20 21:36:17,761] chirp.directory - INFO: Registered Rugged_RH5R-V2 = RH5RV2 -[2020-12-20 21:36:17,762] chirp.directory - INFO: Registered TYT_TH-UV8000 = THUV8000Radio -[2020-12-20 21:36:17,762] chirp.directory - INFO: Registered Yaesu_VX-170 = VX170Radio -[2020-12-20 21:36:17,762] chirp.directory - INFO: Registered Retevis_RT26 = RT26Radio -[2020-12-20 21:36:17,762] chirp.directory - INFO: Registered HobbyPCB_RS-UV3 = HobbyPCBRSUV3Radio -[2020-12-20 21:36:17,763] chirp.directory - INFO: Registered Kenwood_TS-590SG_CloneMode = TS590Radio -[2020-12-20 21:36:17,763] chirp.directory - INFO: Registered Kenwood_TS-590S_CloneMode = TS590SRadio -[2020-12-20 21:36:17,763] chirp.directory - INFO: Registered ARRL_Travel_Plus = TpeRadio -[2020-12-20 21:36:17,763] chirp.directory - INFO: Registered Icom_IC-2300H = IC2300Radio -[2020-12-20 21:36:17,763] chirp.directory - INFO: Registered Baofeng_BF-T1 = BFT1 -[2020-12-20 21:36:17,764] chirp.directory - INFO: Registered Icom_IC-T70 = ICT70Radio -[2020-12-20 21:36:17,764] chirp.directory - INFO: Registered Baofeng_BF-888 = H777Radio -[2020-12-20 21:36:17,764] chirp.directory - INFO: Registered Radioddity_GA-2S = ROGA2SRadio -[2020-12-20 21:36:17,764] chirp.directory - INFO: Registered Icom_7200 = Icom7200Radio -[2020-12-20 21:36:17,764] chirp.directory - INFO: Registered Yaesu_FT-8100 = FT8100Radio -[2020-12-20 21:36:17,764] chirp.directory - INFO: Registered Icom_IC-7000 = Icom7000Radio -[2020-12-20 21:36:17,765] chirp.directory - INFO: Registered Icom_IC-7100 = Icom7100Radio -[2020-12-20 21:36:17,765] chirp.directory - INFO: Registered Icom_746 = Icom746Radio -[2020-12-20 21:36:17,765] chirp.directory - INFO: Registered Yaesu_FTM-3200D_R = FTM3200Radio -[2020-12-20 21:36:17,765] chirp.directory - INFO: Registered Yaesu_FT-1802M = FT1802Radio -[2020-12-20 21:36:17,766] chirp.directory - INFO: Registered AnyTone_TERMN-8R = AnyToneTERMN8RRadio -[2020-12-20 21:36:17,766] chirp.directory - INFO: Registered AnyTone_OBLTR-8R = AnyToneOBLTR8RRadio -[2020-12-20 21:36:17,766] chirp.directory - INFO: Registered Puxing_PX-888K = Puxing_PX888K_Radio -[2020-12-20 21:36:17,766] chirp.directory - INFO: Registered Baofeng_UV-3R = UV3RRadio -[2020-12-20 21:36:17,767] chirp.directory - INFO: Registered Yaesu_FT-90 = FT90Radio -[2020-12-20 21:36:17,767] chirp.directory - INFO: Registered Yaesu_FT-60 = FT60Radio -[2020-12-20 21:36:17,768] chirp.directory - INFO: Registered Wouxun_KG-UV8D = KGUV8DRadio -[2020-12-20 21:36:17,768] chirp.directory - INFO: Registered Baofeng_UV-5R = BaofengUV5RGeneric -[2020-12-20 21:36:17,768] chirp.directory - INFO: Registered Baofeng_F-11 = BaofengF11Radio -[2020-12-20 21:36:17,768] chirp.directory - INFO: Registered Baofeng_UV-82 = BaofengUV82Radio -[2020-12-20 21:36:17,768] chirp.directory - INFO: Registered Radioddity_UV-82X3 = Radioddity82X3Radio -[2020-12-20 21:36:17,768] chirp.directory - INFO: Registered Baofeng_UV-6 = BaofengUV6Radio -[2020-12-20 21:36:17,768] chirp.directory - INFO: Registered Intek_KT-980HP = IntekKT980Radio -[2020-12-20 21:36:17,768] chirp.directory - INFO: Registered Baofeng_BF-F8HP = BaofengBFF8HPRadio -[2020-12-20 21:36:17,769] chirp.directory - INFO: Registered Baofeng_UV-82HP = BaofengUV82HPRadio -[2020-12-20 21:36:17,769] chirp.directory - INFO: Registered Radioddity_UV-5RX3 = RadioddityUV5RX3Radio -[2020-12-20 21:36:17,769] chirp.directory - INFO: Registered AnyTone_5888UV = AnyTone5888UVRadio -[2020-12-20 21:36:17,769] chirp.directory - INFO: Registered Intek_HR-2040 = IntekHR2040Radio -[2020-12-20 21:36:17,769] chirp.directory - INFO: Registered Polmar_DB-50M = PolmarDB50MRadio -[2020-12-20 21:36:17,769] chirp.directory - INFO: Registered Powerwerx_DB-750X = PowerwerxDB750XRadio -[2020-12-20 21:36:17,770] chirp.directory - INFO: Registered BTECH_MURS-V1 = MURSV1 -[2020-12-20 21:36:17,771] chirp.directory - INFO: Registered Yaesu_FTM-350 = FTM350Radio -[2020-12-20 21:36:17,772] chirp.directory - INFO: Registered Yaesu_FT-50 = FT50Radio -[2020-12-20 21:36:17,772] chirp.directory - INFO: Registered Kenwood_TS-2000 = TS2000Radio -[2020-12-20 21:36:17,772] chirp.directory - INFO: Registered TYT_TH-9800_File = TYTTH9800File -[2020-12-20 21:36:17,773] chirp.directory - INFO: Registered TYT_TH-9800 = TYTTH9800Radio -[2020-12-20 21:36:17,774] chirp.directory - INFO: Registered Leixen_VV-898 = LeixenVV898Radio -[2020-12-20 21:36:17,774] chirp.directory - INFO: Registered Jetstream_JT270M = JetstreamJT270MRadio -[2020-12-20 21:36:17,774] chirp.directory - INFO: Registered Jetstream_JT270MH = JetstreamJT270MHRadio -[2020-12-20 21:36:17,774] chirp.directory - INFO: Registered Leixen_VV-898S = LeixenVV898SRadio -[2020-12-20 21:36:17,775] chirp.directory - INFO: Registered Kenwood_TK-760 = TK760_Radio -[2020-12-20 21:36:17,775] chirp.directory - INFO: Registered Kenwood_TK-762 = TK762_Radio -[2020-12-20 21:36:17,775] chirp.directory - INFO: Registered Kenwood_TK-768 = TK768_Radio -[2020-12-20 21:36:17,775] chirp.directory - INFO: Registered Kenwood_TK-860 = TK860_Radio -[2020-12-20 21:36:17,775] chirp.directory - INFO: Registered Kenwood_TK-862 = TK862_Radio -[2020-12-20 21:36:17,776] chirp.directory - INFO: Registered Kenwood_TK-868 = TK868_Radio -[2020-12-20 21:36:17,776] chirp.directory - INFO: Registered Baojie_BJ-UV55 = BaojieBJUV55Radio -[2020-12-20 21:36:17,778] chirp.directory - INFO: Registered Yaesu_FT-70D = FT70Radio -[2020-12-20 21:36:17,778] chirp.directory - INFO: Registered Radioddity_R2 = RadioddityR2Radio -[2020-12-20 21:36:17,779] chirp.directory - INFO: Registered TYT_TH-UVF1 = TYTTHUVF1Radio -[2020-12-20 21:36:17,780] chirp.directory - INFO: Registered Yaesu_VX-6 = VX6Radio -[2020-12-20 21:36:17,781] chirp.directory - INFO: Registered Feidaxin_FD-268A = FD268ARadio -[2020-12-20 21:36:17,781] chirp.directory - INFO: Registered Feidaxin_FD-268B = FD268BRadio -[2020-12-20 21:36:17,781] chirp.directory - INFO: Registered Feidaxin_FD-288A = FD288ARadio -[2020-12-20 21:36:17,781] chirp.directory - INFO: Registered Feidaxin_FD-288B = FD288BRadio -[2020-12-20 21:36:17,781] chirp.directory - INFO: Registered Feidaxin_FD-150A = FD150ARadio -[2020-12-20 21:36:17,781] chirp.directory - INFO: Registered Feidaxin_FD-160A = FD160ARadio -[2020-12-20 21:36:17,781] chirp.directory - INFO: Registered Feidaxin_FD-450A = FD450ARadio -[2020-12-20 21:36:17,781] chirp.directory - INFO: Registered Feidaxin_FD-460A = FD460ARadio -[2020-12-20 21:36:17,781] chirp.directory - INFO: Registered Feidaxin_FD-460UH = FD460UHRadio -[2020-12-20 21:36:17,782] chirp.directory - INFO: Registered Yaesu_FT-450D = FT450DRadio -[2020-12-20 21:36:17,783] chirp.directory - INFO: Registered Kenwood_TH-D72_clone_mode = THD72Radio -[2020-12-20 21:36:17,783] chirp.directory - INFO: Registered Icom_ID-880H = ID880Radio -[2020-12-20 21:36:17,783] chirp.directory - INFO: Registered Icom_ID-80H = ID80Radio -[2020-12-20 21:36:17,784] chirp.directory - INFO: Registered BTECH_UV-50X3 = UV50X3 -[2020-12-20 21:36:17,784] chirp.directory - INFO: Registered KYD_IP-620 = IP620Radio -[2020-12-20 21:36:17,785] chirp.directory - INFO: Registered Yaesu_FT-818 = FT818Radio -[2020-12-20 21:36:17,785] chirp.directory - INFO: Registered Yaesu_FT-818ND_US = FT818NDUSRadio -[2020-12-20 21:36:17,786] chirp.directory - INFO: Registered Wouxun_KG-UVD1P = KGUVD1PRadio -[2020-12-20 21:36:17,787] chirp.directory - INFO: Registered Wouxun_KG-UV6 = KGUV6DRadio -[2020-12-20 21:36:17,787] chirp.directory - INFO: Registered Wouxun_KG-816 = KG816Radio -[2020-12-20 21:36:17,787] chirp.directory - INFO: Registered Wouxun_KG-818 = KG818Radio -[2020-12-20 21:36:17,787] chirp.directory - INFO: Registered TYT_TH-UV3R = TYTUV3RRadio -[2020-12-20 21:36:17,787] chirp.directory - INFO: Registered TYT_TH-UV3R-25 = TYTUV3R25Radio -[2020-12-20 21:36:17,788] chirp.directory - INFO: Registered Yaesu_FT-7800_7900 = FT7800Radio -[2020-12-20 21:36:17,788] chirp.directory - INFO: Registered Yaesu_FT-8800 = FT8800Radio -[2020-12-20 21:36:17,788] chirp.directory - INFO: Registered Yaesu_FT-8900 = FT8900Radio -[2020-12-20 21:36:17,789] chirp.directory - INFO: Registered Vertex_Standard_VXA-700 = VXA700Radio -[2020-12-20 21:36:17,789] chirp.directory - INFO: Registered TYT_TH-UVF8D = TYTUVF8DRadio -[2020-12-20 21:36:17,790] chirp.directory - INFO: Registered Yaesu_FT-4XR = YaesuFT4XRRadio -[2020-12-20 21:36:17,790] chirp.directory - INFO: Registered Yaesu_FT-4XE = YaesuFT4XERadio -[2020-12-20 21:36:17,791] chirp.directory - INFO: Registered Yaesu_FT-4VR = YaesuFT4VRRadio -[2020-12-20 21:36:17,791] chirp.directory - INFO: Registered Yaesu_FT-65R = YaesuFT65RRadio -[2020-12-20 21:36:17,791] chirp.directory - INFO: Registered Yaesu_FT-65E = YaesuFT65ERadio -[2020-12-20 21:36:17,791] chirp.directory - INFO: Registered Yaesu_FT-25R = YaesuFT25RRadio -[2020-12-20 21:36:17,791] chirp.drivers.ft7100 - DEBUG: get_features -[2020-12-20 21:36:17,791] chirp.directory - INFO: Registered BTECH_GMRS-V1 = GMRSV1 -[2020-12-20 21:36:17,792] chirp.directory - INFO: Registered Icom_IC-208H = IC208Radio -[2020-12-20 21:36:17,792] chirp.directory - INFO: Registered Yaesu_VX-2 = VX2Radio -[2020-12-20 21:36:17,793] chirp.directory - INFO: Registered Alinco_DR03T = DR03Radio -[2020-12-20 21:36:17,793] chirp.directory - INFO: Registered Alinco_DR06T = DR06Radio -[2020-12-20 21:36:17,793] chirp.directory - INFO: Registered Alinco_DR135T = DR135Radio -[2020-12-20 21:36:17,793] chirp.directory - INFO: Registered Alinco_DR235T = DR235Radio -[2020-12-20 21:36:17,793] chirp.directory - INFO: Registered Alinco_DR435T = DR435Radio -[2020-12-20 21:36:17,793] chirp.directory - INFO: Registered Alinco_DJ596 = DJ596Radio -[2020-12-20 21:36:17,793] chirp.directory - INFO: Registered Jetstream_JT220M = JT220MRadio -[2020-12-20 21:36:17,793] chirp.directory - INFO: Registered Alinco_DJ175 = DJ175Radio -[2020-12-20 21:36:17,793] chirp.directory - INFO: Registered Alinco_DJ-G7EG = AlincoDJG7EG -[2020-12-20 21:36:17,794] chirp.directory - INFO: Registered Puxing_PX-777 = Puxing777Radio -[2020-12-20 21:36:17,794] chirp.directory - INFO: Registered Puxing_PX-2R = Puxing2RRadio -[2020-12-20 21:36:17,794] chirp.directory - INFO: Registered Icom_IC-91_92AD = IC9xRadio -[2020-12-20 21:36:17,795] chirp.directory - INFO: Registered Radtel_T18 = T18Radio -[2020-12-20 21:36:17,795] chirp.directory - INFO: Registered Kenwood_TK-7102 = KenwoodTK7102Radio -[2020-12-20 21:36:17,795] chirp.directory - INFO: Registered Kenwood_TK-8102 = KenwoodTK8102Radio -[2020-12-20 21:36:17,795] chirp.directory - INFO: Registered Kenwood_TK-7108 = KenwoodTK7108Radio -[2020-12-20 21:36:17,795] chirp.directory - INFO: Registered Kenwood_TK-8108 = KenwoodTK8108Radio -[2020-12-20 21:36:17,796] chirp.directory - INFO: Registered Yaesu_VX-8R = VX8Radio -[2020-12-20 21:36:17,796] chirp.directory - INFO: Registered Yaesu_VX-8DR = VX8DRadio -[2020-12-20 21:36:17,797] chirp.directory - INFO: Registered Yaesu_VX-8GE = VX8GERadio -[2020-12-20 21:36:17,797] chirp.directory - INFO: Registered Icom_IC-2200H = IC2200Radio -[2020-12-20 21:36:17,798] chirp.directory - INFO: Registered Yaesu_FT-2900R_1900R = FT2900Radio -[2020-12-20 21:36:17,798] chirp.directory - INFO: Registered Kenwood_TK-260 = TK260_Radio -[2020-12-20 21:36:17,799] chirp.directory - INFO: Registered Kenwood_TK-270 = TK270_Radio -[2020-12-20 21:36:17,799] chirp.directory - INFO: Registered Kenwood_TK-272 = TK272_Radio -[2020-12-20 21:36:17,799] chirp.directory - INFO: Registered Kenwood_TK-278 = TK278_Radio -[2020-12-20 21:36:17,799] chirp.directory - INFO: Registered Kenwood_TK-360 = TK360_Radio -[2020-12-20 21:36:17,799] chirp.directory - INFO: Registered Kenwood_TK-370 = TK370_Radio -[2020-12-20 21:36:17,799] chirp.directory - INFO: Registered Kenwood_TK-372 = TK372_Radio -[2020-12-20 21:36:17,799] chirp.directory - INFO: Registered Kenwood_TK-378 = TK378_Radio -[2020-12-20 21:36:17,799] chirp.directory - INFO: Registered Retevis_RT23 = RT23Radio -[2020-12-20 21:36:17,800] chirp.directory - INFO: Registered Icom_IC-V82_U82 = ICx8xRadio -[2020-12-20 21:36:17,800] chirp.directory - INFO: Registered Wouxun_KG-UV8D_Plus = KGUV8DPlusRadio -[2020-12-20 21:36:17,801] chirp.directory - INFO: Registered Icom_IC-Q7A = ICQ7Radio -[2020-12-20 21:36:17,801] chirp.directory - INFO: Registered Baojie_BJ-9900 = BJ9900Radio -[2020-12-20 21:36:17,802] chirp.directory - INFO: Registered Icom_ID-800H_v2 = ID800v2Radio -[2020-12-20 21:36:17,802] chirp.directory - INFO: Registered Kenwood_TS-850 = TS850Radio -[2020-12-20 21:36:17,803] chirp.directory - INFO: Registered Baofeng_BF-A58 = BFA58 -[2020-12-20 21:36:17,803] chirp.directory - INFO: Registered Baofeng_UV-82WP = UV82WP -[2020-12-20 21:36:17,803] chirp.directory - INFO: Registered Baofeng_GT-3WP = GT3WP -[2020-12-20 21:36:17,803] chirp.directory - INFO: Registered Retevis_RT6 = RT6 -[2020-12-20 21:36:17,803] chirp.directory - INFO: Registered Baofeng_BF-A58S = BFA58S -[2020-12-20 21:36:17,803] chirp.directory - INFO: Registered Baofeng_UV-9R = UV9R -[2020-12-20 21:36:17,804] chirp.directory - INFO: Registered Kenwood_TK-868G = TK868G_Radios -[2020-12-20 21:36:17,804] chirp.directory - INFO: Registered Kenwood_TK-862G = TK862G_Radios -[2020-12-20 21:36:17,804] chirp.directory - INFO: Registered Kenwood_TK-860G = TK860G_Radios -[2020-12-20 21:36:17,805] chirp.directory - INFO: Registered Kenwood_TK-768G = TK768G_Radios -[2020-12-20 21:36:17,805] chirp.directory - INFO: Registered Kenwood_TK-762G = TK762G_Radios -[2020-12-20 21:36:17,805] chirp.directory - INFO: Registered Kenwood_TK-760G = TK760G_Radios -[2020-12-20 21:36:17,805] chirp.directory - INFO: Registered Kenwood_TK-388G = TK388G_Radios -[2020-12-20 21:36:17,805] chirp.directory - INFO: Registered Kenwood_TK-378G = TK378G_Radios -[2020-12-20 21:36:17,805] chirp.directory - INFO: Registered Kenwood_TK-372G = TK372G_Radios -[2020-12-20 21:36:17,805] chirp.directory - INFO: Registered Kenwood_TK-370G = TK370G_Radios -[2020-12-20 21:36:17,805] chirp.directory - INFO: Registered Kenwood_TK-360G = TK360G_Radios -[2020-12-20 21:36:17,805] chirp.directory - INFO: Registered Kenwood_TK-278G = TK278G_Radios -[2020-12-20 21:36:17,805] chirp.directory - INFO: Registered Kenwood_TK-272G = TK272G_Radios -[2020-12-20 21:36:17,805] chirp.directory - INFO: Registered Kenwood_TK-270G = TK270G_Radios -[2020-12-20 21:36:17,805] chirp.directory - INFO: Registered Kenwood_TK-260G = TK260G_Radios -[2020-12-20 21:36:17,806] chirp.directory - INFO: Registered Icom_IC-W32A = ICW32ARadio -[2020-12-20 21:36:17,806] chirp.directory - INFO: Registered Icom_IC-W32E = ICW32ERadio -[2020-12-20 21:36:17,806] chirp.drivers.ft7100 - DEBUG: get_features -[2020-12-20 21:36:17,807] chirp.directory - INFO: Registered LUITON_LT-725UV = LT725UV -[2020-12-20 21:36:17,807] chirp.directory - INFO: Registered Baojie_BJ-218 = Baojie218 -[2020-12-20 21:36:17,808] chirp.directory - INFO: Registered Wouxun_KG-UV9D_Plus = KGUV9DPlusRadio -[2020-12-20 21:36:17,808] chirp.directory - INFO: Registered Rugged_RH5R-V2 = RH5RV2 -[2020-12-20 21:36:17,809] chirp.directory - INFO: Registered Yaesu_VX-170 = VX170Radio -[2020-12-20 21:36:17,809] chirp.directory - INFO: Registered HobbyPCB_RS-UV3 = HobbyPCBRSUV3Radio -[2020-12-20 21:36:17,810] chirp.directory - INFO: Registered ARRL_Travel_Plus = TpeRadio -[2020-12-20 21:36:17,810] chirp.directory - INFO: Registered Icom_IC-2300H = IC2300Radio -[2020-12-20 21:36:17,811] chirp.directory - INFO: Registered Icom_IC-T70 = ICT70Radio -[2020-12-20 21:36:17,811] chirp.directory - INFO: Registered Icom_7200 = Icom7200Radio -[2020-12-20 21:36:17,811] chirp.directory - INFO: Registered Icom_IC-7000 = Icom7000Radio -[2020-12-20 21:36:17,811] chirp.directory - INFO: Registered Icom_IC-7100 = Icom7100Radio -[2020-12-20 21:36:17,811] chirp.directory - INFO: Registered Icom_746 = Icom746Radio -[2020-12-20 21:36:17,812] chirp.directory - INFO: Registered Yaesu_FTM-3200D_R = FTM3200Radio -[2020-12-20 21:36:17,813] chirp.directory - INFO: Registered Puxing_PX-888K = Puxing_PX888K_Radio -[2020-12-20 21:36:17,813] chirp.directory - INFO: Registered Yaesu_FT-60 = FT60Radio -[2020-12-20 21:36:17,814] chirp.directory - INFO: Registered Wouxun_KG-UV8D = KGUV8DRadio -[2020-12-20 21:36:17,850] chirp.drivers.ft7100 - DEBUG: get_features -[2020-12-20 21:36:18,958] chirp.chirp_common - DEBUG: Image data has no metadata blob -[2020-12-20 21:36:18,962] chirp.directory - ERROR: Radio class CSVRadio failed during detection: 'str' object has no attribute 'decode' -[2020-12-20 21:36:18,962] chirp.directory - ERROR: Radio class CommanderCSVRadio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str -[2020-12-20 21:36:18,962] chirp.directory - ERROR: Radio class RTCSVRadio failed during detection: 'str' object has no attribute 'decode' -[2020-12-20 21:36:18,962] chirp.directory - ERROR: Radio class BaofengUVB5 failed during detection: startswith first arg must be bytes or a tuple of bytes, not str -[2020-12-20 21:36:18,962] chirp.directory - ERROR: Radio class RT1Radio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str -[2020-12-20 21:36:18,962] chirp.directory - ERROR: Radio class RT21Radio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str -[2020-12-20 21:36:18,962] chirp.directory - ERROR: Radio class KGUV8ERadio failed during detection: a bytes-like object is required, not 'str' -[2020-12-20 21:36:18,963] chirp.drivers.boblov_x3plus - DEBUG: Boblov_x3plus: match_model: size mismatch -[2020-12-20 21:36:18,963] chirp.drivers.boblov_x3plus - DEBUG: Boblov_x3plus: match_model: size mismatch -[2020-12-20 21:36:18,963] chirp.directory - ERROR: Radio class Th350Radio failed during detection: startswith first arg must be str or a tuple of str, not bytes -[2020-12-20 21:36:18,963] chirp.directory - ERROR: Radio class RT26Radio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str -[2020-12-20 21:36:18,963] chirp.directory - ERROR: Radio class AnyToneTERMN8RRadio failed during detection: a bytes-like object is required, not 'str' -[2020-12-20 21:36:18,963] chirp.directory - ERROR: Radio class AnyToneOBLTR8RRadio failed during detection: a bytes-like object is required, not 'str' -[2020-12-20 21:36:18,963] chirp.directory - ERROR: Radio class AnyTone5888UVRadio failed during detection: a bytes-like object is required, not 'str' -[2020-12-20 21:36:18,963] chirp.directory - ERROR: Radio class IntekHR2040Radio failed during detection: a bytes-like object is required, not 'str' -[2020-12-20 21:36:18,963] chirp.directory - WARNING: Radio driver PolmarDB50MRadio needs py3 match_model conversion! -[2020-12-20 21:36:18,986] chirp.drivers.anytone - ERROR: Error writing to radio: Bar -[2020-12-20 21:36:19,054] chirp.drivers.anytone - ERROR: Error writing to radio: Bar -[2020-12-20 21:36:19,054] chirp.drivers.anytone - ERROR: Error writing to radio: name 'six' is not defined -[2020-12-20 21:36:19,117] chirp.drivers.anytone - ERROR: Error writing to radio: name 'six' is not defined -[2020-12-20 21:36:19,117] chirp.drivers.anytone - ERROR: Error writing to radio: name 'six' is not defined -[2020-12-20 21:36:19,179] chirp.drivers.anytone - ERROR: Error writing to radio: name 'six' is not defined -[2020-12-20 21:36:19,179] chirp.drivers.anytone - ERROR: Error writing to radio: name 'six' is not defined -[2020-12-20 21:36:19,239] chirp.drivers.anytone - ERROR: Error writing to radio: name 'six' is not defined -[2020-12-20 21:36:19,399] chirp.chirp_common - DEBUG: Image data has no metadata blob -[2020-12-20 21:36:19,402] chirp.directory - ERROR: Radio class CSVRadio failed during detection: 'str' object has no attribute 'decode' -[2020-12-20 21:36:19,402] chirp.directory - ERROR: Radio class CommanderCSVRadio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str -[2020-12-20 21:36:19,402] chirp.directory - ERROR: Radio class RTCSVRadio failed during detection: 'str' object has no attribute 'decode' -[2020-12-20 21:36:19,402] chirp.directory - ERROR: Radio class BaofengUVB5 failed during detection: startswith first arg must be bytes or a tuple of bytes, not str -[2020-12-20 21:36:19,402] chirp.directory - ERROR: Radio class RT1Radio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str -[2020-12-20 21:36:19,402] chirp.directory - ERROR: Radio class RT21Radio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str -[2020-12-20 21:36:19,402] chirp.directory - ERROR: Radio class KGUV8ERadio failed during detection: a bytes-like object is required, not 'str' -[2020-12-20 21:36:19,403] chirp.drivers.boblov_x3plus - DEBUG: Boblov_x3plus: match_model: size mismatch -[2020-12-20 21:36:19,403] chirp.drivers.boblov_x3plus - DEBUG: Boblov_x3plus: match_model: size mismatch -[2020-12-20 21:36:19,403] chirp.directory - ERROR: Radio class Th350Radio failed during detection: startswith first arg must be str or a tuple of str, not bytes -[2020-12-20 21:36:19,403] chirp.directory - ERROR: Radio class RT26Radio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str -[2020-12-20 21:36:19,403] chirp.directory - ERROR: Radio class AnyToneTERMN8RRadio failed during detection: a bytes-like object is required, not 'str' -[2020-12-20 21:36:19,403] chirp.directory - ERROR: Radio class AnyToneOBLTR8RRadio failed during detection: a bytes-like object is required, not 'str' -[2020-12-20 21:36:19,403] chirp.directory - ERROR: Radio class AnyTone5888UVRadio failed during detection: a bytes-like object is required, not 'str' -[2020-12-20 21:36:19,403] chirp.directory - ERROR: Radio class IntekHR2040Radio failed during detection: a bytes-like object is required, not 'str' -[2020-12-20 21:36:19,403] chirp.directory - ERROR: Radio class PolmarDB50MRadio failed during detection: a bytes-like object is required, not 'str' -[2020-12-20 21:36:19,403] chirp.directory - ERROR: Radio class PowerwerxDB750XRadio failed during detection: a bytes-like object is required, not 'str' -[2020-12-20 21:36:19,403] chirp.directory - ERROR: Radio class FTM350Radio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str -[2020-12-20 21:36:19,403] chirp.directory - ERROR: Radio class LeixenVV898Radio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str -[2020-12-20 21:36:19,404] chirp.directory - ERROR: Radio class JetstreamJT270MRadio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str -[2020-12-20 21:36:19,404] chirp.directory - ERROR: Radio class JetstreamJT270MHRadio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str -[2020-12-20 21:36:19,404] chirp.directory - ERROR: Radio class LeixenVV898SRadio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str -[2020-12-20 21:36:19,404] chirp.directory - ERROR: Radio class TK760_Radio failed during detection: can only concatenate str (not "int") to str -[2020-12-20 21:36:19,404] chirp.directory - ERROR: Radio class TK762_Radio failed during detection: can only concatenate str (not "int") to str -[2020-12-20 21:36:19,404] chirp.directory - ERROR: Radio class TK768_Radio failed during detection: can only concatenate str (not "int") to str -[2020-12-20 21:36:19,404] chirp.directory - ERROR: Radio class TK860_Radio failed during detection: can only concatenate str (not "int") to str -[2020-12-20 21:36:19,404] chirp.directory - ERROR: Radio class TK862_Radio failed during detection: can only concatenate str (not "int") to str -[2020-12-20 21:36:19,404] chirp.directory - ERROR: Radio class TK868_Radio failed during detection: can only concatenate str (not "int") to str -[2020-12-20 21:36:19,404] chirp.directory - ERROR: Radio class TYTTHUVF1Radio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str -[2020-12-20 21:36:19,404] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: -[2020-12-20 21:36:19,404] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 31 00 00 00 00 AH01.... - -[2020-12-20 21:36:19,404] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: -[2020-12-20 21:36:19,404] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 31 00 00 00 00 AH01.... - -[2020-12-20 21:36:19,405] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: -[2020-12-20 21:36:19,405] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 31 00 00 00 00 AH01.... - -[2020-12-20 21:36:19,405] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: -[2020-12-20 21:36:19,405] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 31 00 00 00 00 AH01.... - -[2020-12-20 21:36:19,405] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: -[2020-12-20 21:36:19,405] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 31 00 00 00 00 AH01.... - -[2020-12-20 21:36:19,405] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: -[2020-12-20 21:36:19,405] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 31 00 00 00 00 AH01.... - -[2020-12-20 21:36:19,405] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: -[2020-12-20 21:36:19,405] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 31 00 00 00 00 AH01.... - -[2020-12-20 21:36:19,405] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: -[2020-12-20 21:36:19,405] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 31 00 00 00 00 AH01.... - -[2020-12-20 21:36:19,405] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: -[2020-12-20 21:36:19,406] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 31 00 00 00 00 AH01.... - -[2020-12-20 21:36:19,406] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: -[2020-12-20 21:36:19,406] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 31 00 00 00 00 AH01.... - -[2020-12-20 21:36:19,406] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: -[2020-12-20 21:36:19,406] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 31 00 00 00 00 AH01.... - -[2020-12-20 21:36:19,406] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: -[2020-12-20 21:36:19,406] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 31 00 00 00 00 AH01.... - -[2020-12-20 21:36:19,406] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: -[2020-12-20 21:36:19,406] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 31 00 00 00 00 AH01.... - -[2020-12-20 21:36:19,406] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: -[2020-12-20 21:36:19,406] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 31 00 00 00 00 AH01.... - -[2020-12-20 21:36:19,406] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: -[2020-12-20 21:36:19,406] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 31 00 00 00 00 AH01.... - -[2020-12-20 21:36:19,406] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: -[2020-12-20 21:36:19,406] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 31 00 00 00 00 AH01.... - -[2020-12-20 21:36:19,407] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: -[2020-12-20 21:36:19,407] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 31 00 00 00 00 AH01.... - -[2020-12-20 21:36:19,407] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: -[2020-12-20 21:36:19,407] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 31 00 00 00 00 AH01.... - -[2020-12-20 21:36:19,407] chirp.directory - ERROR: Radio class UV50X3 failed during detection: 'in ' requires string as left operand, not bytes -[2020-12-20 21:36:19,407] chirp.directory - WARNING: Radio driver FT8800Radio needs py3 match_model conversion! -[2020-12-20 21:36:19,409] chirp.chirp_common - DEBUG: Loaded metadata: {'vendor': 'Baofeng', 'model': 'BF-A58S', 'chirp_version': 'daily-20190925', 'rclass': 'BFA58S', 'variant': ''} -[2020-12-20 21:36:19,410] chirp.chirp_common - DEBUG: Parsed version 'daily-20190925' to (20190925,) -[2020-12-20 21:36:19,410] chirp.chirp_common - ERROR: Failed to parse my version '0.3.0dev': invalid literal for int() with base 10: '0dev' -[2020-12-20 21:36:19,410] chirp.chirp_common - WARNING: Image is from version daily-20190925 but we are 0.3.0dev -[2020-12-20 21:36:19,465] chirp.chirp_common - DEBUG: Loaded metadata: {'vendor': 'Baofeng', 'model': 'BF-A58S', 'chirp_version': 'daily-20190925', 'rclass': 'BFA58S', 'variant': ''} -[2020-12-20 21:36:19,465] chirp.chirp_common - DEBUG: Parsed version 'daily-20190925' to (20190925,) -[2020-12-20 21:36:19,465] chirp.chirp_common - ERROR: Failed to parse my version '0.3.0dev': invalid literal for int() with base 10: '0dev' -[2020-12-20 21:36:19,465] chirp.chirp_common - WARNING: Image is from version daily-20190925 but we are 0.3.0dev -[2020-12-20 21:36:19,586] chirp.chirp_common - DEBUG: Loaded metadata: {'vendor': 'Baofeng', 'model': 'BF-A58S', 'chirp_version': 'daily-20190925', 'rclass': 'BFA58S', 'variant': ''} -[2020-12-20 21:36:19,586] chirp.chirp_common - DEBUG: Parsed version 'daily-20190925' to (20190925,) -[2020-12-20 21:36:19,587] chirp.chirp_common - ERROR: Failed to parse my version '0.3.0dev': invalid literal for int() with base 10: '0dev' -[2020-12-20 21:36:19,587] chirp.chirp_common - WARNING: Image is from version daily-20190925 but we are 0.3.0dev -[2020-12-20 21:36:19,737] chirp.chirp_common - DEBUG: Loaded metadata: {'vendor': 'Baofeng', 'model': 'BF-A58S', 'chirp_version': 'daily-20190925', 'rclass': 'BFA58S', 'variant': ''} -[2020-12-20 21:36:19,737] chirp.chirp_common - DEBUG: Parsed version 'daily-20190925' to (20190925,) -[2020-12-20 21:36:19,737] chirp.chirp_common - ERROR: Failed to parse my version '0.3.0dev': invalid literal for int() with base 10: '0dev' -[2020-12-20 21:36:19,737] chirp.chirp_common - WARNING: Image is from version daily-20190925 but we are 0.3.0dev -[2020-12-20 21:36:19,856] chirp.chirp_common - DEBUG: Loaded metadata: {'vendor': 'Baofeng', 'model': 'BF-A58S', 'chirp_version': 'daily-20190925', 'rclass': 'BFA58S', 'variant': ''} -[2020-12-20 21:36:19,856] chirp.chirp_common - DEBUG: Parsed version 'daily-20190925' to (20190925,) -[2020-12-20 21:36:19,856] chirp.chirp_common - ERROR: Failed to parse my version '0.3.0dev': invalid literal for int() with base 10: '0dev' -[2020-12-20 21:36:19,856] chirp.chirp_common - WARNING: Image is from version daily-20190925 but we are 0.3.0dev -[2020-12-20 21:36:19,910] chirp.chirp_common - DEBUG: Loaded metadata: {'vendor': 'Baofeng', 'model': 'BF-A58S', 'chirp_version': 'daily-20190925', 'rclass': 'BFA58S', 'variant': ''} -[2020-12-20 21:36:19,910] chirp.chirp_common - DEBUG: Parsed version 'daily-20190925' to (20190925,) -[2020-12-20 21:36:19,910] chirp.chirp_common - ERROR: Failed to parse my version '0.3.0dev': invalid literal for int() with base 10: '0dev' -[2020-12-20 21:36:19,910] chirp.chirp_common - WARNING: Image is from version daily-20190925 but we are 0.3.0dev -[2020-12-20 21:36:19,914] chirp.chirp_common - DEBUG: Loaded metadata: {'vendor': 'Baofeng', 'model': 'BF-A58S', 'chirp_version': 'daily-20190925', 'rclass': 'BFA58S', 'variant': ''} -[2020-12-20 21:36:19,915] chirp.chirp_common - DEBUG: Parsed version 'daily-20190925' to (20190925,) -[2020-12-20 21:36:19,915] chirp.chirp_common - ERROR: Failed to parse my version '0.3.0dev': invalid literal for int() with base 10: '0dev' -[2020-12-20 21:36:19,915] chirp.chirp_common - WARNING: Image is from version daily-20190925 but we are 0.3.0dev -[2020-12-20 21:36:19,969] chirp.chirp_common - DEBUG: Loaded metadata: {'vendor': 'Baofeng', 'model': 'BF-A58S', 'chirp_version': 'daily-20190925', 'rclass': 'BFA58S', 'variant': ''} -[2020-12-20 21:36:19,969] chirp.chirp_common - DEBUG: Parsed version 'daily-20190925' to (20190925,) -[2020-12-20 21:36:19,969] chirp.chirp_common - ERROR: Failed to parse my version '0.3.0dev': invalid literal for int() with base 10: '0dev' -[2020-12-20 21:36:19,969] chirp.chirp_common - WARNING: Image is from version daily-20190925 but we are 0.3.0dev -[2020-12-20 21:36:20,054] chirp.chirp_common - DEBUG: Loaded metadata: {'vendor': 'Baofeng', 'model': 'BF-A58S', 'chirp_version': 'daily-20190925', 'rclass': 'BFA58S', 'variant': ''} -[2020-12-20 21:36:20,055] chirp.chirp_common - DEBUG: Loaded metadata: {'vendor': 'Baofeng', 'model': 'BF-A58S', 'chirp_version': 'daily-20190925', 'rclass': 'BFA58S', 'variant': ''} -[2020-12-20 21:36:20,055] chirp.chirp_common - DEBUG: Parsed version 'daily-20190925' to (20190925,) -[2020-12-20 21:36:20,056] chirp.chirp_common - ERROR: Failed to parse my version '0.3.0dev': invalid literal for int() with base 10: '0dev' -[2020-12-20 21:36:20,056] chirp.chirp_common - WARNING: Image is from version daily-20190925 but we are 0.3.0dev -[2020-12-20 21:36:20,090] chirp.chirp_common - DEBUG: Loaded metadata: {'vendor': 'Baofeng', 'model': 'BF-A58S', 'chirp_version': 'daily-20190925', 'rclass': 'BFA58S', 'variant': ''} -[2020-12-20 21:36:20,090] chirp.chirp_common - DEBUG: Parsed version 'daily-20190925' to (20190925,) -[2020-12-20 21:36:20,090] chirp.chirp_common - ERROR: Failed to parse my version '0.3.0dev': invalid literal for int() with base 10: '0dev' -[2020-12-20 21:36:20,090] chirp.chirp_common - WARNING: Image is from version daily-20190925 but we are 0.3.0dev -[2020-12-20 21:36:20,136] chirp.chirp_common - DEBUG: Loaded metadata: {'vendor': 'Baofeng', 'model': 'BF-A58S', 'chirp_version': 'daily-20190925', 'rclass': 'BFA58S', 'variant': ''} -[2020-12-20 21:36:20,136] chirp.chirp_common - DEBUG: Parsed version 'daily-20190925' to (20190925,) -[2020-12-20 21:36:20,136] chirp.chirp_common - ERROR: Failed to parse my version '0.3.0dev': invalid literal for int() with base 10: '0dev' -[2020-12-20 21:36:20,136] chirp.chirp_common - WARNING: Image is from version daily-20190925 but we are 0.3.0dev -[2020-12-20 21:36:20,145] chirp.chirp_common - DEBUG: Loaded metadata: {'vendor': 'Baofeng', 'model': 'BF-A58S', 'chirp_version': 'daily-20190925', 'rclass': 'BFA58S', 'variant': ''} -[2020-12-20 21:36:20,145] chirp.chirp_common - DEBUG: Parsed version 'daily-20190925' to (20190925,) -[2020-12-20 21:36:20,145] chirp.chirp_common - ERROR: Failed to parse my version '0.3.0dev': invalid literal for int() with base 10: '0dev' -[2020-12-20 21:36:20,145] chirp.chirp_common - WARNING: Image is from version daily-20190925 but we are 0.3.0dev -[2020-12-20 21:36:20,177] chirp.chirp_common - DEBUG: Loaded metadata: {'vendor': 'Baofeng', 'model': 'BF-A58S', 'chirp_version': 'daily-20190925', 'rclass': 'BFA58S', 'variant': ''} -[2020-12-20 21:36:20,177] chirp.chirp_common - DEBUG: Parsed version 'daily-20190925' to (20190925,) -[2020-12-20 21:36:20,177] chirp.chirp_common - ERROR: Failed to parse my version '0.3.0dev': invalid literal for int() with base 10: '0dev' -[2020-12-20 21:36:20,177] chirp.chirp_common - WARNING: Image is from version daily-20190925 but we are 0.3.0dev -[2020-12-20 21:36:20,195] chirp.drivers.baofeng_common - DEBUG: Setting squelch = 3 -[2020-12-20 21:36:20,195] chirp.drivers.baofeng_common - DEBUG: Setting save = 1:3 -[2020-12-20 21:36:20,195] chirp.drivers.baofeng_common - DEBUG: Setting vox = Off -[2020-12-20 21:36:20,195] chirp.drivers.baofeng_common - DEBUG: Setting abr = 5 -[2020-12-20 21:36:20,195] chirp.drivers.baofeng_common - DEBUG: Setting tdr = False -[2020-12-20 21:36:20,195] chirp.drivers.baofeng_common - DEBUG: Setting beep = True -[2020-12-20 21:36:20,195] chirp.drivers.baofeng_common - DEBUG: Setting timeout = 60 sec -[2020-12-20 21:36:20,195] chirp.drivers.baofeng_common - DEBUG: Setting voice = English -[2020-12-20 21:36:20,195] chirp.drivers.baofeng_common - DEBUG: Setting dtmfst = DT+ANI -[2020-12-20 21:36:20,196] chirp.drivers.baofeng_common - DEBUG: Setting screv = TO -[2020-12-20 21:36:20,196] chirp.drivers.baofeng_common - DEBUG: Setting pttid = Off -[2020-12-20 21:36:20,196] chirp.drivers.baofeng_common - DEBUG: Setting pttlt = 5 -[2020-12-20 21:36:20,196] chirp.drivers.baofeng_common - DEBUG: Setting mdfa = Frequency -[2020-12-20 21:36:20,196] chirp.drivers.baofeng_common - DEBUG: Setting mdfb = Frequency -[2020-12-20 21:36:20,196] chirp.drivers.baofeng_common - DEBUG: Setting autolk = False -[2020-12-20 21:36:20,196] chirp.drivers.baofeng_common - DEBUG: Setting wtled = Purple -[2020-12-20 21:36:20,196] chirp.drivers.baofeng_common - DEBUG: Setting rxled = Blue -[2020-12-20 21:36:20,196] chirp.drivers.baofeng_common - DEBUG: Setting txled = Orange -[2020-12-20 21:36:20,196] chirp.drivers.baofeng_common - DEBUG: Setting almod = Site -[2020-12-20 21:36:20,196] chirp.drivers.baofeng_common - DEBUG: Setting tdrab = Off -[2020-12-20 21:36:20,196] chirp.drivers.baofeng_common - DEBUG: Setting ste = True -[2020-12-20 21:36:20,197] chirp.drivers.baofeng_common - DEBUG: Setting rpste = 5 -[2020-12-20 21:36:20,197] chirp.drivers.baofeng_common - DEBUG: Setting rptrl = Off -[2020-12-20 21:36:20,197] chirp.drivers.baofeng_common - DEBUG: Setting ponmsg = Message -[2020-12-20 21:36:20,197] chirp.drivers.baofeng_common - DEBUG: Setting roger = False -[2020-12-20 21:36:20,197] chirp.drivers.baofeng_common - DEBUG: Setting reset = True -[2020-12-20 21:36:20,197] chirp.drivers.baofeng_common - DEBUG: Setting menu = True -[2020-12-20 21:36:20,197] chirp.drivers.baofeng_common - DEBUG: Setting fmradio = True -[2020-12-20 21:36:20,197] chirp.drivers.baofeng_common - DEBUG: Setting alarm = True -[2020-12-20 21:36:20,197] chirp.drivers.baofeng_common - DEBUG: Setting line1 = WELCOME -[2020-12-20 21:36:20,197] chirp.drivers.baofeng_common - DEBUG: Setting line2 = -[2020-12-20 21:36:20,197] chirp.drivers.baofeng_common - DEBUG: Setting lower = 136 -[2020-12-20 21:36:20,198] chirp.drivers.baofeng_common - DEBUG: Setting upper = 174 -[2020-12-20 21:36:20,198] chirp.drivers.baofeng_common - DEBUG: Setting lower = 400 -[2020-12-20 21:36:20,198] chirp.drivers.baofeng_common - DEBUG: Setting upper = 520 -[2020-12-20 21:36:20,198] chirp.drivers.baofeng_common - DEBUG: Setting displayab = A -[2020-12-20 21:36:20,198] chirp.drivers.baofeng_common - DEBUG: Setting workmode = Frequency -[2020-12-20 21:36:20,198] chirp.drivers.baofeng_common - DEBUG: Setting keylock = False -[2020-12-20 21:36:20,198] chirp.drivers.baofeng_common - DEBUG: Setting mrcha = 17 -[2020-12-20 21:36:20,198] chirp.drivers.baofeng_common - DEBUG: Setting mrchb = 5 -[2020-12-20 21:36:20,198] chirp.drivers.baofeng_common - DEBUG: Using apply callback -[2020-12-20 21:36:20,198] chirp.drivers.baofeng_common - DEBUG: Using apply callback -[2020-12-20 21:36:20,198] chirp.drivers.baofeng_common - DEBUG: Setting sftd = Off -[2020-12-20 21:36:20,199] chirp.drivers.baofeng_common - DEBUG: Setting sftd = Off -[2020-12-20 21:36:20,199] chirp.drivers.baofeng_common - DEBUG: Using apply callback -[2020-12-20 21:36:20,199] chirp.drivers.baofeng_common - DEBUG: Using apply callback -[2020-12-20 21:36:20,199] chirp.drivers.baofeng_common - DEBUG: Setting txpower3 = High -[2020-12-20 21:36:20,199] chirp.drivers.baofeng_common - DEBUG: Setting txpower3 = High -[2020-12-20 21:36:20,199] chirp.drivers.baofeng_common - DEBUG: Setting widenarr = Wide -[2020-12-20 21:36:20,199] chirp.drivers.baofeng_common - ERROR: Unexpected error during download -Traceback (most recent call last): - File "/home/mpoletiek/devspace/py3-CHIRP/chirp/drivers/baofeng_common.py", line 320, in sync_in - data = _download(self) - File "/home/mpoletiek/devspace/py3-CHIRP/chirp/drivers/baofeng_common.py", line 179, in _download - ident = _ident_radio(radio) - File "/home/mpoletiek/devspace/py3-CHIRP/chirp/drivers/baofeng_common.py", line 165, in _ident_radio - data = _do_ident(radio, magic) - File "/home/mpoletiek/devspace/py3-CHIRP/chirp/drivers/baofeng_common.py", line 123, in _do_ident - _clean_buffer(radio) - File "/home/mpoletiek/devspace/py3-CHIRP/chirp/drivers/baofeng_common.py", line 34, in _clean_buffer - junk = radio.pipe.read(256) - File "/home/mpoletiek/devspace/py3-CHIRP/tests/run_tests.py", line 946, in read - raise Exception("Foo") -Exception: Foo -[2020-12-20 21:36:20,199] chirp.drivers.baofeng_common - DEBUG: Setting widenarr = Wide -[2020-12-20 21:36:20,199] chirp.drivers.baofeng_common - DEBUG: Setting scode = 1 -[2020-12-20 21:36:20,199] chirp.drivers.baofeng_common - DEBUG: Setting scode = 1 -[2020-12-20 21:36:20,199] chirp.drivers.baofeng_common - DEBUG: Setting step = 25.0 -[2020-12-20 21:36:20,199] chirp.drivers.baofeng_common - DEBUG: Setting step = 25.0 -[2020-12-20 21:36:20,200] chirp.drivers.baofeng_common - DEBUG: Setting fm_presets = 650 -[2020-12-20 21:36:20,200] chirp.drivers.baofeng_common - DEBUG: Using apply callback -[2020-12-20 21:36:20,200] chirp.drivers.baofeng_common - DEBUG: Using apply callback -[2020-12-20 21:36:20,200] chirp.drivers.baofeng_common - DEBUG: Using apply callback -[2020-12-20 21:36:20,200] chirp.drivers.baofeng_common - DEBUG: Using apply callback -[2020-12-20 21:36:20,200] chirp.drivers.baofeng_common - DEBUG: Using apply callback -[2020-12-20 21:36:20,200] chirp.drivers.baofeng_common - DEBUG: Using apply callback -[2020-12-20 21:36:20,200] chirp.drivers.baofeng_common - DEBUG: Using apply callback -[2020-12-20 21:36:20,200] chirp.drivers.baofeng_common - DEBUG: Using apply callback -[2020-12-20 21:36:20,200] chirp.drivers.baofeng_common - DEBUG: Using apply callback -[2020-12-20 21:36:20,200] chirp.drivers.baofeng_common - DEBUG: Using apply callback -[2020-12-20 21:36:20,201] chirp.drivers.baofeng_common - DEBUG: Using apply callback -[2020-12-20 21:36:20,201] chirp.drivers.baofeng_common - DEBUG: Using apply callback -[2020-12-20 21:36:20,201] chirp.drivers.baofeng_common - DEBUG: Using apply callback -[2020-12-20 21:36:20,201] chirp.drivers.baofeng_common - DEBUG: Using apply callback -[2020-12-20 21:36:20,201] chirp.drivers.baofeng_common - DEBUG: Using apply callback -[2020-12-20 21:36:20,201] chirp.drivers.baofeng_common - DEBUG: Setting dtmfon = 80 ms -[2020-12-20 21:36:20,201] chirp.drivers.baofeng_common - DEBUG: Setting dtmfoff = 80 ms -[2020-12-20 21:36:20,201] chirp.drivers.baofeng_common - DEBUG: Using apply callback -[2020-12-20 21:36:20,201] chirp.drivers.baofeng_common - DEBUG: Setting aniid = EOT -[2020-12-20 21:36:20,201] chirp.drivers.baofeng_common - DEBUG: Setting sql1 = 13 -[2020-12-20 21:36:20,201] chirp.drivers.baofeng_common - DEBUG: Setting sql2 = 14 -[2020-12-20 21:36:20,202] chirp.drivers.baofeng_common - DEBUG: Setting sql3 = 15 -[2020-12-20 21:36:20,202] chirp.drivers.baofeng_common - DEBUG: Setting sql4 = 16 -[2020-12-20 21:36:20,202] chirp.drivers.baofeng_common - DEBUG: Setting sql5 = 17 -[2020-12-20 21:36:20,202] chirp.drivers.baofeng_common - DEBUG: Setting sql6 = 18 -[2020-12-20 21:36:20,202] chirp.drivers.baofeng_common - DEBUG: Setting sql7 = 19 -[2020-12-20 21:36:20,202] chirp.drivers.baofeng_common - DEBUG: Setting sql8 = 20 -[2020-12-20 21:36:20,202] chirp.drivers.baofeng_common - DEBUG: Setting sql9 = 21 -[2020-12-20 21:36:20,202] chirp.drivers.baofeng_common - DEBUG: Setting sql1 = 12 -[2020-12-20 21:36:20,202] chirp.drivers.baofeng_common - DEBUG: Setting sql2 = 13 -[2020-12-20 21:36:20,202] chirp.drivers.baofeng_common - DEBUG: Setting sql3 = 14 -[2020-12-20 21:36:20,202] chirp.drivers.baofeng_common - DEBUG: Setting sql4 = 15 -[2020-12-20 21:36:20,202] chirp.drivers.baofeng_common - DEBUG: Setting sql5 = 16 -[2020-12-20 21:36:20,203] chirp.drivers.baofeng_common - DEBUG: Setting sql6 = 17 -[2020-12-20 21:36:20,203] chirp.drivers.baofeng_common - DEBUG: Setting sql7 = 18 -[2020-12-20 21:36:20,203] chirp.drivers.baofeng_common - DEBUG: Setting sql8 = 19 -[2020-12-20 21:36:20,203] chirp.drivers.baofeng_common - DEBUG: Setting sql9 = 20 -[2020-12-20 21:36:20,232] chirp.chirp_common - DEBUG: Loaded metadata: {'vendor': 'Baofeng', 'model': 'BF-A58S', 'chirp_version': 'daily-20190925', 'rclass': 'BFA58S', 'variant': ''} -[2020-12-20 21:36:20,232] chirp.chirp_common - DEBUG: Parsed version 'daily-20190925' to (20190925,) -[2020-12-20 21:36:20,232] chirp.chirp_common - ERROR: Failed to parse my version '0.3.0dev': invalid literal for int() with base 10: '0dev' -[2020-12-20 21:36:20,232] chirp.chirp_common - WARNING: Image is from version daily-20190925 but we are 0.3.0dev -[2020-12-20 21:36:20,258] chirp.drivers.baofeng_common - ERROR: Unexpected error during upload -Traceback (most recent call last): - File "/home/mpoletiek/devspace/py3-CHIRP/chirp/drivers/baofeng_common.py", line 336, in sync_out - _upload(self) - File "/home/mpoletiek/devspace/py3-CHIRP/chirp/drivers/baofeng_common.py", line 241, in _upload - _ident_radio(radio) - File "/home/mpoletiek/devspace/py3-CHIRP/chirp/drivers/baofeng_common.py", line 165, in _ident_radio - data = _do_ident(radio, magic) - File "/home/mpoletiek/devspace/py3-CHIRP/chirp/drivers/baofeng_common.py", line 123, in _do_ident - _clean_buffer(radio) - File "/home/mpoletiek/devspace/py3-CHIRP/chirp/drivers/baofeng_common.py", line 34, in _clean_buffer - junk = radio.pipe.read(256) - File "/home/mpoletiek/devspace/py3-CHIRP/tests/run_tests.py", line 946, in read - raise Exception("Foo") -Exception: Foo -[2020-12-20 21:36:20,314] chirp.drivers.baofeng_common - DEBUG: Got 256 bytes of junk before starting -[2020-12-20 21:36:20,368] chirp.drivers.baofeng_common - DEBUG: Got 256 bytes of junk before starting -[2020-12-20 21:36:20,368] chirp.drivers.baofeng_common - DEBUG: Got 255 bytes of junk before starting -[2020-12-20 21:36:20,423] chirp.drivers.baofeng_common - DEBUG: Got 255 bytes of junk before starting -[2020-12-20 21:36:21,211] chirp.drivers.yaesu_clone - DEBUG: Sending 0-10 -[2020-12-20 21:36:21,211] chirp.drivers.yaesu_clone - DEBUG: -[2020-12-20 21:36:21,261] chirp.drivers.yaesu_clone - DEBUG: Sending 0-10 -[2020-12-20 21:36:21,311] chirp.drivers.yaesu_clone - DEBUG: Sending 0-10 -[2020-12-20 21:36:21,312] chirp.drivers.yaesu_clone - DEBUG: 000: 00 00 00 00 00 00 00 00 ........ -008: 00 00 00 00 00 00 00 00 ........ - -[2020-12-20 21:36:21,327] chirp.drivers.vx8 - DEBUG: Enabling banks for VFO 0 -[2020-12-20 21:36:21,327] chirp.drivers.vx8 - DEBUG: Enabling banks for VFO 1 -[2020-12-20 21:36:21,328] chirp.drivers.vx8 - INFO: Disabling banks for VFO 0 -[2020-12-20 21:36:21,329] chirp.drivers.vx8 - INFO: Disabling banks for VFO 1 -[2020-12-20 21:36:21,330] chirp.drivers.vx8 - DEBUG: Enabling banks for VFO 0 -[2020-12-20 21:36:21,331] chirp.drivers.vx8 - DEBUG: Enabling banks for VFO 1 -[2020-12-20 21:36:21,332] chirp.drivers.vx8 - INFO: Disabling banks for VFO 0 -[2020-12-20 21:36:21,332] chirp.drivers.vx8 - INFO: Disabling banks for VFO 1 -[2020-12-20 21:36:21,365] chirp.drivers.yaesu_clone - DEBUG: Sending 0-10 -[2020-12-20 21:36:21,862] chirp.chirp_common - DEBUG: Image data has no metadata blob -[2020-12-20 21:36:21,870] chirp.directory - ERROR: Radio class CSVRadio failed during detection: 'str' object has no attribute 'decode' -[2020-12-20 21:36:21,870] chirp.directory - ERROR: Radio class CommanderCSVRadio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str -[2020-12-20 21:36:21,870] chirp.directory - ERROR: Radio class RTCSVRadio failed during detection: 'str' object has no attribute 'decode' -[2020-12-20 21:36:21,870] chirp.directory - ERROR: Radio class BaofengUVB5 failed during detection: startswith first arg must be bytes or a tuple of bytes, not str -[2020-12-20 21:36:21,870] chirp.directory - ERROR: Radio class RT1Radio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str -[2020-12-20 21:36:21,871] chirp.directory - ERROR: Radio class RT21Radio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str -[2020-12-20 21:36:21,871] chirp.directory - ERROR: Radio class KGUV8ERadio failed during detection: a bytes-like object is required, not 'str' -[2020-12-20 21:36:21,871] chirp.drivers.boblov_x3plus - DEBUG: Boblov_x3plus: match_model: size mismatch -[2020-12-20 21:36:21,871] chirp.drivers.boblov_x3plus - DEBUG: Boblov_x3plus: match_model: size mismatch -[2020-12-20 21:36:21,871] chirp.directory - ERROR: Radio class Th350Radio failed during detection: startswith first arg must be str or a tuple of str, not bytes -[2020-12-20 21:36:21,871] chirp.directory - ERROR: Radio class RT26Radio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str -[2020-12-20 21:36:21,871] chirp.directory - ERROR: Radio class AnyToneTERMN8RRadio failed during detection: a bytes-like object is required, not 'str' -[2020-12-20 21:36:21,871] chirp.directory - ERROR: Radio class AnyToneOBLTR8RRadio failed during detection: a bytes-like object is required, not 'str' -[2020-12-20 21:36:21,871] chirp.directory - ERROR: Radio class AnyTone5888UVRadio failed during detection: a bytes-like object is required, not 'str' -[2020-12-20 21:36:21,871] chirp.directory - ERROR: Radio class IntekHR2040Radio failed during detection: a bytes-like object is required, not 'str' -[2020-12-20 21:36:21,871] chirp.directory - ERROR: Radio class PolmarDB50MRadio failed during detection: a bytes-like object is required, not 'str' -[2020-12-20 21:36:21,871] chirp.directory - ERROR: Radio class PowerwerxDB750XRadio failed during detection: a bytes-like object is required, not 'str' -[2020-12-20 21:36:21,872] chirp.directory - ERROR: Radio class FTM350Radio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str -[2020-12-20 21:36:21,872] chirp.directory - ERROR: Radio class LeixenVV898Radio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str -[2020-12-20 21:36:21,872] chirp.directory - ERROR: Radio class JetstreamJT270MRadio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str -[2020-12-20 21:36:21,872] chirp.directory - ERROR: Radio class JetstreamJT270MHRadio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str -[2020-12-20 21:36:21,872] chirp.directory - ERROR: Radio class LeixenVV898SRadio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str -[2020-12-20 21:36:21,872] chirp.directory - ERROR: Radio class TK760_Radio failed during detection: can only concatenate str (not "int") to str -[2020-12-20 21:36:21,872] chirp.directory - ERROR: Radio class TK762_Radio failed during detection: can only concatenate str (not "int") to str -[2020-12-20 21:36:21,872] chirp.directory - ERROR: Radio class TK768_Radio failed during detection: can only concatenate str (not "int") to str -[2020-12-20 21:36:21,872] chirp.directory - ERROR: Radio class TK860_Radio failed during detection: can only concatenate str (not "int") to str -[2020-12-20 21:36:21,872] chirp.directory - ERROR: Radio class TK862_Radio failed during detection: can only concatenate str (not "int") to str -[2020-12-20 21:36:21,872] chirp.directory - ERROR: Radio class TK868_Radio failed during detection: can only concatenate str (not "int") to str -[2020-12-20 21:36:21,872] chirp.directory - ERROR: Radio class TYTTHUVF1Radio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str -[2020-12-20 21:36:21,872] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: -[2020-12-20 21:36:21,872] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 32 00 00 00 00 AH02.... - -[2020-12-20 21:36:21,872] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: -[2020-12-20 21:36:21,873] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 32 00 00 00 00 AH02.... - -[2020-12-20 21:36:21,873] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: -[2020-12-20 21:36:21,873] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 32 00 00 00 00 AH02.... - -[2020-12-20 21:36:21,873] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: -[2020-12-20 21:36:21,873] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 32 00 00 00 00 AH02.... - -[2020-12-20 21:36:21,873] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: -[2020-12-20 21:36:21,873] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 32 00 00 00 00 AH02.... - -[2020-12-20 21:36:21,873] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: -[2020-12-20 21:36:21,873] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 32 00 00 00 00 AH02.... - -[2020-12-20 21:36:21,873] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: -[2020-12-20 21:36:21,873] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 32 00 00 00 00 AH02.... - -[2020-12-20 21:36:21,873] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: -[2020-12-20 21:36:21,873] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 32 00 00 00 00 AH02.... - -[2020-12-20 21:36:21,873] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: -[2020-12-20 21:36:21,873] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 32 00 00 00 00 AH02.... - -[2020-12-20 21:36:21,873] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: -[2020-12-20 21:36:21,874] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 32 00 00 00 00 AH02.... - -[2020-12-20 21:36:21,874] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: -[2020-12-20 21:36:21,874] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 32 00 00 00 00 AH02.... - -[2020-12-20 21:36:21,874] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: -[2020-12-20 21:36:21,874] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 32 00 00 00 00 AH02.... - -[2020-12-20 21:36:21,874] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: -[2020-12-20 21:36:21,874] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 32 00 00 00 00 AH02.... - -[2020-12-20 21:36:21,874] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: -[2020-12-20 21:36:21,874] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 32 00 00 00 00 AH02.... - -[2020-12-20 21:36:21,874] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: -[2020-12-20 21:36:21,874] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 32 00 00 00 00 AH02.... - -[2020-12-20 21:36:21,874] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: -[2020-12-20 21:36:21,874] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 32 00 00 00 00 AH02.... - -[2020-12-20 21:36:21,874] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: -[2020-12-20 21:36:21,875] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 32 00 00 00 00 AH02.... - -[2020-12-20 21:36:21,875] chirp.drivers.fd268 - DEBUG: Unknowd Feidaxing radio, ID: -[2020-12-20 21:36:21,875] chirp.drivers.fd268 - DEBUG: 000: 41 48 30 32 00 00 00 00 AH02.... - -[2020-12-20 21:36:21,875] chirp.directory - ERROR: Radio class UV50X3 failed during detection: 'in ' requires string as left operand, not bytes -[2020-12-20 21:36:21,875] chirp.directory - ERROR: Radio class TYTUVF8DRadio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str -[2020-12-20 21:36:21,875] chirp.drivers.tk8102 - DEBUG: b'\xff\xff\xff\xff' -[2020-12-20 21:36:21,875] chirp.drivers.tk8102 - DEBUG: ÿÿÿÿ -[2020-12-20 21:36:21,875] chirp.drivers.tk8102 - DEBUG: b'\xff\xff\xff\xff' -[2020-12-20 21:36:21,875] chirp.drivers.tk8102 - DEBUG: ÿÿÿÿ -[2020-12-20 21:36:21,875] chirp.drivers.tk8102 - DEBUG: b'\xff\xff\xff\xff' -[2020-12-20 21:36:21,875] chirp.drivers.tk8102 - DEBUG: ÿÿÿÿ -[2020-12-20 21:36:21,875] chirp.drivers.tk8102 - DEBUG: b'\xff\xff\xff\xff' -[2020-12-20 21:36:21,875] chirp.drivers.tk8102 - DEBUG: ÿÿÿÿ -[2020-12-20 21:36:21,875] chirp.directory - WARNING: Radio driver VX8Radio needs py3 match_model conversion! -[2020-12-20 21:36:22,926] chirp.drivers.yaesu_clone - DEBUG: Sending 0-10 -[2020-12-20 21:36:22,926] chirp.drivers.yaesu_clone - DEBUG: -[2020-12-20 21:36:22,952] chirp.drivers.yaesu_clone - DEBUG: Sending 0-10 -[2020-12-20 21:36:22,977] chirp.drivers.yaesu_clone - DEBUG: Sending 0-10 -[2020-12-20 21:36:22,978] chirp.drivers.yaesu_clone - DEBUG: 000: 00 00 00 00 00 00 00 00 ........ -008: 00 00 00 00 00 00 00 00 ........ - -[2020-12-20 21:36:22,982] chirp.chirp_common - DEBUG: Image data has no metadata blob -[2020-12-20 21:36:22,986] chirp.directory - ERROR: Radio class CSVRadio failed during detection: 'str' object has no attribute 'decode' -[2020-12-20 21:36:22,987] chirp.directory - ERROR: Radio class CommanderCSVRadio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str -[2020-12-20 21:36:22,987] chirp.directory - ERROR: Radio class RTCSVRadio failed during detection: 'str' object has no attribute 'decode' -[2020-12-20 21:36:22,987] chirp.directory - ERROR: Radio class BaofengUVB5 failed during detection: startswith first arg must be bytes or a tuple of bytes, not str -[2020-12-20 21:36:22,987] chirp.directory - ERROR: Radio class RT1Radio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str -[2020-12-20 21:36:22,987] chirp.directory - ERROR: Radio class RT21Radio failed during detection: startswith first arg must be bytes or a tuple of bytes, not str -[2020-12-20 21:36:22,987] chirp.directory - ERROR: Radio class KGUV8ERadio failed during detection: a bytes-like object is required, not 'str' -[2020-12-20 21:36:22,987] chirp.directory - WARNING: Radio driver VX3Radio needs py3 match_model conversion! -[2020-12-20 21:36:23,004] chirp.drivers.yaesu_clone - DEBUG: Sending 0-10 -[2020-12-20 21:36:23,205] chirp.drivers.ft50 - DEBUG: @_decode_chars, type: -[2020-12-20 21:36:23,205] chirp.drivers.ft50 - DEBUG: [0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF] -[2020-12-20 21:36:23,205] chirp.drivers.ft50 - DEBUG: -[2020-12-20 21:36:23,206] chirp.drivers.ft50 - DEBUG: @_decode_chars, type: -[2020-12-20 21:36:23,206] chirp.drivers.ft50 - DEBUG: [0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF] -[2020-12-20 21:36:23,206] chirp.drivers.ft50 - DEBUG: -[2020-12-20 21:36:23,207] chirp.drivers.ft50 - DEBUG: @_decode_chars, type: -[2020-12-20 21:36:23,207] chirp.drivers.ft50 - DEBUG: [0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF] -[2020-12-20 21:36:23,207] chirp.drivers.ft50 - DEBUG: -[2020-12-20 21:36:23,240] chirp.drivers.boblov_x3plus - DEBUG: empty channel 2 -- cgit v1.2.3 From c94a87b7bff3abbdc4fb0fc12454979556352c76 Mon Sep 17 00:00:00 2001 From: Matthew Poletiek Date: Sun, 20 Dec 2020 22:24:01 -0600 Subject: Driver fix --- chirp/drivers/kguv8dplus.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chirp/drivers/kguv8dplus.py b/chirp/drivers/kguv8dplus.py index 64f09ae..185c452 100644 --- a/chirp/drivers/kguv8dplus.py +++ b/chirp/drivers/kguv8dplus.py @@ -666,9 +666,9 @@ class KGUV8DPlusRadio(chirp_common.CloneModeRadio, _nam = self._memobj.names[number] if mem.empty: - _mem.set_raw("\x00" * (_mem.size() / 8)) + _mem.set_raw("\x00" * int((_mem.size() / 8))) self._memobj.valid[number] = 0 - self._memobj.names[number].set_raw("\x00" * (_nam.size() / 8)) + self._memobj.names[number].set_raw("\x00" * int((_nam.size() / 8))) return _mem.rxfreq = int(mem.freq / 10) -- cgit v1.2.3