{"id":13570471,"url":"https://github.com/nigelb/platform-apollo3blue","last_synced_at":"2025-04-04T07:31:36.653Z","repository":{"id":37348815,"uuid":"225099066","full_name":"nigelb/platform-apollo3blue","owner":"nigelb","description":"AmbiqMicro Apollo 3 Blue: development platform for PlatformIO ","archived":false,"fork":false,"pushed_at":"2025-02-01T22:58:26.000Z","size":1092,"stargazers_count":31,"open_issues_count":3,"forks_count":13,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-02-01T23:26:16.683Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"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/nigelb.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":"AUTHORS","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-12-01T03:01:12.000Z","updated_at":"2024-12-26T17:16:34.000Z","dependencies_parsed_at":"2024-11-05T03:30:51.700Z","dependency_job_id":"0b3fbaf4-717c-44dd-8d8a-d528893126cc","html_url":"https://github.com/nigelb/platform-apollo3blue","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nigelb%2Fplatform-apollo3blue","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nigelb%2Fplatform-apollo3blue/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nigelb%2Fplatform-apollo3blue/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nigelb%2Fplatform-apollo3blue/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nigelb","download_url":"https://codeload.github.com/nigelb/platform-apollo3blue/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247138705,"owners_count":20890091,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":"2024-08-01T14:00:52.636Z","updated_at":"2025-04-04T07:31:35.372Z","avatar_url":"https://github.com/nigelb.png","language":"Python","readme":"# platform-apollo3blue\nThis is an experimental platform to allow the use of [SparkFun's Arduino framework](https://github.com/sparkfun/Arduino_Apollo3) in PlatformIO.\n\n# How To Use This\nAs this is experimental, it requires a manual install.\n\n# Supported Frameworks and Tools\n\nPlatform-apollo3blue now supports the following: \n\n1. Frameworks:\n    * Arduino - [sparkfun/Arduino_Apollo3](https://github.com/sparkfun/Arduino_Apollo3)\n        * [Core V1](https://github.com/sparkfun/Arduino_Apollo3/tree/v1)\n        * [Core V2](https://github.com/sparkfun/Arduino_Apollo3)\n    * Ambiq Suit SDK - [sparkfun/AmbiqSuiteSDK](https://github.com/sparkfun/AmbiqSuiteSDK.git)\n2. Tools:\n    * Segger [JLink](https://www.segger.com/products/debug-probes/j-link/) with [platformio](https://docs.platformio.org/en/latest/plus/debug-tools/jlink.html)\n        * [Upload protocol](docs/platform-apollo3blue/UsingSeggerJLink.md#upload-firmware) \n        * [Debugger](docs/platform-apollo3blue/UsingSeggerJLink.md#debug-firmware)\n\nTo specify which framework and version to use, see [below](#specifying-the-version-of-sparkfunarduino_apollo3) or a more detailed [example](docs/platform-apollo3blue/UsingMultipleVersionsOfArduino_Apollo3.md).\n    \n# Quick Start\nHere we document the quickest way to get started using `platform-apollo3blue`. \n\n## 1. Install `platform-apollo3blue`\n````\n$ pio platform install git+https://github.com/nigelb/platform-apollo3blue\n````\n\n## 2. Select and Install a version of Arduino_Apollo3\nThe quickest and easiest way to install Arduino_Apollo3 is to create a project and specify the version as a git repo.\n\n```\n$ mkdir new_project\n$ cd new_project\n```\n\nAnd then either:\n### Core V2\n```\n$ pio init -b SparkFun_RedBoard_Artemis_ATP -O\"platform_packages=framework-arduinoapollo3@https://github.com/sparkfun/Arduino_Apollo3#v2.2.0\"\n```\n\nor:\n### Core V1\nUntil the version number is bumped for the core v1 branch, I am maintaining a fork of it [here](https://github.com/nigelb/Arduino_Apollo3) with the required updates.\n```\n$ pio init -b SparkFun_RedBoard_Artemis_ATP -O\"platform_packages=framework-arduinoapollo3@https://github.com/nigelb/Arduino_Apollo3#v1.2.1_pio\"\n```\n\n# Manual install of sparkfun/Arduino_Apollo3\nIf you don't want to use my forked repo, or you want to be able to have concurrent projects that use `core v1` and `core v2`\nwithout having platformio reinstall Arduino_Apollo each time, you can manually install both version\nof the cores.\n\nSee the [Manual Installation](docs/platform-apollo3blue/Install/Manual.md) and [Using Multiple Versions of Arduino_Apollo3](docs/platform-apollo3blue/UsingMultipleVersionsOfArduino_Apollo3.md).\n\n# More Information\n\n1. [Verify Installation](docs/platform-apollo3blue/Install/Verify.md)\n2. [Manually Create a project](docs/platform-apollo3blue/Install/Create%20a%20project.md)\n3. [Upload over USB](docs/platform-apollo3blue/Install/Upload.md)\n4. [`platformio.ini` customization options](docs/platform-apollo3blue/PlatformIO_ini_Options.md)\n5. [Using a Segger JLink](docs/platform-apollo3blue/UsingSeggerJLink.md)\n6. [Debugging](docs/platform-apollo3blue/Debug/Debugging.md)","funding_links":[],"categories":["Python"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnigelb%2Fplatform-apollo3blue","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnigelb%2Fplatform-apollo3blue","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnigelb%2Fplatform-apollo3blue/lists"}