Skip to content

Commit

Permalink
Add support for Tau board (#123)
Browse files Browse the repository at this point in the history
* Add support for Tau board

* supply USB VID/PID

Co-authored-by: Dan Halbert <[email protected]>
  • Loading branch information
ealasu and dhalbert authored Dec 16, 2020
1 parent eb670f6 commit 5301af7
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
2 changes: 2 additions & 0 deletions boards/tau/board.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
CHIP_FAMILY = samd21
CHIP_VARIANT = SAMD21E17A
18 changes: 18 additions & 0 deletions boards/tau/board_config.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#ifndef BOARD_CONFIG_H
#define BOARD_CONFIG_H

#define VENDOR_NAME "Rabid Prototypes"
#define PRODUCT_NAME "Tau"
#define VOLUME_LABEL "TAU_BOOT"
#define INDEX_URL "https://rabidprototypes.com/product/tau"
#define BOARD_ID "SAMD21E17A-Tau-v0"

#define USB_VID 0x230a
#define USB_PID 0x00E9

#define LED_PIN PIN_PA27

// This is needed because SAMD21E17A only has 128kB of flash
#define FLASH_NUM_ROWS 512

#endif

0 comments on commit 5301af7

Please sign in to comment.