qmtech_5cefa2: make serial pins consistent with other boards

This commit is contained in:
Hans Baier 2022-03-24 18:52:28 +07:00
parent c081177d77
commit e445c9ec71
1 changed files with 2 additions and 2 deletions

View File

@ -124,8 +124,8 @@ class Platform(AlteraPlatform):
core_resources = [
("user_led", 0, Pins("D17"), IOStandard("3.3-V LVTTL")),
("serial", 0,
Subsignal("tx", Pins("J3:8"), IOStandard("3.3-V LVTTL")),
Subsignal("rx", Pins("J3:7"), IOStandard("3.3-V LVTTL"))
Subsignal("tx", Pins("J3:7"), IOStandard("3.3-V LVTTL")),
Subsignal("rx", Pins("J3:8"), IOStandard("3.3-V LVTTL"))
),
]