* add dfrobot_lorawan_esp32s3 board * Update pins_arduino.h * Update pins_arduino.h remove duplicate macro definitions * Update pins_arduino.h * update board.txt * add other menu items * delete OPI Flash * Update pins_arduino.h * Update pins_arduino.h
34 lines
729 B
C
34 lines
729 B
C
#ifndef Pins_Arduino_h
|
|
#define Pins_Arduino_h
|
|
|
|
#include <stdint.h>
|
|
|
|
#define LED_BUILTIN 21
|
|
|
|
static const uint8_t TX = 43;
|
|
static const uint8_t RX = 44;
|
|
|
|
static const uint8_t SDA = 8;
|
|
static const uint8_t SCL = 9;
|
|
|
|
#define LORA_ANTPWR 42 //RXEN
|
|
#define LORA_RST 41 //RST
|
|
#define LORA_BUSY 40 //BUSY
|
|
#define LORA_DIO1 4 //DIO
|
|
|
|
static const uint8_t LORA_SS = 10;
|
|
static const uint8_t LORA_MOSI = 6;
|
|
static const uint8_t LORA_MISO = 5;
|
|
static const uint8_t LORA_SCK = 7;
|
|
|
|
static const uint8_t SS = 17;
|
|
static const uint8_t MOSI = 11;
|
|
static const uint8_t MISO = 13;
|
|
static const uint8_t SCK = 12;
|
|
|
|
#define TFT_DC 14
|
|
#define TFT_CS 17
|
|
#define TFT_RST 15
|
|
#define TFT_BL 16 // Backlight pin
|
|
|
|
#endif /* Pins_Arduino_h */
|