{"id":43978935,"url":"https://github.com/gotmc/asrl","last_synced_at":"2026-02-07T08:35:17.168Z","repository":{"id":57557603,"uuid":"97172845","full_name":"gotmc/asrl","owner":"gotmc","description":"Go-based implementation of an Asynchronous Serial (ASRL) interface for IVI test equipment automation","archived":false,"fork":false,"pushed_at":"2024-04-24T12:49:29.000Z","size":6914,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-22T15:17:02.279Z","etag":null,"topics":["asrl","drivers","ivi","ivi-specs","ivi-standard","prologix","rs232","scpi","scpi-commands","scpi-instrument","scpi-instruments","serial","serial-devices","serial-port","serialport","serialport-interface","test-automation","test-equipment"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gotmc.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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}},"created_at":"2017-07-13T23:27:18.000Z","updated_at":"2024-04-24T12:49:31.000Z","dependencies_parsed_at":"2024-04-22T18:49:28.805Z","dependency_job_id":null,"html_url":"https://github.com/gotmc/asrl","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/gotmc/asrl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gotmc%2Fasrl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gotmc%2Fasrl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gotmc%2Fasrl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gotmc%2Fasrl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gotmc","download_url":"https://codeload.github.com/gotmc/asrl/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gotmc%2Fasrl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29190294,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-07T07:37:03.739Z","status":"ssl_error","status_checked_at":"2026-02-07T07:37:03.029Z","response_time":63,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["asrl","drivers","ivi","ivi-specs","ivi-standard","prologix","rs232","scpi","scpi-commands","scpi-instrument","scpi-instruments","serial","serial-devices","serial-port","serialport","serialport-interface","test-automation","test-equipment"],"created_at":"2026-02-07T08:35:17.092Z","updated_at":"2026-02-07T08:35:17.160Z","avatar_url":"https://github.com/gotmc.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# asrl\n\nGo-based implementation of an Asynchronous Serial (ASRL) interface for\nInterchangeable Virtual Instrument (IVI) drivers.\n\n[![GoDoc][godoc badge]][godoc link]\n[![Go Report Card][report badge]][report card]\n[![License Badge][license badge]][LICENSE.txt]\n\n## Overview\n\nThe [asrl][] package enables controlling test equipment (e.g., oscilloscopes,\nfunction generators, multimeters, etc.) over serial port. While this package can\nbe used by itself to send Standard Commands for Programmable Instruments\n([SCPI][]) commands to a piece of test equipment, it also serves to provide an\nInstrument interface for both the [ivi][] and [visa][] packages. The [ivi][]\npackage provides standardized APIs for programming test instruments following\nthe [Interchangeable Virtual Instrument (IVI) standard][ivi-specs].\n\n## Implementations\n\n### Prologix\n\nThe `prologix` package provides a serial interface for the Prologix GPIB-USB\nController using the Virtual COM Port (VCP) driver. To work, you must download\nthe drivers for FT245R chip from FTDI website (www.ftdichip.com).\n\n## Installation\n\n```bash\n$ go get github.com/gotmc/asrl\n```\n\n## Documentation\n\nDocumentation can be found at either:\n\n- \u003chttps://godoc.org/github.com/gotmc/asrl\u003e\n- \u003chttp://localhost:6060/pkg/github.com/gotmc/asrl/\u003e after running `$\ngodoc -http=:6060`\n\n## Contributing\n\nContributions are welcome! To contribute please:\n\n1. Fork the repository\n2. Create a feature branch\n3. Code\n4. Submit a [pull request][]\n\n### Testing\n\nPrior to submitting a [pull request][], please run the tests using either [GNU\nMake][make]:\n\n```bash\n$ make check\n$ make lint\n```\n\nor you can use [Just][]:\n\n```bash\n$ just check\n$ just lint\n```\n\nTo update and view the test coverage report using [Make][] run:\n\n```bash\n$ make cover\n```\n\nor you can use [Just][]:\n\n```bash\n$ just cover\n```\n\n## License\n\n[asrl][] is released under the MIT license. Please see the [LICENSE.txt][] file\nfor more information.\n\n[asrl]: https://github.com/gotmc/asrl\n[godoc badge]: https://godoc.org/github.com/gotmc/asrl?status.svg\n[godoc link]: https://godoc.org/github.com/gotmc/asrl\n[ivi]: https://github.com/gotmc/ivi\n[ivi-foundation]: http://www.ivifoundation.org/\n[ivi-specs]: http://www.ivifoundation.org/specifications/\n[just]: https://just.systems/man/en/\n[LICENSE.txt]: https://github.com/gotmc/lxi/blob/master/LICENSE.txt\n[license badge]: https://img.shields.io/badge/license-MIT-blue.svg\n[make]: https://www.gnu.org/software/make/\n[pull request]: https://help.github.com/articles/using-pull-requests\n[report badge]: https://goreportcard.com/badge/github.com/gotmc/asrl\n[report card]: https://goreportcard.com/report/github.com/gotmc/asrl\n[scpi]: http://www.ivifoundation.org/scpi/\n[visa]: https://github.com/gotmc/visa\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgotmc%2Fasrl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgotmc%2Fasrl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgotmc%2Fasrl/lists"}