Micropython on ESP32-C3 GPIO18 and GPIO19 cannot be configured as ordinary GPIO #13168
Answered
by
robert-hh
orztrickster
asked this question in
ESP32
-
How do I set this up? |
Beta Was this translation helpful? Give feedback.
Answered by
robert-hh
Dec 10, 2023
Replies: 1 comment 3 replies
-
Pin 18 and 19 are reserved for Serial JTAG when the respective flag is set. That flag is set for ESP32_GENERIC_C3 and LOLIN_C3_MINI. To get rid of that, you would have to build your own firmware and remove the setting of |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
orztrickster
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Pin 18 and 19 are reserved for Serial JTAG when the respective flag is set. That flag is set for ESP32_GENERIC_C3 and LOLIN_C3_MINI. To get rid of that, you would have to build your own firmware and remove the setting of
CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG=y
inboards/ESP32_GENERIC_C3/sdkconfig.c3usb
.