Search found 2 matches

by WarsawMaker
Thu Jan 25, 2024 8:17 am
Forum: ESP-IDF
Topic: LP_UART_NUM_0 with ESP32-C6 and ESP-IDF v5.2-Beta2
Replies: 1
Views: 1128

Re: LP_UART_NUM_0 with ESP32-C6 and ESP-IDF v5.2-Beta2

Hello, I already manage how to use LP_UART_NUM_0 with ESP32-C6 main CPU. Like normal UART 8-) 1. PINS for this UART are fixed TXD_PIN (GPIO_NUM_5) RXD_PIN (GPIO_NUM_4) RTS_PIN (GPIO_NUM_2) CTS_PIN (GPIO_NUM_3) 2. uart_config_t is slightly different const uart_config_t uart_config = { .baud_rate = 96...
by WarsawMaker
Wed Jan 24, 2024 3:12 pm
Forum: ESP-IDF
Topic: LP_UART_NUM_0 with ESP32-C6 and ESP-IDF v5.2-Beta2
Replies: 1
Views: 1128

LP_UART_NUM_0 with ESP32-C6 and ESP-IDF v5.2-Beta2

Hello, According documentation ESP32-C6 have 3 UARTs. Two FULL (UART_NUM_0, UART_NUM_1) and one LP UART (LP_UART_NUM_0) I'm using ESP-IDF v5.2-Beta2 and ESP32-C6 dev board. I'm able to use LP_UART_NUM_0 with ULP using example from: https://github.com/espressif/esp-idf/tree/master/examples/system/ulp...