# HG changeset patch # User Chris Fosnight chris.fosnight@gmail.com # Date 1426367812 25200 # Node ID 750a952c9dc3dc59a2c90ba164cca3392143ff37 # Parent c9c9128ca29ea21f54249788a9c0e47c9d5fbdc4 [ft2900] Adds support for FT-1900R. Fixes #1107
The driver works as is for Yaesu FT-1900R radios. The only difference in models seems to be appearance and power output (power settings are the same).
ID strings are identical.
#1107
diff -r c9c9128ca29e -r 750a952c9dc3 chirp/drivers/ft2900.py --- a/chirp/drivers/ft2900.py Thu Mar 12 09:49:32 2015 +0100 +++ b/chirp/drivers/ft2900.py Sat Mar 14 14:16:52 2015 -0700 @@ -264,7 +264,7 @@ class FT2900Radio(YaesuCloneModeRadio): """Yaesu FT-2900""" VENDOR = "Yaesu"
- MODEL = "FT-2900R"
- MODEL = "FT-2900R/1900R"
This breaks tests because it doesn't rename the image in tests/images to match this driver name. Can you rename the 2900 image to match? (use an _ in place of the slash).
Otherwise looks good.
Thanks!
--Dan