Bug #8683
closedSettings tab blank on Canadian model UV88
100%
Description
This issue seems to be a TYT UV-88 issue but its affecting CHIRP.
I've debugged a bit and my findings are below.
Attached is the .img file after doing a "Reset All"
The debug.log is from reading this configuration.
Thanks for supporting this radio.
What is the behavior you are seeing?
Settings tab is empty.What is the behavior you were expecting?
Settings populatedCan you reproduce the problem all the time?
YesWhat are the steps required to reproduce the problem?
Download from radio.
View the Settings tab - It is empty.Is this specific to a certain radio model (driver) or something that you can reproduce with another radio?
I'm sure it worked once before the radio was configured.
Factory fw version was UV88_Eng_BQ1_30_20200629.hex
All newer versions is showing this issue.
Debug log shows an exception. Upon further investigation I found the region is 0xFF and not handled by the region enumeration.
I worked around this by
options = ['Unlocked', 'Unknown 1', 'Unknown 2', 'EU', 'US']try:
rx = RadioSettingValueList(options, options[_settings2.region])
except Exception:LOG.debug("Region setting of %i is invalid. Assuming Unlocked" % _settings2.region)
rx = RadioSettingValueList(options, options[0])*
rx.set_mutable(False)
Files