You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 10, 2022. It is now read-only.
Hi
Now I am using M5 model A for UART, how to set TXD/RXD/RTS/CTS ?? I set it as below:
#define ECHO_TEST_TXD (28)
#define ECHO_TEST_RXD (14)
#define ECHO_TEST_RTS (12)
#define ECHO_TEST_CTS (13)
But it not worked very well
The text was updated successfully, but these errors were encountered:
I see, I used "make monitor". When I open a serial tool, I set the "baud_rate = 921600", it was wrong, it's not as below
uart_write_bytes(UART_NUM_1, (char *)tx_buffer, 7);
uart_write_bytes(UART_NUM_1, (char *)fb->buf, fb->len);
When I set "baud_rate = 115200", I can see the print info, but not serial.Right?
I set the pin as below:
uart_set_pin(UART_NUM_0, 13, 12, UART_PIN_NO_CHANGE, UART_PIN_NO_CHANGE);
It can send the data from serial, but it can't read the data from serial.
emmm...
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi
Now I am using M5 model A for UART, how to set TXD/RXD/RTS/CTS ?? I set it as below:
#define ECHO_TEST_TXD (28)
#define ECHO_TEST_RXD (14)
#define ECHO_TEST_RTS (12)
#define ECHO_TEST_CTS (13)
But it not worked very well
The text was updated successfully, but these errors were encountered: