Project

General

Profile

Actions

Bug #10482

closed

KG-UV9D Mate channel state field interpretation

Added by Jonathan Johnson about 1 year ago. Updated about 1 year ago.

Status:
Closed
Priority:
Normal
Category:
-
Target version:
Start date:
03/27/2023
Due date:
% Done:

100%

Estimated time:
Chirp Version:
next
Model affected:
KG-UV9D Mate
Platform:
Linux
I read the instructions above:

Description

There are some valid channels in my radio that CHIRP doesn't see as valid after downloading the radio's memory to CHIRP.
There are also some empty (invalid) channels in my radio that CHIRP does see as valid and encounters errors trying to interpret the channel data because the channels are not really valid.

Version info

Testing/debug was based on git commit aad8664c7f296cc257e8adf6f3d105ec39f28e46 using the "KG-UV9D Plus" driver.

Valid channels that show as invalid in CHIRP

Example channels shown below that should be valid but aren't interpreted as valid by CHIRP: 1, 3, 4, 6
The "valid" or "state" information for each of those channels is found in the second to last column of the first, third, fourth, and sixth data rows below:

DEBUG: Config read (0xa00):
0x0a00: 00 dd d1 28 00 dc e6 c8 04 0b 04 0b 03 d0 01 00   ...(............
0x0a10: 02 a6 71 a4 02 ae 12 c4 03 e8 03 e8 03 d0 02 00   ..q.............
0x0a30: 02 a1 d4 00 02 a9 75 20 03 e8 03 e8 03 d0 01 00   ......u ........
0x0a60: 02 a1 63 b2 02 a9 04 d2 04 30 04 30 03 d0 80 00   ..c......0.0....

DEBUG: Config read (0xa40):
0x0a40: 02 a1 ac f0 02 a9 4e 10 06 56 06 56 e3 d0 fc ff   ......N..V.V....
0x0a50: 00 e0 26 d0 00 df 3c 70 03 e8 00 00 03 d0 80 00   ..&...<p........
0x0a70: 02 a6 67 e0 02 ae 09 00 03 e8 00 00 e3 d0 fc ff   ..g.............
0x0aa0: 00 e0 46 10 00 df 5b b0 04 0b 00 00 e3 d0 fc ff   ..F...[.........

In other words, this dump shows that "state" values of 0x01 and 0x80 can be considered valid.

In chirp/drivers/kguv9dplus.py I see the following related code starting at line 1429:

    if _valid not in VALID_MEM_VALUES:
        # In Issue #6995 we can find _valid values of 0 and 2 in the IMG
        # so these values should be treated like MEM_VALID.
        # state value of 0x40 found in deleted memory - still shows in CPS
        mem.empty = True
        return mem
    else:
        mem.empty = False

For context:

MEM_VALID = 0xfc
MEM_INVALID = 0xff
VALID_MEM_VALUES = [MEM_VALID, 0x00, 0x02, 0x40, 0x3D]

So it seems that CHIRP already has some exceptions to the idea that only a "state" value of 0xFC means a valid memory channel. Values 0, 2, and 0x40, and 0x3D were previously made exceptions and counted as valid memory channels. My memory dump shows that 0x1 and 0x80 should also be added to that list.

Invalid channels that CHIRP interprets as valid

I also encountered what is essentially the opposite problem. In my radio I don't have any valid channels after channel 314. However, CHIRP is interpreting the download from the radio as having channels 998 and 999 valid. This results in errors because the rest of the data for those channels is invalid. Channels 998 and 999 correspond to the second and third data rows of the below output (again, the "state" byte is the second to last column):

DEBUG: Config read (0x4840):
0x4840: ff ff ff ff ff ff ff ff ff ff ff ff ff fd ff ff   ................
0x4850: ff ff ff ff ff ff ff ff 00 00 00 00 0f 5d 00 00   .............]..
0x4870: ff ff ff ff ff ff ff ff 00 00 00 00 0f 5d 00 00   .............]..
0x48a0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff   ................

So now we have an example of "state" value of 0 being used for an invalid channel memory. This is in contradiction to the existing code shown above that makes "state" value of 0 be interpreted as a valid channel.

What I would propose here is that the use of VALID_MEM_VALUES be qualified with another indication of the channel being valid - such as receive frequency not being 0xFFFFFFFF and the channel memory name not being blank. If that is too aggressive (for example could we possibly have a valid channel with a blank name?) then maybe it could be qualified only by receive frequency not being 0xFFFFFFFF.

