From a11d0655467fdb713b49247badd89392ef948516 Mon Sep 17 00:00:00 2001 From: Robert Jordens Date: Mon, 27 Jul 2015 21:46:19 -0600 Subject: [PATCH] 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 --- mibuild/platforms/pipistrello.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mibuild/platforms/pipistrello.py b/mibuild/platforms/pipistrello.py index 08c148275..072bcf201 100644 --- a/mibuild/platforms/pipistrello.py +++ b/mibuild/platforms/pipistrello.py @@ -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"), ),