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
The **Arduino Core API** module for zephyr leverages the power of Zephyr under an Arduino-C++ style abtraction layer thus helping zephyr new-comers to start using it without worrying about learning about new APIs and libraries. See the project documentation folder for detailed documentation on these topics:
***Pre requisites:** It is assumed that you have zephyrproject configured and installed on your system as per the official [Get Started Guide](https://docs.zephyrproject.org/latest/develop/getting_started/index.html). The recommended path to install is `~/zephyrproject` as specified in the guide. If you have zephyr installed in a custom path you may need to make changes to the CMakeLists.txt file in the sample code directory when building these samples.
13
+
14
+
* Add following entry to `west.yml` file in `manifest/projects` subtree of Zephyr:
***Note:** For ***Linux users only*** there exists an ``install.sh`` script in this project that can be run to quickly link the ArduinoCore-API to this module.
30
+
If you are able to run that script successfully then you can skip the next steps.
31
+
32
+
* To "complete" the core you need to copy or symlink the api folder from the [ArduinoCore-API](https://github.com/arduino/ArduinoCore-API.git) repo to the target's ``cores/arduino`` folder:
33
+
```sh
34
+
$ git clone git@github.com:arduino/ArduinoCore-API # Any location
The `cores` folder can be found at `~/zephyrproject/modules/lib/Arduino-Zephyr-API/cores`.
38
+
39
+
**Known Bug(s):**
40
+
41
+
__NOTE:__ You can skip this step as well if you ran ``install.sh``.
42
+
43
+
**Maintainers**:
44
+
-[DhruvaG2000](https://github.com/DhruvaG2000)
45
+
-[soburi](https://github.com/soburi)
46
+
-[szczys](https://github.com/szczys)
47
+
-[beriberikix](https://github.com/beriberikix)
48
+
-[alvarowolfx](https://github.com/alvarowolfx)
49
+
50
+
## License
51
+
Please note that the current license is Apache 2. Previously it was LGPL 2.1 but after careful review it was determined that no LGPL code or derivates was used and the more permissive license was chosen.
0 commit comments