* 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>
23 lines
542 B
C
23 lines
542 B
C
#ifndef Pins_Arduino_h
|
|
#define Pins_Arduino_h
|
|
|
|
#include <stdint.h>
|
|
#include "soc/soc_caps.h"
|
|
|
|
#define USB_VID 0x303A
|
|
#define USB_PID 0x82DF
|
|
#define USB_MANUFACTURER "Unexpected Maker"
|
|
#define USB_PRODUCT "SQUiXL"
|
|
#define USB_SERIAL ""
|
|
|
|
static const uint8_t SDA = 1;
|
|
static const uint8_t SCL = 2;
|
|
|
|
static const uint8_t SS = 42;
|
|
static const uint8_t MOSI = 46;
|
|
static const uint8_t MISO = 41;
|
|
static const uint8_t SDO = 46;
|
|
static const uint8_t SDI = 41;
|
|
static const uint8_t SCK = 45;
|
|
|
|
#endif /* Pins_Arduino_h */
|