Search found 4 matches

by kurto1396
Wed Apr 19, 2023 6:14 am
Forum: Documentation
Topic: UART 3 Stop bits is undefined
Replies: 10
Views: 5726

Re: UART 3 Stop bits is undefined

Thank you! Sorry I missed your reply. I will look into the RMT. I am trying to use this to connect into a DMX data stream of a lighting console. The MTBF I think can be handled as an extra stop bit. https://www.theatreartlife.com/wp-content/uploads/fig4-1220x448.png https://www.theatreartlife.com/st...
by kurto1396
Wed Mar 29, 2023 6:45 pm
Forum: Documentation
Topic: UART 3 Stop bits is undefined
Replies: 10
Views: 5726

Re: UART 3 Stop bits is undefined

Hi @ESP_wangning, do you have any thoughts or suggestions on the best next step to figure this out?

Thank you!
by kurto1396
Wed Mar 22, 2023 4:20 am
Forum: Documentation
Topic: UART 3 Stop bits is undefined
Replies: 10
Views: 5726

Re: UART 3 Stop bits is undefined

Thank you, but this doesn't seem to align with the code. From your post UART_STOP_BIT_NUM, which is used to set the length of stop bits, has 4 valid values. 0: 1 bits; 1: 2 bits; 2: 1.5 bits; 3: 3 bits. From the code I see https://github.com/espressif/arduino-esp32/blob/master/tools/sdk/esp32s3/incl...
by kurto1396
Sun Mar 19, 2023 6:27 pm
Forum: Documentation
Topic: UART 3 Stop bits is undefined
Replies: 10
Views: 5726

UART 3 Stop bits is undefined

In https://www.espressif.com/sites/default/files/documentation/esp32-s3_technical_reference_manual_en.pdf UART_STOP_BIT_NUM This register is used to set the length of the stop bit; 1: 1 bit, 2: 1.5 bits. (R/W) Defines stop bits for the URAT to be 1,1.5, and 2 this also aligns with the arduino driver...