Skip to content

Commit a11d065

Browse files
committedJul 28, 2015
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
1 parent b7784fc commit a11d065

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

Diff for: ‎mibuild/platforms/pipistrello.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
("serial", 0,
1717
Subsignal("tx", Pins("A10")),
1818
Subsignal("rx", Pins("A11"), Misc("PULLUP")),
19-
Subsignal("rts", Pins("C10")),
20-
Subsignal("cts", Pins("A9"), Misc("PULLUP")),
19+
Subsignal("cts", Pins("C10"), Misc("PULLUP")),
20+
Subsignal("rts", Pins("A9"), Misc("PULLUP")),
2121
IOStandard("LVTTL"),
2222
),
2323

0 commit comments

Comments
 (0)
Please sign in to comment.