From e445c9ec71304730fa99e29a4a7cb8fb7b48ca83 Mon Sep 17 00:00:00 2001 From: Hans Baier Date: Thu, 24 Mar 2022 18:52:28 +0700 Subject: [PATCH] qmtech_5cefa2: make serial pins consistent with other boards --- litex_boards/platforms/qmtech_5cefa2.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/litex_boards/platforms/qmtech_5cefa2.py b/litex_boards/platforms/qmtech_5cefa2.py index ec1749e..04a12b9 100644 --- a/litex_boards/platforms/qmtech_5cefa2.py +++ b/litex_boards/platforms/qmtech_5cefa2.py @@ -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")) ), ]