File tree 1 file changed +27
-0
lines changed
1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,33 @@ to avoid duplicates.
30
30
Contributions are always welcome. The preferred way to receive code contribution is by submitting a
31
31
Pull Request on github.
32
32
33
+ ## Developing
34
+
35
+ 1 . Clone the [ ArduinoCore-API] ( https://github.com/arduino/ArduinoCore-API ) repo to any convenient location:
36
+ ```
37
+ git clone https://github.com/arduino/ArduinoCore-API.git
38
+ ```
39
+ 1 . Create an ` <SKETCHBOOK>/hardware/arduino-git ` folder, where ` <SKETCHBOOK> ` is the location of your
40
+ Arduino sketchbook.
41
+ 1 . Change directories:
42
+ ```
43
+ cd <SKETCHBOOK>/hardware/arduino-git
44
+ ```
45
+ 1 . Clone this repo:
46
+ ```
47
+ git clone https://github.com/arduino/ArduinoCore-samd.git samd
48
+ ```
49
+ 1 . Change directories:
50
+ ```
51
+ cd samd/cores/arduino
52
+ ```
53
+ 1 . Copy or symlink the ` api ` folder from the [ ArduinoCore-API] ( https://github.com/arduino/ArduinoCore-API ) repo:
54
+ ```
55
+ ln -s <ARDUINO_CORE_API>/api .
56
+ ```
57
+ where ` <ARDUINO_CORE_API> ` is the location where you've cloned the ArduinoCore-API repository to.
58
+ 1 . Restart the IDE.
59
+
33
60
## Hourly builds
34
61
35
62
This repository is under a Continuous Integration system that every hour checks if there are updates and
You can’t perform that action at this time.
0 commit comments