{"id":13438624,"url":"https://github.com/OpenRTX/dmrconfig","last_synced_at":"2025-03-20T06:30:59.583Z","repository":{"id":43181028,"uuid":"145503037","full_name":"OpenRTX/dmrconfig","owner":"OpenRTX","description":"Configuration utility for DMR radios","archived":false,"fork":false,"pushed_at":"2024-07-27T09:11:30.000Z","size":868,"stargazers_count":237,"open_issues_count":40,"forks_count":55,"subscribers_count":30,"default_branch":"master","last_synced_at":"2024-10-28T00:23:21.154Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/OpenRTX.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-08-21T03:45:14.000Z","updated_at":"2024-10-14T20:21:30.000Z","dependencies_parsed_at":"2023-11-10T19:24:31.224Z","dependency_job_id":"ef5020f7-0265-4143-8eed-7c0e27edc3fa","html_url":"https://github.com/OpenRTX/dmrconfig","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenRTX%2Fdmrconfig","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenRTX%2Fdmrconfig/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenRTX%2Fdmrconfig/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenRTX%2Fdmrconfig/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/OpenRTX","download_url":"https://codeload.github.com/OpenRTX/dmrconfig/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244565113,"owners_count":20473210,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-07-31T03:01:06.941Z","updated_at":"2025-03-20T06:30:54.574Z","avatar_url":"https://github.com/OpenRTX.png","language":"C","funding_links":[],"categories":["C"],"sub_categories":[],"readme":"# DMRconfig\n\nDMRconfig is a utility for programming digital radios via USB programming cable.\n\n## Supported radios:\n\n * TYT MD-380, Retevis RT3, RT8\n * TYT MD-390\n * TYT MD-2017, Retevis RT82\n * TYT MD-UV380\n * TYT MD-UV390, Retevis RT3S\n * TYT MD-9600\n * Baofeng DM-1701, Retevis RT84\n * Baofeng RD-5R, TD-5R\n * Baofeng DM-1801\n * Radioddity GD-77\n * Anytone AT-D868UV\n * Anytone AT-D878UV\n * Anytone AT-D878UVII\n * BTECH DMR-6x2\n * Zastone D900\n * Zastone DP880\n * Radtel RT-27D\n\n[![Packaging status](https://repology.org/badge/vertical-allrepos/dmrconfig.svg)](https://repology.org/metapackage/dmrconfig/versions)\n\n## Usage\n\nRead codeplug from the radio and save it to file 'device.img',\nand also save text configuration to 'device.conf':\n\n    dmrconfig -r [-t]\n\nWrite codeplug to the radio:\n\n    dmrconfig -w [-t] file.img\n\nConfigure the radio from text file.\nPrevious codeplug is saved to 'backup.img':\n\n    dmrconfig -c [-t] file.conf\n\nShow configuration from the codeplug file:\n\n    dmrconfig file.img\n\nApply configuration from text file to the codeplug file:\n\n    dmrconfig -c file.img file.conf\n\nUpdate database of contacts from CSV file:\n\n    dmrconfig -u [-t] file.csv\n\nOption -t enables tracing of USB protocol.\n\n## Compilation\nWhenever possible use the `dmrconfig` package provided from by Linux distribution\n\nIf you want to compile `dmrconfig`, follow these instructions:\n* Install dependencies\n    * On Ubuntu `sudo apt install git build-essential pkg-config libusb-1.0-0-dev libudev-dev`\n    * On Arch Linux `sudo pacman -S git base-devel libusb`\n    * On Mac OS `brew install pkg-config libusb`\n* Clone this repository\n``` \ngit clone https://github.com/sergev/dmrconfig\n```\n* Compile and install\n```\nmake\nsudo make install\n```\n\n## Permissions\n\nOn Linux, a permission to access USB device is required.\nIt's possible to run dmrconfig as root, like \"sudo dmrconfig\",\nbut it's safer to enable access for users.\nCreate a file /etc/udev/rules.d/99-dmr.rules with the following contents:\n\n    # TYT MD-UV380\n    SUBSYSTEM==\"usb\", ATTRS{idVendor}==\"0483\", ATTRS{idProduct}==\"df11\", MODE=\"666\"\n\n    # Baofeng RD-5R, TD-5R, DM-1801\n    SUBSYSTEM==\"usb\", ATTRS{idVendor}==\"15a2\", ATTRS{idProduct}==\"0073\", MODE=\"666\"\n\n    # Anytone D868UV/D878UV/D878UV2: ignore this device in Modem Manager\n    ATTRS{idVendor}==\"28e9\" ATTRS{idProduct}==\"018a\", ENV{ID_MM_DEVICE_IGNORE}=\"1\"\n\nTo activate it, run:\n\n    sudo udevadm control --reload-rules\n\nThen re-attach the USB cable to the radio.\n\n## License\n\nSources are distributed freely under the terms of BSD 3 license. \\\nFor more information see the [LICENSE file](https://github.com/OpenRTX/dmrconfig/blob/master/LICENSE)\n\n## Credits\nDMRconfig was created by Serge Vakulenko KK6ABQ.\n\nIt is currently maintained by the OpenRTX developers.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FOpenRTX%2Fdmrconfig","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FOpenRTX%2Fdmrconfig","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FOpenRTX%2Fdmrconfig/lists"}