I might even go so far as to say we should consider using _valid != MEM_INVALID rather than a specific list of VALID_MEM_VALUES as long as we qualify with (_mem.rxfreq != 0xFFFFFFFF) though that is obviously a more aggressive change.


Files

verbose-log.txt (173 KB) verbose-log.txt python3 chirpwx.py -vvvvv 2>verbose-log.txt # (I don't know why the normal debug log doesn't contain the Config read data but this does) Jonathan Johnson, 03/27/2023 08:00 PM
Wouxun_KG-UV9D Plus_20230327-fail.img (32.2 KB) Wouxun_KG-UV9D Plus_20230327-fail.img memory image used in bug report Jonathan Johnson, 03/27/2023 08:02 PM
clipboard-202303290910-u21r9.png (13 KB) clipboard-202303290910-u21r9.png Mel Terechenok, 03/29/2023 06:10 AM
clipboard-202303290910-zkbbm.png (17.8 KB) clipboard-202303290910-zkbbm.png Mel Terechenok, 03/29/2023 06:10 AM
kguv9dplus.py (101 KB) kguv9dplus.py Updated driver to robustly handle more "valid" memory values Mel Terechenok, 03/29/2023 01:28 PM
debug.log (173 KB) debug.log download from radio Jonathan Johnson, 03/30/2023 06:20 PM
Actions #1

Updated by Mel Terechenok about 1 year ago

  • Assignee set to Mel Terechenok
  • Target version set to chirp-py3

I will take a look at your img file and see what can be done. I have been finding a few additional "exceptions" to the original rules for valid memory.
The 9 series seems to have many different values in play that have to be handled.

Actions #2

Updated by Jonathan Johnson about 1 year ago

Mel Terechenok wrote in #note-1:

I will take a look at your img file and see what can be done. I have been finding a few additional "exceptions" to the original rules for valid memory.
The 9 series seems to have many different values in play that have to be handled.

If you are at all interested in a pull request on Github, I have some working code here and would be happy to push a PR - but no worries if you want to come up with something on your own. Thanks for looking!

Actions #3

Updated by Mel Terechenok about 1 year ago

I don't suggest pushing a PR unless you have tested and ran all the required checks and processes for PR submission. Feel free to send me the changes or post the driver on this site and I will review it and test it. I have some ideas. Which are probably very similar to what you may have done. The key will be not breaking anything else for the host of other radios the 9D Plus driver supports.

Actions #4

Updated by Jonathan Johnson about 1 year ago

Mel Terechenok wrote in #note-3:

I don't suggest pushing a PR unless you have tested and ran all the required checks and processes for PR submission. Feel free to send me the changes or post the driver on this site and I will review it and test it. I have some ideas. Which are probably very similar to what you may have done. The key will be not breaking anything else for the host of other radios the 9D Plus driver supports.

Okay roger that, I’ll just leave you this for reference, works on my end:
https://github.com/thejonjohn/chirp/commit/e18fdce96afa09376a8a6bedbc700f684b990640

Actions #5

Updated by Mel Terechenok about 1 year ago

in your image... there is data for Memory 800 that appears invalid.


The Rx Freq does not make sense for this radio. Do you have any idea how this data got into the radio? were you using the browser feature or any other direct memory editor to modify memory?

Actions #6

Updated by Mel Terechenok about 1 year ago

Here is an updated driver that addresses all issue variants you have in your image as well as the quirks I have found in my testing. I think it covers all potential use cases but I only have a 9PX to test on. Please try this and let me know if it works for you.

How to load test driver

Actions #7

Updated by Jonathan Johnson about 1 year ago

Mel Terechenok wrote in #note-6:

Here is an updated driver that addresses all issue variants you have in your image as well as the quirks I have found in my testing. I think it covers all potential use cases but I only have a 9PX to test on. Please try this and let me know if it works for you.

How to load test driver

Hi Mel,

I don't know how the strange frequency value got into the channel 800 memory. Prior to attempting to use CHIRP I only programmed the radio via Wouxon's own software and manual programming via the radio's menus. I suspect the in-radio channel editing is what causes some of these strange cases but that's just a hunch. I don't remember whether I ever tried to use channel 800 for something and then later deleted it but it's possible.

I loaded your test module and all seems well. I uploaded the image to my radio and downloaded back from the radio with no issues for the radio or CHIRP interpreting the channels as expected. I'm attaching a log for the download so you can see your new log output. Thanks!

Jonathan

Actions #8

Updated by Mel Terechenok about 1 year ago

  • Status changed from New to Closed
  • % Done changed from 0 to 100
Actions

Also available in: Atom PDF