Skip to content

Commit

Permalink
Merge pull request #171 from myelin/master
Browse files Browse the repository at this point in the history
Add support for Myelin Arcflash and POST Box boards
  • Loading branch information
dhalbert authored May 15, 2024
2 parents 3d0c9a8 + 48e509c commit babc0a5
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 0 deletions.
2 changes: 2 additions & 0 deletions boards/myelin_arcflash/board.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
CHIP_FAMILY = samd21
CHIP_VARIANT = SAMD21E18A
17 changes: 17 additions & 0 deletions boards/myelin_arcflash/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 "Myelin"
#define PRODUCT_NAME "Arcflash"
#define VOLUME_LABEL "ARCBOOT"
#define INDEX_URL "http://myelin.nz/arcflash"
#define BOARD_ID "SAMD21E18A-Arcflash-v3"

#define USB_VID 0x1209
#define USB_PID 0xFE07

// Board has no LED or Neopixel.

#endif
2 changes: 2 additions & 0 deletions boards/myelin_postbox/board.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
CHIP_FAMILY = samd21
CHIP_VARIANT = SAMD21E18A
20 changes: 20 additions & 0 deletions boards/myelin_postbox/board_config.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#ifndef BOARD_CONFIG_H
#define BOARD_CONFIG_H

#define CRYSTALLESS 1

#define VENDOR_NAME "Myelin"
#define PRODUCT_NAME "POST Box"
#define VOLUME_LABEL "POSTBOOT"
#define INDEX_URL "http://myelin.nz/acorn/postbox"
#define BOARD_ID "SAMD21E18A-POSTBox-r3"

#define USB_VID 0x1209
#define USB_PID 0xFE06

#define LED_PIN PIN_PA22

#define BOARD_NEOPIXEL_PIN PIN_PA19
#define BOARD_NEOPIXEL_COUNT 1

#endif

0 comments on commit babc0a5

Please sign in to comment.