[chirp_devel] [PATCH] [AT-778UV] Fix Mode:02 VHF Band Limit
Jim Unroe
Mon Nov 2 15:33:14 PST 2020
# HG changeset patch
# User Jim Unroe <rock.unroe at gmail.com>
# Date 1604359925 18000
# Mon Nov 02 18:32:05 2020 -0500
# Node ID 054f05826531faa75d30ceed613b118b61691b54
# Parent 98b8a850b0f136c77fe09a4922c32a2a28f708be
[AT-778UV] Fix Mode:02 VHF Band Limit
This patch corrects a typo that affects the Mode:02 VHF lower band limit.
Related to issue #8391
diff -r 98b8a850b0f1 -r 054f05826531 chirp/drivers/anytone778uv.py
--- a/chirp/drivers/anytone778uv.py Sun Oct 11 15:39:26 2020 -0400
+++ b/chirp/drivers/anytone778uv.py Mon Nov 02 18:32:05 2020 -0500
@@ -203,7 +203,7 @@
# Band limits as defined by the band byte in ver_response, defined in Hz, for
# VHF and UHF, used for RX and TX.
BAND_LIMITS = {0x00: [(144000000, 148000000), (430000000, 440000000)],
- 0x01: [(134000000, 174000000), (400000000, 490000000)],
+ 0x01: [(136000000, 174000000), (400000000, 490000000)],
0x02: [(144000000, 146000000), (430000000, 440000000)]}
More information about the chirp_devel
mailing list