On Sun, Nov 10, 2013 at 8:08 PM, Jens J. <kd4tjx@yahoo.com> wrote:

Also, I'm trying to understand what to modify so that when opening a radio image file, it will recognize this image as being BJ-UV55.

#def _firmware_version_from_data(data, version_start = 0x1838, version_stop = 0x1848):
def _firmware_version_from_data(data, version_start = 0x1938, version_stop = 0x193E):
    version_tag = data[version_start:version_stop]
    return version_tag

You will have to set it up so that is uses "version_start = 0x1938, version_stop = 0x193E" for the BJ55 and "version_start = 0x1838, version_stop = 0x1848" for everything else. I just made a quick substitution as above to check it out and it worked for me.

Jim KC9HI