Add debug UART port extension

This commit is contained in:
Aadi Desai 2023-05-11 01:46:26 +01:00
parent bb1e27f787
commit bda6a825de
No known key found for this signature in database

View file

@ -223,6 +223,11 @@ class BaseSoC(SoCCore):
Subsignal("mc", Pins("R17")), # IO_SCK
Subsignal("md", Pins("N16")), # IO_MOSI
IOStandard("LVCMOS33")
),
("debug_uart", 0,
Subsignal("tx", Pins("B8")), # IO_10
Subsignal("rx", Pins("C8")), # IO_9
IOStandard("LVCMOS33")
)
])