From 6455971f383d79b5b26ac05051e6730d04c509f6 Mon Sep 17 00:00:00 2001 From: Grey <1014792665@qq.com> Date: Fri, 25 Mar 2022 14:24:35 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8B=98=E8=AF=AFuart=E6=96=87=E6=A1=A3?= =?UTF-8?q?=E4=B8=AD=E4=B8=80=E5=A4=84=E9=94=99=E8=AF=AF.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/Advanced_development/en/QuecPythonBus/uart.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Advanced_development/en/QuecPythonBus/uart.md b/docs/Advanced_development/en/QuecPythonBus/uart.md index 5875997..de0ccf9 100644 --- a/docs/Advanced_development/en/QuecPythonBus/uart.md +++ b/docs/Advanced_development/en/QuecPythonBus/uart.md @@ -83,8 +83,8 @@ if __name__ == "__main__": uart_x = UART(UART.UART2, 115200, 8, 0, 1, 0) usbcdc = UART(UART.UART3, 115200, 8, 0, 1, 0) # It is unvalid to set the baudrate, while in communication, any baudrate is available - uart_x.write("Grey_测试") - usbcdc.write("Grey_测试") + uart_x.write("Grey_test") + usbcdc.write("Grey_test") _thread.start_new_thread(uart_x_read, ()) # Create a thread to listen for receiving UART messages _thread.start_new_thread(usbcdc_read, ()) # Create a thread to listen for receiving CDC messages -- Gitee