From 7e4826f3d1ec7e38d60f8307aed895989e20a7e6 Mon Sep 17 00:00:00 2001 From: ladyada Date: Fri, 19 Jul 2024 15:11:51 -0400 Subject: [PATCH] needed to make Serial1 work --- variants/adafruit_feather_esp32c6/pins_arduino.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/variants/adafruit_feather_esp32c6/pins_arduino.h b/variants/adafruit_feather_esp32c6/pins_arduino.h index f8a7b1121..eedc63b13 100644 --- a/variants/adafruit_feather_esp32c6/pins_arduino.h +++ b/variants/adafruit_feather_esp32c6/pins_arduino.h @@ -18,6 +18,8 @@ static const uint8_t LED_BUILTIN = 15; static const uint8_t TX = 16; static const uint8_t RX = 17; +#define TX1 TX +#define RX1 RX static const uint8_t SDA = 19; static const uint8_t SCL = 18;