Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document how to add the required link to ArduinoCore-API. #676

Merged
merged 5 commits into from
Aug 8, 2022
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,20 @@ to avoid duplicates.
Contributions are always welcome. The preferred way to receive code contribution is by submitting a
Pull Request on github.

## Developing

aentinger marked this conversation as resolved.
Show resolved Hide resolved
1. Clone the [ArduinoCore-API](https://github.com/arduino/ArduinoCore-API) repo to any convenient location:
```
git clone https://github.com/arduino/ArduinoCore-API.git
```
1. Create an `<SKETCHBOOK>/hardware/arduino-git` folder, where `<SKETCHBOOK>` is the location of your
Arduino sketchbook.
1. Change directories: `cd <SKETCHBOOK>/hardware/arduino-git`.
1. Clone this repo: `git clone https://github.com/arduino/ArduinoCore-samd.git samd`.
1. Change directories: `cd samd/cores/arduino`.
1. Copy or symlink the `api` folder from the [ArduinoCore-API](https://github.com/arduino/ArduinoCore-API) repo (i.e. `ln -s <ARDUINO_CORE_API>/api .`, where `<ARDUINO_CORE_API>` is the location where you've cloned the ArduinoCore-API repository to).
aentinger marked this conversation as resolved.
Show resolved Hide resolved
1. Restart the IDE.

## Hourly builds

This repository is under a Continuous Integration system that every hour checks if there are updates and
Expand Down