mirror of https://github.com/meshcore-dev/MeshCore
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
419 B
19 lines
419 B
#ifndef Pins_Arduino_h
|
|
#define Pins_Arduino_h
|
|
|
|
#include <stdint.h>
|
|
|
|
#define USB_VID 0x303a
|
|
#define USB_PID 0x1001
|
|
|
|
// The default Wire will be mapped to PMU and RTC
|
|
static const uint8_t SDA = 17;
|
|
static const uint8_t SCL = 18;
|
|
|
|
// Default SPI is the LR1110 radio bus
|
|
static const uint8_t SS = 12;
|
|
static const uint8_t MOSI = 10;
|
|
static const uint8_t MISO = 9;
|
|
static const uint8_t SCK = 11;
|
|
|
|
#endif /* Pins_Arduino_h */
|