Skip to content

Commit

Permalink
Merge pull request #451 from mithro/nexys_video-fix
Browse files Browse the repository at this point in the history
targets/nexys_video: Fix for upstream change in UART interface
  • Loading branch information
mithro committed Sep 1, 2018
2 parents a2188ef + e19174c commit 05ff8e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion targets/nexys_video/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def __init__(self, platform, spiflash="spiflash_1x", **kwargs):
self.add_wb_master(self.bridge.wishbone)

self.submodules.uart_phy = RS232PHY(platform.request("serial"), self.clk_freq, 115200)
self.submodules.uart_multiplexer = UARTMultiplexer(uart_interfaces, self.uart_phy)
self.submodules.uart_multiplexer = RS232PHYMultiplexer(uart_interfaces, self.uart_phy)
self.comb += self.uart_multiplexer.sel.eq(platform.request("user_sw", 0))

# Basic peripherals
Expand Down

0 comments on commit 05ff8e3

Please sign in to comment.