{"id":17317194,"url":"https://github.com/df7cb/ic7610ftdi","last_synced_at":"2025-07-31T20:31:05.840Z","repository":{"id":190887727,"uuid":"683527927","full_name":"df7cb/ic7610ftdi","owner":"df7cb","description":"Getting I/Q SDR data from Icom IC-7610's USB 3 port using libftd3xx","archived":false,"fork":false,"pushed_at":"2023-08-27T20:07:30.000Z","size":1177,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-10-16T13:15:46.334Z","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/df7cb.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2023-08-26T21:22:10.000Z","updated_at":"2023-09-04T08:15:19.000Z","dependencies_parsed_at":"2023-08-26T23:02:48.696Z","dependency_job_id":null,"html_url":"https://github.com/df7cb/ic7610ftdi","commit_stats":null,"previous_names":["df7cb/ic7610ftdi"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/df7cb%2Fic7610ftdi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/df7cb%2Fic7610ftdi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/df7cb%2Fic7610ftdi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/df7cb%2Fic7610ftdi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/df7cb","download_url":"https://codeload.github.com/df7cb/ic7610ftdi/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":228292716,"owners_count":17897582,"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-10-15T13:15:49.514Z","updated_at":"2024-12-05T11:41:40.629Z","avatar_url":"https://github.com/df7cb.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Getting I/Q SDR data from Icom IC-7610's USB 3 port using libftd3xx\n\nI had been looking around for some time if someone had already managed to get\nI/Q data from Icom's IC-7610 HF transceiver without going through the\nbinary-only hdsdr driver provided by Icom, but couldn't find anything.\n\nFirst attempts at doing that on Debian Linux using libftdi1 didn't work, so I\nresorted to using the (again binary-only) libftd3xx driver from FT, and\nsucceeded after some tinkering around.\n\nThe program here writes raw I/Q data to a file in int16-int16 format.\n\n* Get libftd3xx from https://ftdichip.com/drivers/d3xx-drivers/\n* IC-7610 I/Q port reference: https://www.icomjapan.com/support/manual/1792/\n* The IC-7610 needs to be connected using a decent USB 3 cable, preferably without any hub in-between\n* If the SuperSpeed-FIFO Bridge disappears after some time, re-plug the cable or power-cycle the transceiver\n\n## Usage\n\n* Write to file: `./ic7610ftdi filename.cs16`\n* Send to TCP socket: `./ic7610ftdi host port`\n\n```\n$ lsusb | grep IC\nBus 002 Device 024: ID 0c26:0029 Prolific Technology Inc. IC-7610 SuperSpeed-FIFO Bridge\n\n$ make\ncc -Wall -g   -c -o ic7610ftdi.o ic7610ftdi.c\ncc   ic7610ftdi.o  -lftd3xx -o ic7610ftdi\n\n$ ./ic7610ftdi iq.cs16\nDevice[0]\n\tFlags: 0x4 [USB 3] | Type: 600 | ID: 0x0C260029\n\tSerialNumber=23001123\n\tDescription=IC-7610 SuperSpeed-FIFO Bridge\nfe fe 98 e0 1a 0b fd ff \nfe fe e0 98 1a 0b 00 fd IQ data output: 0\nfe fe 98 e0 1a 0b 01 fd \nfe fe e0 98 fb fd ff ff OK\nRX 42 MiB ^C\nfe fe 98 e0 1a 0b 00 fd \nfe fe e0 98 fb fd ff ff OK\n\n$ ls -l iq.cs16\n-rw-rw-r-- 1 myon myon 44040192 26. Aug 22:37 iq.cs16\n\n$ inspectrum -r 1920000 iq.cs16 \u0026\n```\n\n![inspectrum view of captured I/Q data](ic7610-20m.png)\n\n## GNU Radio Flowgraph\n\nThe [`ic7610iq.grc`](ic7610iq.grc) flowgraph can receive data sent by `ic7610ftdi localhost 2000`.\n\n![GNU Radio Flowchart Screenshot](ic7610iq.pdf)\n\n![GNU Radio Application Screenshot](ic7610iq.png)\n\n## Author\n\nCopyright (C) 2023 Christoph Berg DF7CB \u003ccb@df7cb.de\u003e\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdf7cb%2Fic7610ftdi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdf7cb%2Fic7610ftdi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdf7cb%2Fic7610ftdi/lists"}