Skip to content

Commit c53509b

Browse files
author
Alasdair Allan
committed
Moved to loopback directory
1 parent ede42d5 commit c53509b

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

uart/README.adoc renamed to uart/loopback/README.adoc

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,22 @@ See <<uart-wiring-diagram>> for wiring instructions.
1212
.Wiring two of the Pico's ports together. Be sure to wire UART0n TX to UART1 RX and UART0 RX to UART1 TX.
1313
image::pico_uart_example.png[]
1414

15+
== List of Files
16+
17+
A list of files with descriptions of their function;
18+
19+
uart.py:: The example code.
20+
1521
== Other things to try
1622

1723
[source,python]
1824
----
19-
uart0 = UART(0) // <1>
20-
uart0.readline() // <2>
25+
uart0 = UART(0) # <1>
26+
uart0.readline() # <2>
2127
----
2228
<1> opens a UART connection at the default baudrate of 115,200
2329
<2> reads until the CR (\r) and NL (\n) characters then returns the line
2430

25-
== List of Files
26-
27-
A list of files with descriptions of their function;
28-
29-
uart.py:: The example code.
30-
3131
== Bill of Materials
3232

3333
.A list of materials required for the example
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)