Skip to content

Commit

Permalink
Add Arduino NANO 33 IoT
Browse files Browse the repository at this point in the history
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
keith-packard committed Nov 9, 2019
1 parent 63b4c6f commit 82cd95d
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
2 changes: 2 additions & 0 deletions boards/nano33iot/board.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
CHIP_FAMILY = samd21
CHIP_VARIANT = SAMD21G18A
17 changes: 17 additions & 0 deletions boards/nano33iot/board_config.h
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

0 comments on commit 82cd95d

Please sign in to comment.