Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/skulblakka/framework-arduino-samd
https://github.com/skulblakka/framework-arduino-samd
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/skulblakka/framework-arduino-samd
- Owner: skulblakka
- License: lgpl-2.1
- Created: 2023-11-28T11:21:58.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-05-18T01:13:29.000Z (8 months ago)
- Last Synced: 2024-05-18T02:25:15.752Z (8 months ago)
- Language: C
- Size: 1.78 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG
- License: LICENSE
Awesome Lists containing this project
README
# Arduino Core for SAMD21 CPU
**This fork adds [PR 713](https://github.com/arduino/ArduinoCore-samd/pull/713) to the current
[platformio/framework-arduino-samd](https://registry.platformio.org/tools/platformio/framework-arduino-samd)
(version 1.8.13).**This version of the framework can be used by adding the following to `platformio.ini`:
```
platform_packages =
framework-arduino-samd @ https://github.com/skulblakka/framework-arduino-samd.git#master
```This repository contains the source code and configuration files of the Arduino Core
for Atmel's SAMD21 processor (used on the Arduino/Genuino Zero, MKR1000 and MKRZero boards).## Installation on Arduino IDE
This core is available as a package in the Arduino IDE cores manager.
Just open the "Boards Manager" and install the package called:"Arduino SAMD Boards (32-bit ARM Cortex-M0+)"
## Support
There is a dedicated section of the Arduino Forum for general discussion and project assistance:
http://forum.arduino.cc/index.php?board=98.0
## Bugs or Issues
If you find a bug you can submit an issue here on github:
https://github.com/arduino/ArduinoCore-samd/issues
Before posting a new issue, please check if the same problem has been already reported by someone else
to avoid duplicates.## Contributions
Contributions are always welcome. The preferred way to receive code contribution is by submitting a
Pull Request on github.## Hourly builds
This repository is under a Continuous Integration system that every hour checks if there are updates and
builds a release for testing (the so called "Hourly builds").The hourly builds are available through Boards Manager. If you want to install them:
1. Open the **Preferences** of the Arduino IDE.
2. Add this URL `http://downloads.arduino.cc/Hourly/samd/package_samd-hourly-build_index.json` in the **Additional Boards Manager URLs** field, and click OK.
3. Open the **Boards Manager** (menu Tools->Board->Board Manager...)
4. Install **Arduino SAMD core - Hourly build**
5. Select one of the boards under **SAMD Hourly build XX** in Tools->Board menu
6. Compile/Upload as usualIf you already installed an hourly build and you want to update it with the latest:
1. Open the **Boards Manager** (menu Tools->Board->Board Manager...)
2. Remove **Arduino SAMD core - Hourly build**
3. Install again **Arduino SAMD core - Hourly build**, the Board Manager will download the latest build replacing the old one.## License and credits
This core has been developed by Arduino LLC in collaboration with Atmel.
```
Copyright (c) 2015 Arduino LLC. All right reserved.This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU Lesser General Public License for more details.You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
```