* Added new Unexpected Maker SQUiXL and EDGES3[D] boards. Signed-off-by: Seon Rozenblum <seonr@3sprockets.com> * Seems we are being picky about board names now ;) Signed-off-by: Seon Rozenblum <seonr@3sprockets.com> * Seems I have to have SPI pins defined for SQUiXL, or compiling breaks Signed-off-by: Seon Rozenblum <seon@unexpectedmaker.com> --------- Signed-off-by: Seon Rozenblum <seonr@3sprockets.com> Signed-off-by: Seon Rozenblum <seon@unexpectedmaker.com>
46 lines
1.1 KiB
C
46 lines
1.1 KiB
C
#ifndef Pins_Arduino_h
|
|
#define Pins_Arduino_h
|
|
|
|
#include <stdint.h>
|
|
#include "soc/soc_caps.h"
|
|
|
|
#define USB_VID 0x303A
|
|
#define USB_PID 0x82DC
|
|
#define USB_MANUFACTURER "Unexpected Maker"
|
|
#define USB_PRODUCT "EdgeS3[D]"
|
|
#define USB_SERIAL ""
|
|
|
|
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 = 1;
|
|
static const uint8_t A1 = 2;
|
|
static const uint8_t A2 = 3;
|
|
static const uint8_t A3 = 4;
|
|
static const uint8_t A4 = 5;
|
|
static const uint8_t A5 = 6;
|
|
static const uint8_t A6 = 7;
|
|
static const uint8_t A7 = 8;
|
|
static const uint8_t A8 = 9;
|
|
|
|
static const uint8_t T1 = 1;
|
|
static const uint8_t T2 = 2;
|
|
static const uint8_t T3 = 3;
|
|
static const uint8_t T4 = 4;
|
|
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;
|
|
|
|
#endif /* Pins_Arduino_h */
|