You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
These repositories **don't** contain the needed `api` subfolder; to "complete" the core you need to copy or symlink the `api` folder from this repo to the target's `cores/arduino` folder.
16
+
17
+
### Porting tips
18
+
19
+
In the future, core apis will be updated independently from the core, so all the compatible cores will seamlessly adopt new features.
20
+
This requires support from all the IDEs, so in the meantime we suggest to release the core by copying a snapshot of this `api` folder.
21
+
22
+
The most elegant and effective solution is to develop the core with `api` symlinked and produce the distributable archive by telling `tar` to follow symlinks.
23
+
Example command:
24
+
```
25
+
tar --exclude='*.git*' -cjhvf $yourcore-$version.tar.bz2 $yourcore/
0 commit comments