fix final rev pins (#6353)

fix uarts

Co-authored-by: ladyada <support@adafruit.com>
This commit is contained in:
Limor "Ladyada" Fried 2022-02-28 07:31:00 -05:00 committed by GitHub
parent 4f7e88a177
commit c280225738
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 10 deletions

View File

@ -5500,7 +5500,7 @@ adafruit_qtpy_esp32c3.menu.DebugLevel.verbose=Verbose
adafruit_qtpy_esp32c3.menu.DebugLevel.verbose.build.code_debug=5
adafruit_qtpy_esp32_pico.name=Adafruit QT Py ESP32 Pico
adafruit_qtpy_esp32_pico.name=Adafruit QT Py ESP32
adafruit_qtpy_esp32_pico.upload.tool=esptool_py
adafruit_qtpy_esp32_pico.upload.maximum_size=1310720

View File

@ -15,10 +15,10 @@ static const uint8_t LED_BUILTIN = 13;
#define BUILTIN_LED LED_BUILTIN // backward compatibility
#define LED_BUILTIN LED_BUILTIN
static const uint8_t TX = 7;
static const uint8_t RX = 8;
static const uint8_t TX1 = 7;
static const uint8_t RX1 = 8;
static const uint8_t TX = 8;
static const uint8_t RX = 7;
static const uint8_t TX1 = 8;
static const uint8_t RX1 = 7;
static const uint8_t SDA = 22;
static const uint8_t SCL = 20;
@ -52,6 +52,7 @@ static const uint8_t BUTTON = 38;
// Neopixel
static const uint8_t NEOPIXEL_PIN = 0;
static const uint8_t PIN_NEOPIXEL = 0;
// Neopixel & I2C power
static const uint8_t NEOPIXEL_I2C_POWER = 2;

View File

@ -20,7 +20,7 @@ static const uint8_t RX = 7;
#define TX1 32
#define RX1 7
static const uint8_t SDA = 25;
static const uint8_t SDA = 4;
static const uint8_t SCL = 33;
static const uint8_t SDA1 = 22;
@ -31,11 +31,11 @@ static const uint8_t MOSI = 13;
static const uint8_t MISO = 12;
static const uint8_t SCK = 14;
static const uint8_t A0 = 15;
static const uint8_t A1 = 4;
static const uint8_t A0 = 26;
static const uint8_t A1 = 25;
static const uint8_t A2 = 27;
static const uint8_t A3 = 26;
static const uint8_t A4 = 25;
static const uint8_t A3 = 15;
static const uint8_t A4 = 4;
static const uint8_t A5 = 33;
static const uint8_t A6 = 32;
static const uint8_t A7 = 7;