Search found 1 match

by l9awty7c6k
Thu May 04, 2023 9:42 am
Forum: ESP-IDF
Topic: Using UART0 pins as GPIO on ESP32-S3
Replies: 1
Views: 1346

Using UART0 pins as GPIO on ESP32-S3

I am trying use the UART0 pins (GPIO43&44) on an ESP32-S3 board as GPIO pins. I have configured it to not use UART for the console using menuconfig and have tried #define FLASH_PIN 44 ... gpio_reset_pin(FLASH_PIN); gpio_set_direction(FLASH_PIN, GPIO_MODE_OUTPUT); gpio_set_level(FLASH_PIN, 1); but th...