Skip to content

Commit 172215e

Browse files
committed
providers/board_ulx3s: fix uart pin directions.
1 parent 1161e9e commit 172215e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chipflow_lib/providers/board_ulx3s.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def __init__(self):
7979

8080
def elaborate(self, platform):
8181
m = Module()
82-
uart_pins = platform.request("uart", 0, dir={"rx": "-", "tx": "-"})
82+
uart_pins = platform.request("uart", 0, dir=dict(rx="-", tx="-", rts="-", dtr="-"))
8383
m.submodules.uart_rx = uart_rx = io.Buffer("i", uart_pins.rx)
8484
m.submodules.uart_tx = uart_tx = io.Buffer("o", uart_pins.tx)
8585
m.d.comb += [

0 commit comments

Comments
 (0)