forked from espressif/arduino-esp32
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added UM FeatherS2 Neo to boards.txt and added appropriate variants. (e…
- Loading branch information
1 parent
9eea85f
commit 44c1198
Showing
2 changed files
with
200 additions
and
7 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
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,70 @@ | ||
#ifndef Pins_Arduino_h | ||
#define Pins_Arduino_h | ||
|
||
#include <stdint.h> | ||
|
||
#define USB_VID 0x239A | ||
#define USB_PID 0x80B4 | ||
#define USB_MANUFACTURER "Unexpected Maker" | ||
#define USB_PRODUCT "FeatherS2 Neo" | ||
#define USB_SERIAL "" | ||
|
||
#define EXTERNAL_NUM_INTERRUPTS 46 | ||
#define NUM_DIGITAL_PINS 22 | ||
#define NUM_ANALOG_INPUTS 11 | ||
|
||
#define analogInputToDigitalPin(p) (((p)<20)?(esp32_adc2gpio[(p)]):-1) | ||
#define digitalPinToInterrupt(p) (((p)<48)?(p):-1) | ||
#define digitalPinHasPWM(p) (p < 46) | ||
|
||
static const uint8_t TX = 43; | ||
static const uint8_t RX = 44; | ||
|
||
static const uint8_t SDA = 8; | ||
static const uint8_t SCL = 9; | ||
|
||
static const uint8_t SS = 34; | ||
static const uint8_t MOSI = 35; | ||
static const uint8_t MISO = 37; | ||
static const uint8_t SDO = 35; | ||
static const uint8_t SDI = 37; | ||
static const uint8_t SCK = 36; | ||
|
||
static const uint8_t A0 = 17; | ||
static const uint8_t A1 = 18; | ||
static const uint8_t A2 = 14; | ||
static const uint8_t A3 = 12; | ||
static const uint8_t A4 = 6; | ||
static const uint8_t A5 = 5; | ||
static const uint8_t A6 = 1; | ||
static const uint8_t A7 = 3; | ||
static const uint8_t A8 = 7; | ||
static const uint8_t A9 = 10; | ||
static const uint8_t A10 = 11; | ||
|
||
|
||
static const uint8_t T1 = 1; | ||
static const uint8_t T3 = 3; | ||
static const uint8_t T5 = 5; | ||
static const uint8_t T6 = 6; | ||
static const uint8_t T7 = 7; | ||
static const uint8_t T8 = 8; | ||
static const uint8_t T9 = 9; | ||
static const uint8_t T10 = 10; | ||
static const uint8_t T11 = 11; | ||
static const uint8_t T12 = 12; | ||
static const uint8_t T14 = 14; | ||
|
||
static const uint8_t DAC1 = 17; | ||
static const uint8_t DAC2 = 18; | ||
|
||
static const uint8_t NEOPIXEL_MATRIX_DATA = 21; | ||
static const uint8_t NEOPIXEL_MATRIX_PWR = 4; | ||
|
||
static const uint8_t NEOPIXEL_DATA = 40; | ||
static const uint8_t NEOPIXEL_PWR = 39; | ||
|
||
static const uint8_t VBAT_SENSE = 2; | ||
static const uint8_t VBUS_SENSE = 34; | ||
|
||
#endif /* Pins_Arduino_h */ |