3.3.7
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
#ifndef Pins_Arduino_h
|
||||
#define Pins_Arduino_h
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
// touch screen
|
||||
#define TP_SDA 23
|
||||
#define TP_SCL 32
|
||||
#define TP_INT 38
|
||||
|
||||
// Interrupt IO port
|
||||
#define RTC_INT 37
|
||||
#define APX20X_INT 35
|
||||
#define BMA42X_INT1 39
|
||||
|
||||
static const uint8_t TX = 1;
|
||||
static const uint8_t RX = 3;
|
||||
|
||||
//Serial1 Already assigned to GPS LORA
|
||||
#define TX1 33
|
||||
#define RX1 34
|
||||
|
||||
// Already assigned to BMA423 PCF8563 and external extensions
|
||||
static const uint8_t SDA = 21;
|
||||
static const uint8_t SCL = 22;
|
||||
// SPI has been configured as an SD card slot and must be removed when downloading
|
||||
static const uint8_t SS = 13;
|
||||
static const uint8_t MOSI = 15;
|
||||
static const uint8_t MISO = 2;
|
||||
static const uint8_t SCK = 14;
|
||||
// Externally programmable IO
|
||||
static const uint8_t DAC1 = 25;
|
||||
static const uint8_t DAC2 = 26;
|
||||
|
||||
#endif /* Pins_Arduino_h */
|
||||
Reference in New Issue
Block a user