k5prog - Quansheng UV-K5 EEPROM programmer v0.1
 
 
Go to file
sq5bpf b1c5ab4001 initial flash support 2023-06-16 14:56:14 +02:00
LICENSE Initial commit 2023-05-12 19:07:15 +02:00
Makefile initial commit 2023-05-12 19:08:41 +02:00
README add -B "brick my radio" option, make -W option more conservative 2023-05-25 22:08:32 +02:00
k5_flash.raw initial flash support 2023-06-16 14:56:14 +02:00
k5prog.c initial flash support 2023-06-16 14:55:26 +02:00
uvk5.h initial commit 2023-05-12 19:08:41 +02:00
uvk5_original_eeprom.raw initial commit 2023-05-12 19:08:41 +02:00

README

k5prog - Quansheng UV-K5 EEPROM programmer v0.1
(c) 2023 Jacek Lipkowski <sq5bpf@lipkowski.org>

This program can read and write the eeprom of Quansheng UV-K5.
It can read/write arbitrary data, and might be useful for making backups of
the configuration, mass programming of radios or reverse engineering of 
the radio configuration. Please note that it is probably possible to break 
your radio by writing a bad configuration to it, so please use at your own 
risk. 

Note that this program does not edit the contents of the eeprom. Use an
external hex editor.


The program is written to (hopefully) run on POSIX systems. Testing was done 
on GNU/Linux, but MacOS X and windows under cygwin should work too. 

For licensing see the file LICENSE.


---- Usage ----

For a basic usage use -r to read eeprom, -w to write eeprom. The -v option
gives more verbosity.

Read configuration:

sq5bpf@chronos:~/k5prog$ ./k5prog -r -v
Quansheng UV-K5 EEPROM programmer v0.2 (c) 2023 Jacek Lipkowski <sq5bpf@lipkowski.org>

k5_prepare: try 0
******  Connected to firmware version: [k5_2.01.23]
Sucessfuly read eeprom


The eeprom contents are written to the file k5_eeprom.raw, this can be
changed with the -f option.


Write configuration from file k5_eeprom.raw:

sq5bpf@chronos:~/chirp/k5prog$ ./k5prog -w -v
Quansheng UV-K5 EEPROM programmer v0.2 (c) 2023 Jacek Lipkowski <sq5bpf@lipkowski.org>

k5_prepare: try 0
******  Connected to firmware version: [k5_2.01.23]
Read file k5_eeprom.raw success
Sucessfuly wrote eeprom



The -w option writes only the memory blocks which are written by the original
radio software, in the same order. 

The -W option is a bit more brave, it writes all memory upto 0x1d00. I _think_
that the radio has calibration data above this address, but of course this is
not certain, because this knowledge is a result of reverse engineering, and not
information from the manufacturer.


The -B option is the "brick my radio" mode. It writes all memory, possibly 
allowing overwriting of calibration data (if there is any) or other data which
may be critical to the proper functioning of your radio. I have used this on
my radio, and it still works but please be extra-careful.



Other configuration options are:

Quansheng UV-K5 EEPROM programmer v0.2 (c) 2023 Jacek Lipkowski <sq5bpf@lipkowski.org>

cmdline opts:
-f <file>       filename that contains the eeprom dump (default: k5_eeprom.raw)
-r      read eeprom
-w      write eeprom like the original software does
-W      write most of the eeprom (but without what i think is calibration data)
-B      write ALL of the eeprom (the "brick my radio" mode)
-p <port>       device name (default: /dev/ttyUSB0)
-s <speed>      serial speed (default: 38400, the UV-K5 doesn't accept any other speed)
-h      print this help
-v      be verbose, use multiple times for more verbosity



---- Compiling ----

This software was tested to compile using gcc on GNU/Linux systems, using a
simple makefile:

sq5bpf@dellix:~/k5prog-0.1$ make
gcc -O2 k5prog.c -o k5prog

Other POSIX platforms should work also, including MacOS X. 

The software compiles under Cygwin/Microsoft Windows, but has not been tested.
According to the cygwin documentation you should use /dev/comX to use port comX
(for example using com6: k5prog.exe -v -r -p /dev/com6)


If port this to another platform, or do anything interesting with this
software, tell me about it.

---- Other uses ----

The file uvk5_original_eeprom.raw contains an eeprom downloaded from a UV-K5
radio.  Maybe it can be used to resurrect another radio of the same type 
if it was broken (perhaps by the use of this software :).




---- Protocol ----

The programming protocol used by this software has been reverse engineered
by observing communications between the radio and the original programming
software. It is not a variation of the typical Baofeng-like protocol.


The format of the datagram sent to the radio is:

0xAB 0xCD len 0x00 <data bytes> <2 bytes CRC> 0xDC 0xBA

The length is the length od the data bytes.

The data is protected by a typical CRC-16 xmodem algorithm.
The data bytes and the CRC are obfuscated by xor-in it with an 8-byte 
sequence.

Fortunately the eeprom data contains a lot of 0xFF and 0x00 bytes, so the XOR
sequence is easy to find by observing the traffic.


The datagram sent from the radio is the same, but the CRC field is set to
0xFFFF. This shows that the CRC is not for data integrity, but for further
obfuscation (same as the XOR).


I intend to publish a further description of the protocol, and the eeprom
contents, meanwhile the sources can be used as documentation.


VY 73

Jacek / SQ5BPF