2023-05-15 15:17:14 +00:00
|
|
|
#ifndef Pins_Arduino_h
|
|
|
|
#define Pins_Arduino_h
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#define USB_VID 0x303a
|
|
|
|
#define USB_PID 0x1001
|
|
|
|
|
|
|
|
static const uint8_t TX = 43;
|
|
|
|
static const uint8_t RX = 44;
|
|
|
|
|
|
|
|
// The default Wire will be mapped to PMU and RTC
|
2023-08-07 17:34:42 +00:00
|
|
|
static const uint8_t SDA = 8;
|
|
|
|
static const uint8_t SCL = 9;
|
2023-05-15 15:17:14 +00:00
|
|
|
|
2023-08-07 17:34:42 +00:00
|
|
|
// Default SPI
|
2023-05-15 15:17:14 +00:00
|
|
|
static const uint8_t MISO = 39;
|
|
|
|
static const uint8_t SCK = 21;
|
|
|
|
static const uint8_t MOSI = 38;
|
2023-08-07 17:34:42 +00:00
|
|
|
static const uint8_t SS = 40;
|
2023-05-15 15:17:14 +00:00
|
|
|
|
|
|
|
#endif /* Pins_Arduino_h */
|