Update README.

This commit is contained in:
Serge Vakulenko 2018-10-26 20:12:05 -07:00
parent 5f55873369
commit 3d08f0768b
4 changed files with 13 additions and 7 deletions

View File

@ -3,15 +3,16 @@ 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-2017, Retevis RT82
* TYT MD-UV380
* TYT MD-UV390, Retevis RT3S (untested)
* TYT MD-9600 (untested)
* TYT MD-UV390, Retevis RT3S
* TYT MD-9600
* Baofeng RD-5R
* Radioddity GD-77
* Zastone D900 (untested)
* Zastone DP880 (untested)
* Radtel RT-27D (untested)
* Anytone AT-D868UV (in development)
* Zastone D900
* Zastone DP880
* Radtel RT-27D
## Usage
@ -56,6 +57,9 @@ Create a file /etc/udev/rules.d/99-dmr.rules with the following contents:
# Baofeng RD-5R
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

View File

@ -1275,5 +1275,5 @@ radio_device_t radio_d868uv = {
d868uv_parse_header,
d868uv_parse_row,
d868uv_update_timestamp,
//d868uv_write_csv,
//TODO: d868uv_write_csv,
};

1
gd77.c
View File

@ -2334,4 +2334,5 @@ radio_device_t radio_gd77 = {
gd77_parse_header,
gd77_parse_row,
gd77_update_timestamp,
//TODO: gd77_write_csv,
};

View File

@ -2249,6 +2249,7 @@ radio_device_t radio_md380 = {
md380_parse_header,
md380_parse_row,
md380_update_timestamp,
//TODO: md380_write_csv,
};
//