X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;ds=sidebyside;f=docs%2Fpinmux.mdwn;h=018a41fa23a63061cfd141098b8c3c9a3c01a218;hb=3f750930400c6eff3385647114b0748339014b62;hp=2ea80eecb1e79860fc66ad3715e3cc86d1ba13ae;hpb=bf5cbba43e3901d75f45480c9fe244672a37ad86;p=libreriscv.git 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