Fork of dmrconfig
Go to file
Serge Vakulenko e09c4d3b6e Fix windows issues. 2018-09-18 04:59:46 -07:00
examples Update bay area configuration. 2018-09-12 23:27:16 -07:00
.gitignore Add stub for windows dfu version. 2018-09-06 12:10:01 -07:00
LICENSE Initial commit 2018-08-20 20:45:14 -07:00
Makefile Link libusb statically, to avoid dependency on libusb-1.0 for users. 2018-09-17 16:55:41 -07:00
Makefile-mingw Implement HID for Windows. 2018-09-17 21:46:11 -07:00
README.md Update readme. 2018-09-10 23:33:30 -07:00
dfu-libusb.c Read RD-5R image. 2018-09-15 16:43:55 -07:00
dfu-windows.c Fix windows issues. 2018-09-18 04:59:46 -07:00
hid-libusb.c Implement HID for Windows. 2018-09-17 21:46:11 -07:00
hid-macos.c Optimize HID code. 2018-09-17 20:04:17 -07:00
hid-windows.c Fix windows issues. 2018-09-18 04:59:46 -07:00
main.c Add support for MD-UV390 and MD-9600. 2018-09-10 18:50:55 -07:00
md380.c Use radio_tab[] for compatibility check. 2018-09-13 23:31:39 -07:00
radio.c Recognize old GD-77 images. 2018-09-17 17:28:21 -07:00
radio.h Recognize old GD-77 images. 2018-09-17 17:28:21 -07:00
rd5r.c Recognize old GD-77 images. 2018-09-17 17:28:21 -07:00
util.c Recognize old GD-77 images. 2018-09-17 17:28:21 -07:00
util.h Add HID routines for macos. 2018-09-17 14:20:02 -07:00
uv380.c Use radio_tab[] for compatibility check. 2018-09-13 23:31:39 -07:00

README.md

DMRconfig is a utility for programming digital radios via USB programming cable. Supported radios:

  • TYT MD-380, Retevis RT3, RT8
  • TYT MD-2017, Retevis RT82 (untested)
  • TYT MD-UV380
  • TYT MD-UV390, Retevis RT3S (untested)
  • TYT MD-9600 (untested)
  • Zastone D900 (untested)
  • Zastone DP880 (untested)
  • Radtel RT-27D (untested)

Usage

Read codeplug from the radio and save it to file 'device.img', and also save text configuration to 'device.conf':

dmrconfig -r [-t]

Write codeplug to the radio:

dmrconfig -w [-t] file.img

Configure the radio from text file. Previous codeplug is saved to 'backup.img':

dmrconfig -c [-t] file.conf

Show configuration from the codeplug file:

dmrconfig file.img

Apply configuration from text file to the codeplug file:

dmrconfig -c file.img file.conf

Update database of contacts from CSV file:

dmrconfig -u [-t] file.csv

Option -t enables tracing of USB protocol.

Sources

Sources are distributed freely under the terms of Apache 2.0 license. You can download sources via GIT:

git clone https://github.com/sergev/dmrconfig

To build on Linux or Mac OS X, run:

make
make install

Regards, Serge Vakulenko KK6ABQ