Project

General

Profile

Feature #9013 ยป ft1900txmod.patch

Anthony Naia, 04/26/2021 12:44 PM

View differences:

chirp/drivers/ft2900.py
1246 1246
# the FT2900E is the European version of the radio, almost identical
1247 1247
# to the R (USA) version, except for the model number and ID Block.  We
1248 1248
# create and register a class for it, with only the needed overrides
1249
# NOTE: Disabled until detection is fixed
1250
# @directory.register
1249
#Currently disabled - Unable to test
1250
#@directory.register
1251 1251
class FT2900ERadio(FT2900Radio):
1252 1252

  
1253 1253
    """Yaesu FT-2900E"""
1254 1254
    MODEL = "FT-2900E/1900E"
1255 1255
    VARIANT = "E"
1256 1256
    IDBLOCK = "\x56\x43\x32\x33\x00\x02\x41\x02\x01\x01"
1257

  
1258
# This class is for the TX Modified FT-1900/FT-2900 (MARS/CAP Mod).
1259
# Enabling out of band TX changes the header received by CHIRP
1260
@directory.register
1261
class FT2900ModRadio(FT2900Radio):
1262

  
1263
    """Yaesu FT-2900Mod"""
1264
    MODEL = "FT-2900R/1900R(TXMod)"
1265
    VARIANT = "Opened Xmit"
1266
    IDBLOCK = "\x56\x43\x32\x33\x00\x02\xc7\x01\x01\x01"
    (1-1/1)