Fork of dmrconfig
Go to file
Serge Vakulenko f08dd83297 Make DM-1801 images compatible with native CPS. 2019-08-12 00:14:56 -07:00
examples Update sizes for DM-1801: 15 zones, 32 channels per zone; 40 group lists. 2019-07-30 15:06:09 -07:00
.gitignore Add stub for windows dfu version. 2018-09-06 12:10:01 -07:00
99-dmr.rules Add TD-5R to the list of supported radios. 2018-10-29 11:59:28 -07:00
LICENSE Replace the LICENSE file with the BSD-3-clause license. 2019-08-11 17:50:34 -07:00
Makefile Creata a separate source file for DM-1801. 2019-07-30 11:25:58 -07:00
Makefile-mingw Creata a separate source file for DM-1801. 2019-07-30 11:25:58 -07:00
README.md Add downloading and uploading of DM-1801 codeplug. 2019-07-29 22:26:13 -07:00
d868uv-map.h Build id-to-contact map for d868uv. 2018-11-05 19:05:14 -08:00
d868uv.c Improved support for Anytone AT-D878UV 2018-12-10 12:59:34 -05:00
dfu-libusb.c Use pkg-config to configure libusb dependency. 2019-06-25 21:15:44 -07:00
dfu-windows.c Fix windows issues. 2018-09-18 04:59:46 -07:00
dm1801.c Make DM-1801 images compatible with native CPS. 2019-08-12 00:14:56 -07:00
gd77.c Creata a separate source file for DM-1801. 2019-07-30 11:25:58 -07:00
hid-libusb.c Use pkg-config to configure libusb dependency. 2019-06-25 21:15:44 -07:00
hid-macos.c Move OS independent HID routines to a separate file. 2018-09-17 23:07:42 -07:00
hid-windows.c Process DM-1801 images. 2019-07-26 19:45:29 -07:00
hid.c Move OS independent HID routines to a separate file. 2018-09-17 23:07:42 -07:00
main.c Detect d868uv on Mac. 2018-10-26 00:29:03 -07:00
md380.c Detect MD-390 properly. 2018-11-27 19:11:57 -08:00
radio.c Make DM-1801 images compatible with native CPS. 2019-08-12 00:14:56 -07:00
radio.h Process DM-1801 images. 2019-07-26 19:45:29 -07:00
rd5r.c Fix squelch values for GD-77 and RD-5R. 2018-11-21 00:07:47 -08:00
serial.c Fix -u option for d868uv. 2018-11-23 18:42:50 -08:00
util.c Support CSV format from https://www.radioid.net/static/user.csv 2019-08-03 21:52:13 -07:00
util.h D868UV: parse CSV files downloaded from amateurradio.digital. 2018-11-23 20:29:02 -08:00
uv380.c UV380: use the same CSV parsing routines as D868UV. 2018-11-23 21:03:22 -08: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-390
  • TYT MD-2017, Retevis RT82
  • TYT MD-UV380
  • TYT MD-UV390, Retevis RT3S
  • TYT MD-9600
  • Baofeng DM-1701, Retevis RT84
  • Baofeng RD-5R, TD-5R
  • Baofeng DM-1801
  • Radioddity GD-77
  • Anytone AT-D868UV
  • Anytone AT-D878UV
  • BTECH DMR-6x2
  • Zastone D900
  • Zastone DP880
  • Radtel RT-27D

Packaging status

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.

Permissions

On Linux, a permission to access USB device is required. It's possible to run dmrconfig as root, like "sudo dmrconfig", but it's safer to enable access for users. Create a file /etc/udev/rules.d/99-dmr.rules with the following contents:

# TYT MD-UV380
SUBSYSTEM=="usb", ATTRS{idVendor}=="0483", ATTRS{idProduct}=="df11", MODE="666"

# Baofeng RD-5R, TD-5R, DM-1801
SUBSYSTEM=="usb", ATTRS{idVendor}=="15a2", ATTRS{idProduct}=="0073", MODE="666"

# Anytone AT-D868UV: ignore this device in Modem Manager
ATTRS{idVendor}=="28e9" ATTRS{idProduct}=="018a", ENV{ID_MM_DEVICE_IGNORE}="1"

To activate it, run:

sudo udevadm control --reload-rules

Then re-attach the USB cable to the radio.

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