|
| 1 | +# Arduino Core for SAMD21 CPU |
| 2 | + |
| 3 | +This repository containts the source code and configuration files of the Arduino Core |
| 4 | +for Atmel's SAMD21 processor (used on the Arduino Zero board). |
| 5 | + |
| 6 | +## Installation on Arduino IDE |
| 7 | + |
| 8 | +Just open the "Boards Manager" and install the package called: |
| 9 | + |
| 10 | +``` |
| 11 | +Arduino SAMD Boards (32-bit ARM Cortex-M0+) |
| 12 | +``` |
| 13 | + |
| 14 | +## Hourly builds |
| 15 | + |
| 16 | +This repository is under a CI system that every hour checks if there are updates and |
| 17 | +builds a release for testing (the so called "Hourly builds"). |
| 18 | + |
| 19 | +The hourly builds are available through Boards Manager. If you want to install them: |
| 20 | + 1. Open the **Preferences** of the Arduino IDE. |
| 21 | + 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. |
| 22 | + 3. Open the **Boards Manager** (menu Tools->Board->Board Manager...) |
| 23 | + 4. Install **Arduino SAMD core - Hourly build** |
| 24 | + 5. Select one of the boards under **SAMD Hourly build XX** in Tools->Board menu |
| 25 | + 6. Compile/Upload as usual |
| 26 | + |
| 27 | +If you already installed an hourly build and you want to update it with the latest: |
| 28 | + 1. Open the **Boards Manager** (menu Tools->Board->Board Manager...) |
| 29 | + 2. Remove **Arduino SAMD core - Hourly build** |
| 30 | + 3. Install again **Arduino SAMD core - Hourly build**, the Board Manager will download the latest build replacing the old one. |
| 31 | + |
| 32 | +## Support |
| 33 | + |
| 34 | +There is a dedicated section of the Arduino Forum for general discussion and project assistance: |
| 35 | + |
| 36 | +http://forum.arduino.cc/index.php?board=98.0 |
| 37 | + |
| 38 | +## Bugs or Issues |
| 39 | + |
| 40 | +If you find a bug you can submit an issue here on github: |
| 41 | + |
| 42 | +https://github.com/arduino/ArduinoCore-samd/issues |
| 43 | + |
| 44 | +Before posting a new issue, please check if the same problem has been already reported by someone else |
| 45 | +to avoid duplicates. |
| 46 | + |
| 47 | +## Contributions |
| 48 | + |
| 49 | +Contributions are always welcome. The preferred way to receive code cotribution is by submitting a |
| 50 | +Pull Request on github. |
| 51 | + |
| 52 | +## License and credits |
| 53 | + |
| 54 | +``` |
| 55 | + Copyright (c) 2015 Arduino LLC. All right reserved. |
| 56 | +
|
| 57 | + This library is free software; you can redistribute it and/or |
| 58 | + modify it under the terms of the GNU Lesser General Public |
| 59 | + License as published by the Free Software Foundation; either |
| 60 | + version 2.1 of the License, or (at your option) any later version. |
| 61 | +
|
| 62 | + This library is distributed in the hope that it will be useful, |
| 63 | + but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 64 | + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
| 65 | + See the GNU Lesser General Public License for more details. |
| 66 | +
|
| 67 | + You should have received a copy of the GNU Lesser General Public |
| 68 | + License along with this library; if not, write to the Free Software |
| 69 | + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 70 | +``` |
0 commit comments