{"id":44052233,"url":"https://github.com/pulp-platform/chimera-sdk","last_synced_at":"2026-02-07T23:35:37.911Z","repository":{"id":252093480,"uuid":"827212242","full_name":"pulp-platform/chimera-sdk","owner":"pulp-platform","description":null,"archived":false,"fork":false,"pushed_at":"2026-02-02T14:36:01.000Z","size":5663,"stargazers_count":4,"open_issues_count":9,"forks_count":9,"subscribers_count":6,"default_branch":"devel","last_synced_at":"2026-02-03T03:30:00.726Z","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/pulp-platform.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSES/Apache-2.0.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,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-07-11T08:00:36.000Z","updated_at":"2026-02-02T14:38:14.000Z","dependencies_parsed_at":"2024-11-15T18:25:00.767Z","dependency_job_id":"d38c4cfb-80e7-4082-8d97-297d2a48c85b","html_url":"https://github.com/pulp-platform/chimera-sdk","commit_stats":null,"previous_names":["pulp-platform/chimera-sdk"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pulp-platform/chimera-sdk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pulp-platform%2Fchimera-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pulp-platform%2Fchimera-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pulp-platform%2Fchimera-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pulp-platform%2Fchimera-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pulp-platform","download_url":"https://codeload.github.com/pulp-platform/chimera-sdk/tar.gz/refs/heads/devel","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pulp-platform%2Fchimera-sdk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29212752,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-07T23:14:30.912Z","status":"ssl_error","status_checked_at":"2026-02-07T23:14:17.253Z","response_time":63,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":[],"created_at":"2026-02-07T23:35:37.237Z","updated_at":"2026-02-07T23:35:37.901Z","avatar_url":"https://github.com/pulp-platform.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CHIMERA SDK\n\nChimera-SDK is a bare-metal development platform for ASICs based on the [Chimera architecture](https://github.com/pulp-platform/chimera), a microcontroller SoC for multi-cluster, heterogeneous systems.\n\nChimera and Chimera-SDK are developed as part of the PULP project, a joint effort between ETH Zurich and the University of Bologna.\n\n## Documentation\nAll revelevant documentation can be found in the `docs` folder and is hosted on GitHub Pages.\nAccess the documentation on\n- [Master Branch](https://pulp-platform.github.io/chimera-sdk/)\n- [Devel Branch](https://pulp-platform.github.io/chimera-sdk/branch/devel)\n\nThe documentation for a specific branch can be accessed via `https://pulp-platform.github.io/chimera-sdk/branch/\u003cbranch\u003e`\n\n## Formatting and Linting\n\nWe provide the [pre-commit](https://pre-commit.com) configuration file which you can use to install github hooks that execute the formatting commands on your changes.\n\nWe recommend that you setup a virtual environment and install the required dependencies using the following commands:\n```bash\npython3 -m venv .venv\nsource .venv/bin/activate\npip install -r requirements.txt\npip install -r requirements-docs.txt\n```\n\nThe configuration sets the default stage for all the hooks to `pre-push` so to install the git hooks run:\n```bash\npre-commit install --hook-type pre-push\n```\nThe hooks will run before each push, making sure the pushed code can pass linting checks and not fail the CI on linting.\n\nIf you change your mind and don't want the git hooks:\n```bash\npre-commit uninstall\n```\n\nYou can also run the hooks manually on all files using:\n```bash\npre-commit run --all-files\n# Or use the Makefile target\nmake format\n```\n\n**The Makefile is only used for utility purposes and not by the build system.!**\n\n\n## License\nAll licenses used in this repository are listed under the `LICENSES` folder. Unless specified otherwise in the respective file headers, all code checked into this repository is made available under a permissive license.\n- Most software sources and tool scripts are licensed under the [Apache 2.0 license](https://opensource.org/licenses/Apache-2.0).\n- Some files are licensed under the [Solderpad v0.51 license](https://solderpad.org/licenses/SHL-0.51/).\n- Markdown, JSON, text files, pictures, PDFs, are licensed under the [Creative Commons Attribution 4.0 International](https://creativecommons.org/licenses/by/4.0) license (CC BY 4.0).\n\nTo extract license information for all files, you can use the [reuse tool](https://reuse.software/) and by running `reuse spdx` in the root directory of this repository.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpulp-platform%2Fchimera-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpulp-platform%2Fchimera-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpulp-platform%2Fchimera-sdk/lists"}