forked from microsoft/uf2-samdx1
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pretty basic SAMD21G18A port with a single LED on PA17 https://store.arduino.cc/usa/nano-33-iot Signed-off-by: Keith Packard <[email protected]>
- Loading branch information
1 parent
63b4c6f
commit 82cd95d
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
CHIP_FAMILY = samd21 | ||
CHIP_VARIANT = SAMD21G18A |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#ifndef BOARD_CONFIG_H | ||
#define BOARD_CONFIG_H | ||
|
||
#define CRYSTALLESS 1 | ||
|
||
#define VENDOR_NAME "Arduino SA" | ||
#define PRODUCT_NAME "Arduino NANO 33 IoT" | ||
#define VOLUME_LABEL "NANOBOOT" | ||
#define INDEX_URL "https://store.arduino.cc/usa/nano-33-iot" | ||
#define BOARD_ID "SAMD21G18A-NANO-33" | ||
|
||
#define USB_VID 0x2341 | ||
#define USB_PID 0x0057 | ||
|
||
#define LED_PIN PIN_PA17 | ||
|
||
#endif |