[chirp_devel] [PATCH] [FT2900] Allow support of modded variant of FT-2900. Fix #3387
# HG changeset patch # User Richard Cochran ag6qr@sonic.net # Date 1456623184 28800 # Sat Feb 27 17:33:04 2016 -0800 # Node ID 8392e269c64dcd2449486391fad9519e2cb63b13 # Parent 1fe0e6277668345d1098500dc60b825871abaa59 [FT2900] Allow support of modded variant of FT-2900. Fix #3387 This adds a new registered radio class with appropriate IDBLOCK to support a modified variant of FT-2900/FT-1900 for upload/download.
Bug #3387
diff -r 1fe0e6277668 -r 8392e269c64d chirp/drivers/ft2900.py --- a/chirp/drivers/ft2900.py Mon Feb 22 09:52:12 2016 -0800 +++ b/chirp/drivers/ft2900.py Sat Feb 27 17:33:04 2016 -0800 @@ -658,3 +658,16 @@ MODEL = "FT-2900E/1900E" VARIANT = "E" IDBLOCK = "\x56\x43\x32\x33\x00\x02\x41\x02\x01\x01" + + +# the FT2900Mod is a version of the radio that has been modified to +# allow transmit on a greater range of frequencies. It is almost +# identical to the standard version, except for the model number and +# ID Block. We create and register a class for it, with only the +# needed overrides +@directory.register +class FT2900ModRadio(FT2900Radio): + """Yaesu FT-2900Mod""" + MODEL = "FT-2900/1900 (Modded)" + VARIANT = "Opened Xmit" + IDBLOCK = "\x56\x43\x32\x33\x00\x02\xc7\x01\x01\x01"
participants (1)
-
Richard Cochran