pipistrello: fix cts/rts
authorRobert Jordens <jordens@gmail.com>
Tue, 28 Jul 2015 03:46:19 +0000 (21:46 -0600)
committerRobert Jordens <jordens@gmail.com>
Tue, 28 Jul 2015 03:46:24 +0000 (21:46 -0600)
* 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

index 08c1482753c4b4ab74b1c86979fbb7c7367f3e29..072bcf2011d502fd6f92409db68254388318b21c 100644 (file)
@@ -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"),
     ),