From 0b887f6872781c0b1edeb54ef21d57884e7c1406 Mon Sep 17 00:00:00 2001 From: Andrew Scheller Date: Fri, 26 Feb 2021 18:21:40 +0000 Subject: [PATCH] Typos in UART example --- uart/loopback/README.adoc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/uart/loopback/README.adoc b/uart/loopback/README.adoc index 4f1474c..38a688b 100644 --- a/uart/loopback/README.adoc +++ b/uart/loopback/README.adoc @@ -8,14 +8,14 @@ Send data from the UART1 port to the UART0 port. Other things to try; uart0 = UART(0) ---- -Which will opens a UART connection at the default baudrate of 115200, and +which will open a UART connection at the default baudrate of 115200, and [source,python] ---- -uart0.readline() # <2> +uart0.readline() ---- -which will read until the CR (\r) and NL (\n) characters then returns the line. +which will read until the CR (\r) and NL (\n) characters, then return the line. == Wiring information @@ -23,7 +23,7 @@ See <> for wiring instructions. [[uart-wiring-diagram]] [pdfwidth=75%] -.Wiring two of the Pico's ports together. Be sure to wire UART0n TX to UART1 RX and UART0 RX to UART1 TX. +.Wiring two of the Pico's ports together. Be sure to wire UART0 TX to UART1 RX and UART0 RX to UART1 TX. image::pico_uart_example.png[] == List of Files @@ -35,10 +35,10 @@ uart.py:: The example code. == Bill of Materials .A list of materials required for the example -[[ring-bom-table]] +[[uart-bom-table]] [cols=3] |=== | *Item* | *Quantity* | Details | Breadboard | 1 | generic part | Raspberry Pi Pico | 1 | http://raspberrypi.org/ -|=== \ No newline at end of file +|===