{"id":16608897,"url":"https://github.com/rnayabed/vegadude","last_synced_at":"2026-02-26T03:51:34.580Z","repository":{"id":169463015,"uuid":"642221686","full_name":"rnayabed/vegadude","owner":"rnayabed","description":"Utility to program CDAC VEGA microprocessor powered boards","archived":false,"fork":false,"pushed_at":"2023-10-19T15:56:56.000Z","size":98,"stargazers_count":6,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-26T06:48:08.654Z","etag":null,"topics":["cdac","cpp","riscv","vega"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rnayabed.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,"zenodo":null}},"created_at":"2023-05-18T04:57:19.000Z","updated_at":"2024-10-05T13:27:53.000Z","dependencies_parsed_at":null,"dependency_job_id":"e5702434-3c82-49bd-adf6-832923dc694a","html_url":"https://github.com/rnayabed/vegadude","commit_stats":null,"previous_names":["rnayabed/vegadude"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/rnayabed/vegadude","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rnayabed%2Fvegadude","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rnayabed%2Fvegadude/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rnayabed%2Fvegadude/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rnayabed%2Fvegadude/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rnayabed","download_url":"https://codeload.github.com/rnayabed/vegadude/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rnayabed%2Fvegadude/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29848654,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-25T22:37:40.667Z","status":"online","status_checked_at":"2026-02-26T02:00:06.774Z","response_time":89,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["cdac","cpp","riscv","vega"],"created_at":"2024-10-12T01:27:28.580Z","updated_at":"2026-02-26T03:51:34.550Z","avatar_url":"https://github.com/rnayabed.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# vegadude\n\n![version](https://img.shields.io/badge/Version-1.0-green)\n\nvegadude is a utility application to upload programs on CDAC's VEGA Microprocessor powered boards.\n\n## Protocols implemented:\n\n* Serial + XMODEM (w/ CRC-16-CCITT) (CDAC Aries)\n\n## Supported Platforms\n\n* Linux\n* Windows\n\n## Clone\n\n```\ngit clone https://github.com/rnayabed/vegadude.git\n```\n\n## Build\n\n```\ncmake -B build -S vegadude -DCMAKE_BUILD_TYPE=Release\ncmake --build build\n```\n\n## Run\n\n```\n./build/vegadude -tp /dev/ttyUSB0 -bp \u003cpath to binary\u003e --aries -sau\n```\n\n## Usage\n\n```\nUsage:  [-l | --log] [-bp | --binary-path]\n        [-tp | --target-path]\n        [-xmr | --xmodem-max-retry] [-xbs | --xmodem-block-size]\n        [--aries] [-sp | --serial-parity] [-ssb | --serial-stop-bits]\n        [-src | --serial-rts-cts] [-sb | --serial-bits]\n        [-sbr | --serial-baud-rate] [-srt | --serial-read-timeout]\n        [-sau | --start-after-upload] [--license] [-h | --help]\n\nOption Summary:\n    -l | --log                          Optional. Create a log file.\n\n    -bp | --binary-path                 Required. Specify path to the binary file\n                                        to be uploaded.\n\n    -tp | --target-path                 Required. Specify path to the target board.\n\n    -xmr | --xmodem-max-retry           Optional. Specify max amount of times to retry before aborting upload.\n                                        Default is 10.\n\n    -xbs | --xmodem-block-size          Required if not using automatic configuration.\n                                        Specify block size of XModem data transfer.\n\n    --aries                             Use CDAC Aries serial port configuration.\n\n    -sp | --serial-parity               Optional. Specify if target uses parity bit.\n                                        Default is false.\n\n    -ssb | --serial-stop-bits           Required. Specify number of stop bits\n                                        for target.\n\n    -src | --serial-rts-cts             Optional. Specify if target uses RTS/CTS\n                                        flow control.\n                                        Default is false.\n\n    -sb | --serial-bits                 Required. Specify the number of data bits sent\n                                        in a byte to the target.\n\n    -sbr | --serial-baud-rate           Required. Specify serial baud rate of the\n                                        target.\n\n    -srt | --serial-read-timeout        Optional. Specify timeout for each read in\n                                        milliseconds.\n                                        Default is 500.\n\n    -sau | --start-after-upload         Optional. Immediately start running program\n                                        after uploading.\n\n    --license                           Print license information.\n\n    -h | --help                         Print this message.\n\nNOTE: you cannot use --aries and --xmodem-block-size / --serial* arguments (except --serial-read-timeout) at the same time.)\n```\n\n## Note\n\nvegadude does not play well with sniffer programs like [interceptty](https://github.com/geoffmeyers/interceptty), *for now*.\n\n## License\n\nvegadude is licensed to [GNU General Public License v3.0](https://github.com/rnayabed/vegadude/blob/master/LICENSE).\n\n```\nvegadude - Utility application to upload programs on CDAC's VEGA Microprocessor powered boards.\nCopyright (C) 2023 Debayan Sutradhar (rnayabed)\n\nThis program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation, either version 3 of the License, or\n(at your option) any later version.\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frnayabed%2Fvegadude","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frnayabed%2Fvegadude","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frnayabed%2Fvegadude/lists"}