From 3f750930400c6eff3385647114b0748339014b62 Mon Sep 17 00:00:00 2001 From: Andrey Miroshnikov Date: Sat, 8 Jan 2022 21:49:14 +0000 Subject: [PATCH] JTAG UART example correction --- docs/pinmux.mdwn | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/pinmux.mdwn b/docs/pinmux.mdwn index 2ea80eecb..018a41fa2 100644 --- 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 -- 2.30.2