projects
/
libreriscv.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bf5cbba
)
JTAG UART example correction
author
Andrey Miroshnikov
<andrey@technepisteme.xyz>
Sat, 8 Jan 2022 21:49:14 +0000
(21:49 +0000)
committer
Andrey Miroshnikov
<andrey@technepisteme.xyz>
Sat, 8 Jan 2022 21:49:14 +0000
(21:49 +0000)
docs/pinmux.mdwn
patch
|
blob
|
history
diff --git
a/docs/pinmux.mdwn
b/docs/pinmux.mdwn
index 2ea80eecb1e79860fc66ad3715e3cc86d1ba13ae..018a41fa23a63061cfd141098b8c3c9a3c01a218 100644
(file)
--- a/
docs/pinmux.mdwn
+++ b/
docs/pinmux.mdwn
@@
-292,8
+292,8
@@
the Blinky example, wire up a JTAG instance:
m.d.comb += intermediary.eq(urx.core.i) # pass rx to tx
# wire up the IO Pads (in right direction) to Platform
- m.d.comb += uart.
tx.eq(utx.pad.i) # transmit JTAG to
pad
- m.d.comb += utx.pad.o.eq(uart.
rx) # pass rx to JTAG
+ m.d.comb += uart.
rx.eq(utx.pad.i) # receive rx from JTAG input
pad
+ m.d.comb += utx.pad.o.eq(uart.
tx) # transmit tx to JTAG output pad
return m
Compared to the non-scan-capable version, which connected UART