{"id":22724669,"url":"https://github.com/mutablelogic/pico-fuse","last_synced_at":"2026-03-07T01:34:21.658Z","repository":{"id":159732516,"uuid":"622137968","full_name":"mutablelogic/pico-fuse","owner":"mutablelogic","description":" An event-driven architecture library for interacting with a RP2040 Pico host.","archived":false,"fork":false,"pushed_at":"2024-10-22T08:42:46.000Z","size":443,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-20T19:14:46.766Z","etag":null,"topics":["embedded","event-driven","pico","raspberry-pi"],"latest_commit_sha":null,"homepage":"https://mutablelogic.github.io/pico-fuse/","language":"C","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mutablelogic.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-04-01T08:27:27.000Z","updated_at":"2024-10-21T10:55:19.000Z","dependencies_parsed_at":"2024-08-22T08:23:33.075Z","dependency_job_id":"cead7534-f464-4d33-b16a-59ce990fb49a","html_url":"https://github.com/mutablelogic/pico-fuse","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mutablelogic/pico-fuse","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mutablelogic%2Fpico-fuse","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mutablelogic%2Fpico-fuse/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mutablelogic%2Fpico-fuse/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mutablelogic%2Fpico-fuse/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mutablelogic","download_url":"https://codeload.github.com/mutablelogic/pico-fuse/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mutablelogic%2Fpico-fuse/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30205167,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-06T19:07:06.838Z","status":"ssl_error","status_checked_at":"2026-03-06T18:57:34.882Z","response_time":250,"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":["embedded","event-driven","pico","raspberry-pi"],"created_at":"2024-12-10T15:07:34.695Z","updated_at":"2026-03-07T01:34:21.630Z","avatar_url":"https://github.com/mutablelogic.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# pico-fuse\n\nThis is a library to use with the Raspberry Pi Pico boards using the RP2040 microprocessor,\nwhich provides an event-driven architecture for interacting with devices in C. The API documentation\nis available here:\n\n  * https://mutablelogic.github.io/pico-fuse/\n\nThe library consists of ``fuse`` which provides data structures and methods for memory pools,\nhash maps, linked lists and strings, plus ``picofuse`` which contains device- and platform-\nspecific code for the Raspberry Pi Pico. It's possible to use ``fuse`` on its own, but\n``picofuse`` depends on ``fuse``.\n\nThe following sections provide more information on how to use this library:\n\n  * [Dependencies](#dependencies)\n  * [Configuration](#configuration)\n  * [References](#references)\n\nThe library is published under the Apache license, so feel free to use and fork it, but\nplease acknowledge the source in any forks. See the [LICENSE](LICENSE) file for more\ninformation.\n\n## Dependencies\n\nOn Fedora Linux, the following packages need installed:\n\n```bash\nsudo dnf install cmake gcc-arm-linux-gnu \\\n arm-none-eabi-gcc-cs-c++ \\\n arm-none-eabi-gcc-cs \\\n arm-none-eabi-binutils \\\n arm-none-eabi-newlib \\\n libusb1-devel\n```\n\nOn Debian Linux, the following packages need to be installed:\n\n```bash\nsudo apt install cmake gcc-arm-none-eabi libusb-1.0-0-dev\n```\n\nOn Mac with homebrew, the following packages need installed:\n\n```bash\nbrew install make cmake libusb git\nbrew install --cask gcc-arm-embedded\n```\n\nIf you haven't done so already, [create an ssh key](https://www.digitalocean.com/community/tutorials/how-to-create-ssh-keys-with-openssh-on-macos-or-linux)\nand [add it to your github account](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account).\n\n## Configuration\n\nDownload and configure the toolchain using the following set of commands in your terminal:\n\n```bash\ninstall -d ${HOME}/projects \u0026\u0026 cd ${HOME}/projects\ngit clone git@github.com:mutablelogic/pico-fuse.git\ncd pico-fuse\nPICO_BOARD=pico_w make config\nmake picotool\n```\n\nIf this completes successfully then congratulations. If you are targetting a different\nboard then the Pico W then here are some values for PICO_BOARD you can use instead:\n\n| Configuration Command | Board |\n|--|--|\n| `PICO_BOARD=pico make config` | Raspberry Pi Pico |\n| `PICO_BOARD=pico_w make config` | Raspberry Pi Pico W |\n| `PICO_BOARD=pimoroni_picolipo_4mb make config` | Pimironi Lipo with 4MB flash |\n| `PICO_BOARD=pimoroni_picolipo_16mb make config` | Pimironi Lipo with 16MB flash |\n\nWhenever you target a different board, use `make clean` before `make picotool` and `make config`.\n\n## References\n\n* Pico SDK\n  * Repository https://github.com/raspberrypi/pico-sdk\n  * Documentation (in PDF) https://datasheets.raspberrypi.org/pico/raspberry-pi-pico-c-sdk.pdf\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmutablelogic%2Fpico-fuse","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmutablelogic%2Fpico-fuse","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmutablelogic%2Fpico-fuse/lists"}