# HG changeset patch # User Bernhard Hailer ham73tux@gmail.com # Date 1580969883 28800 # Wed Feb 05 22:18:03 2020 -0800 # Node ID 28a0f90d2753ce206bc726bed471aade1709c28a # Parent 279f115be93e62202c1b224b9388fb1a1479a57d [ft4] Add Yaesu FT-4VR (and infrastructure for Yaesu FT-4VE). Fixes: #7387 This patch adds support for the Yaesu FT-4V to Chirp. The European version is commented out; we can activate as soon as we obtain an image (it can be downloaded using FT-25R as selected radio).
diff --git a/chirp/drivers/ft4.py b/chirp/drivers/ft4.py --- a/chirp/drivers/ft4.py +++ b/chirp/drivers/ft4.py @@ -1245,6 +1245,31 @@
@directory.register +class YaesuFT4VRRadio(YaesuFT4GenericRadio): + """ + FT-4V VHF, US version + """ + MODEL = "FT-4VR" + id_str = b'IFT-15R\x00\x00V100\x00\x00' + valid_bands = VALID_BANDS_VHF + legal_steps = US_LEGAL_STEPS + BAND_ASSIGNMENTS = BAND_ASSIGNMENTS_MONO_VHF + + +# No image available yet +# @directory.register +# class YaesuFT4VERadio(YaesuFT4GenericRadio): +# """ +# FT-4V VHF, EU version +# """ +# MODEL = "FT-4VE" +# id_str = b'IFT-15R\x00\x00V100\x00\x00' +# valid_bands = VALID_BANDS_VHF +# legal_steps = STEP_CODE +# BAND_ASSIGNMENTS = BAND_ASSIGNMENTS_MONO_VHF + + +@directory.register class YaesuFT65RRadio(YaesuFT65GenericRadio): """ FT-65 dual band, US version