mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
platforms/de0nano: swap serial tx/rx to ease use of cheap FT232 based cables.
This commit is contained in:
parent
08e4dc02ec
commit
56e1528455
1 changed files with 4 additions and 2 deletions
|
@ -28,8 +28,10 @@ _io = [
|
||||||
("sw", 3, Pins("M15"), IOStandard("3.3-V LVTTL")),
|
("sw", 3, Pins("M15"), IOStandard("3.3-V LVTTL")),
|
||||||
|
|
||||||
("serial", 0,
|
("serial", 0,
|
||||||
Subsignal("tx", Pins("B4"), IOStandard("3.3-V LVTTL")), # gpio_05
|
# Compatible with cheap FT232 based cables (ex: Gaoominy 6Pin Ftdi Ft232Rl Ft232)
|
||||||
Subsignal("rx", Pins("B5"), IOStandard("3.3-V LVTTL")) # gpio_07
|
# GND on JP1 Pin 12.
|
||||||
|
Subsignal("tx", Pins("B5"), IOStandard("3.3-V LVTTL")), # GPIO_07 (JP1 Pin 10)
|
||||||
|
Subsignal("rx", Pins("B4"), IOStandard("3.3-V LVTTL")) # GPIO_05 (JP1 Pin 8)
|
||||||
),
|
),
|
||||||
|
|
||||||
("sdram_clock", 0, Pins("R4"), IOStandard("3.3-V LVTTL")),
|
("sdram_clock", 0, Pins("R4"), IOStandard("3.3-V LVTTL")),
|
||||||
|
|
Loading…
Reference in a new issue