From 3d08f0768b0e23bbbe4f3ceee2965ff8f4af1e12 Mon Sep 17 00:00:00 2001 From: Serge Vakulenko Date: Fri, 26 Oct 2018 20:12:05 -0700 Subject: [PATCH] Update README. --- README.md | 16 ++++++++++------ d868uv.c | 2 +- gd77.c | 1 + md380.c | 1 + 4 files changed, 13 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index dd551dd..a990fd0 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/d868uv.c b/d868uv.c index 8923cd3..a1a87a1 100644 --- a/d868uv.c +++ b/d868uv.c @@ -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, }; diff --git a/gd77.c b/gd77.c index 93b130b..5db2433 100644 --- a/gd77.c +++ b/gd77.c @@ -2334,4 +2334,5 @@ radio_device_t radio_gd77 = { gd77_parse_header, gd77_parse_row, gd77_update_timestamp, + //TODO: gd77_write_csv, }; diff --git a/md380.c b/md380.c index f6ae98d..010ae86 100644 --- a/md380.c +++ b/md380.c @@ -2249,6 +2249,7 @@ radio_device_t radio_md380 = { md380_parse_header, md380_parse_row, md380_update_timestamp, + //TODO: md380_write_csv, }; //