mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
pipistrello: fix cts/rts
* use the same perspective as for tx/rx (flipped w.r.t. the ftdi chip) * add pullups in case target or host attempt to use handshaking
This commit is contained in:
parent
b7784fcbd7
commit
a11d065546
1 changed files with 2 additions and 2 deletions
|
@ -16,8 +16,8 @@ _io = [
|
|||
("serial", 0,
|
||||
Subsignal("tx", Pins("A10")),
|
||||
Subsignal("rx", Pins("A11"), Misc("PULLUP")),
|
||||
Subsignal("rts", Pins("C10")),
|
||||
Subsignal("cts", Pins("A9"), Misc("PULLUP")),
|
||||
Subsignal("cts", Pins("C10"), Misc("PULLUP")),
|
||||
Subsignal("rts", Pins("A9"), Misc("PULLUP")),
|
||||
IOStandard("LVTTL"),
|
||||
),
|
||||
|
||||
|
|
Loading…
Reference in a new issue