# HG changeset patch # User Tom Hayward tom@tomh.us # Date 1360121728 28800 # Node ID e7598732815346e5b2fb7ba14db08c69aa81e989 # Parent e30cb8fd7d1c6700b5044da64baf94326262641e Add rf.can_odd_split to models that support 'split' duplex. #505
diff -r e30cb8fd7d1c -r e75987328153 chirp/ft1802.py --- a/chirp/ft1802.py Tue Feb 05 19:31:35 2013 -0800 +++ b/chirp/ft1802.py Tue Feb 05 19:35:28 2013 -0800 @@ -93,6 +93,7 @@
rf.memory_bounds = (0, 199)
+ rf.can_odd_split = True rf.has_ctone = False rf.has_tuning_step = True rf.has_dtcs_polarity = False # in radio settings, not per memory diff -r e30cb8fd7d1c -r e75987328153 chirp/ft60.py --- a/chirp/ft60.py Tue Feb 05 19:31:35 2013 -0800 +++ b/chirp/ft60.py Tue Feb 05 19:35:28 2013 -0800 @@ -178,6 +178,7 @@ rf.valid_name_length = 6 rf.valid_modes = ["FM", "NFM", "AM"] rf.valid_bands = [(108000000, 520000000), (700000000, 999990000)] + rf.can_odd_split = True rf.has_ctone = False rf.has_bank = False rf.has_dtcs_polarity = False diff -r e30cb8fd7d1c -r e75987328153 chirp/vx5.py --- a/chirp/vx5.py Tue Feb 05 19:31:35 2013 -0800 +++ b/chirp/vx5.py Tue Feb 05 19:35:28 2013 -0800 @@ -167,6 +167,7 @@
def get_features(self): rf = chirp_common.RadioFeatures() + rf.can_odd_split = True rf.has_bank = True rf.has_ctone = False rf.has_dtcs_polarity = False