....
def get_features(self):
rf = super(VX2Radio, self).get_features()
rf.has_bank = False
rf.has_bank_names = False
rf.valid_modes = list(set(VX2_MODES))
rf.valid_tuning_steps = list(VX2_STEPS)
rf.memory_bounds = (1, 1000)
return rf
....
Note, the mutation of rf.memory_bounds does take effect, but it's as if the valid_tuning_steps list in the UI is the original one (wrong order) from VX2Radio, not the one I'm assigning from VX2_STEPS list.
Any ideas or pointers for a pynewb
-Jens