Search found 3 matches

by gschelotto
Sat Jan 20, 2024 10:26 am
Forum: ESP-IDF
Topic: ESP32-MINI-1-N4 UART1 issue
Replies: 6
Views: 1592

Re: ESP32-MINI-1-N4 UART1 issue

I've found the issue. I'm calling UART initialization two times...
thanks for your support!
gaston
by gschelotto
Fri Jan 19, 2024 7:22 am
Forum: ESP-IDF
Topic: ESP32-MINI-1-N4 UART1 issue
Replies: 6
Views: 1592

Re: ESP32-MINI-1-N4 UART1 issue

All right. Could you provide some example? If I remap using uart_set_pin function

ESP_ERROR_CHECK(uart_set_pin(UART_NUM_1, GPIO_NUM_4, GPIO_NUM_2, UART_PIN_NO_CHANGE, UART_PIN_NO_CHANGE));

I get the same error: UART driver already installed
by gschelotto
Thu Jan 18, 2024 7:36 pm
Forum: ESP-IDF
Topic: ESP32-MINI-1-N4 UART1 issue
Replies: 6
Views: 1592

ESP32-MINI-1-N4 UART1 issue

I want to use UART1 over GPIO9 and GPIO10 in a ESP32-MINI-1-N4 for a basic serial communication. Everything goes well about UART1 configuration, compilation and device flashing. When I run the idf monitor it says that UART1 is already used and the device resets continually. What's going on? Is the U...