{"id":29834991,"url":"https://github.com/openthread/ot-realtek","last_synced_at":"2026-01-20T17:03:54.278Z","repository":{"id":301387992,"uuid":"978946636","full_name":"openthread/ot-realtek","owner":"openthread","description":null,"archived":false,"fork":false,"pushed_at":"2026-01-10T00:37:45.000Z","size":18290,"stargazers_count":0,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-10T22:37:50.390Z","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/openthread.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-05-06T18:48:20.000Z","updated_at":"2026-01-10T00:37:42.000Z","dependencies_parsed_at":"2025-10-08T16:27:25.462Z","dependency_job_id":"97cf6d8d-229b-4821-a08e-bbfedb846cfb","html_url":"https://github.com/openthread/ot-realtek","commit_stats":null,"previous_names":["openthread/ot-realtek"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/openthread/ot-realtek","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openthread%2Fot-realtek","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openthread%2Fot-realtek/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openthread%2Fot-realtek/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openthread%2Fot-realtek/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/openthread","download_url":"https://codeload.github.com/openthread/ot-realtek/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openthread%2Fot-realtek/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28607624,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T16:10:39.856Z","status":"ssl_error","status_checked_at":"2026-01-20T16:10:39.493Z","response_time":117,"last_error":"SSL_read: 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":[],"created_at":"2025-07-29T12:15:52.590Z","updated_at":"2026-01-20T17:03:54.257Z","avatar_url":"https://github.com/openthread.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# OpenThread on Realtek RTL8777G Example\n\nThis repo contains example platform drivers for the [Realtek RTL8777G][RTL8777G].\n\n[RTL8777G]: https://www.realtek.com/\n\n## Download submodule\nIn a Bash terminal, follow these instructions to clone all submodules.\n\n```bash\n$ cd \u003cpath-to-ot-realtek\u003e\n$ git submodule update --init --recursive\n```\n\n## Building\n\nIn a Bash terminal, follow these instructions to build the RTL8777G examples.\n\n```bash\n$ cd \u003cpath-to-ot-realtek\u003e\n$ OT_CMAKE_NINJA_TARGET=\"ot-cli-ftd\" ./script/build bee4 sdk rtl8777g\n```\n\n## Flash Binaries\n\nIf the build completed successfully, the `bin` files may be found in `\u003cpath-to-realtek\u003e/build/bin/`.\n\nTo flash the images with [MPCli tool][MPCli], we should copy image file to MPCli tool file.\n\n[MPCLi]: https://github.com/rtkconnectivity/ot-realtek/tree/main/third_party/Realtek/tool/mpcli\n\n```bash\n$ cd \u003cpath-to-ot-realtek\u003e\n$ cp ./build/bin/\u003cot-cli-ftd_MP_dev_0.0.0.0_XXXX.bin\u003e ./third_party/Realtek/tool/mpcli/bin\n```\n\nThen we should modify mptool config file.\n\n```bash\n$ vim ./third_party/Realtek/tool/mpcli/mptoolconfig.json\n```\n\nReplace \u003cot-cli-ftd.bin\u003e with image file name.\n\nProgram file with MPCli.\n```bash\n$ cd ./third_party/Realtek/tool/mpcli\n$ sudo mpcli -f mptoolconfig.json -c \u003cserial port\u003e -a -r\n```\nExample: ```sudo mpcli -f mptoolconfig.json -c /dev/ttyUSB0 -a -r```\n\n## Interact\n\n1. Open terminal to `/dev/ttyACM0` (serial port settings: 115200 8-N-1).\n2. Type `help` for list of commands.\n3. See [OpenThread CLI Reference README.md][cli] to learn more.\n\n[cli]: https://github.com/openthread/openthread/blob/main/src/cli/README.md\n\n# Contributing\n\nWe would love for you to contribute to OpenThread and help make it even better than it is today! See our [Contributing Guidelines](https://github.com/openthread/openthread/blob/main/CONTRIBUTING.md) for more information.\n\nContributors are required to abide by our [Code of Conduct](https://github.com/openthread/openthread/blob/main/CODE_OF_CONDUCT.md) and [Coding Conventions and Style Guide](https://github.com/openthread/openthread/blob/main/STYLE_GUIDE.md).\n\n# License\n\nOpenThread is released under the [BSD 3-Clause license](https://github.com/openthread/ot-realtek/blob/main/LICENSE). See the [`LICENSE`](https://github.com/openthread/ot-realtek/blob/main/LICENSE) file for more information.\n\nPlease only use the OpenThread name and marks when accurately referencing this software distribution. Do not use the marks in a way that suggests you are endorsed by or otherwise affiliated with Nest, Google, or The Thread Group.\n\n# Need help?\n\nOpenThread support is available on GitHub:\n\n- Bugs and feature requests pertaining to the OpenThread on Realtek Example — [submit to the openthread/ot-realtek Issue Tracker](https://github.com/openthread/ot-realtek/issues)\n- OpenThread bugs and feature requests — [submit to the OpenThread Issue Tracker](https://github.com/openthread/openthread/issues)\n- Community Discussion - [ask questions, share ideas, and engage with other community members](https://github.com/openthread/openthread/discussions)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenthread%2Fot-realtek","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopenthread%2Fot-realtek","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenthread%2Fot-realtek/lists"}