Skip to content

Commit

Permalink
targets/uartbone: Update with LiteX change.
Browse files Browse the repository at this point in the history
  • Loading branch information
enjoy-digital committed Jul 20, 2023
1 parent 72a9510 commit ce12166
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def __init__(self, *, sys_clk_freq=100e6, iodelay_clk_freq=200e6,

# UartBone ---------------------------------------------------------------------------------
if with_uartbone:
self.add_uartbone("serial", baudrate=1e6)
self.add_uartbone(baudrate=1e6)

# Leds -------------------------------------------------------------------------------------
if with_led_chaser:
Expand Down
2 changes: 1 addition & 1 deletion litex_boards/targets/antmicro_lpddr4_test_board.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def __init__(self, *, sys_clk_freq=50e6, iodelay_clk_freq=200e6,

# UartBone ---------------------------------------------------------------------------------
if with_uartbone:
self.add_uartbone("serial", baudrate=1e6)
self.add_uartbone(baudrate=1e6)

# Leds -------------------------------------------------------------------------------------
if with_led_chaser:
Expand Down
2 changes: 1 addition & 1 deletion litex_boards/targets/colorlight_5a_75x.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def __init__(self, board, revision, sys_clk_freq=60e6, toolchain="trellis",
if with_uartbone:
if board != "i5a-907":
raise ValueError("uartbone only supported on i5a-907")
self.add_uartbone(name="uartbone")
self.add_uartbone(uart_name="uartbone")

# SPI Flash --------------------------------------------------------------------------------
if with_spi_flash:
Expand Down
2 changes: 1 addition & 1 deletion litex_boards/targets/lattice_ice40up5k_evn.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def __init__(self, bios_flash_offset, sys_clk_freq=12e6,
# Add a UARTBone bridge --------------------------------------------------------------------
debug_uart = False
if debug_uart:
self.add_uartbone(name="serial")
self.add_uartbone()

# Flash --------------------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion litex_boards/targets/mnt_rkx7.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def __init__(self, sys_clk_freq=100e6,
# LiteScope Analyzer -----------------------------------------------------------------------
if with_analyzer:
from litescope import LiteScopeAnalyzer
self.add_uartbone(name="debug_serial")
self.add_uartbone(uart_name="debug_serial")
analyzer_signals = [
ulpi_data.din,
utmi.linestate,
Expand Down
2 changes: 1 addition & 1 deletion litex_boards/targets/terasic_deca.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def __init__(self, sys_clk_freq=50e6,

# UARTbone ---------------------------------------------------------------------------------
if with_uartbone:
self.add_uartbone(name=real_uart_name, baudrate=kwargs["uart_baudrate"])
self.add_uartbone(uart_name=real_uart_name, baudrate=kwargs["uart_baudrate"])

# JTAGbone ---------------------------------------------------------------------------------
if with_jtagbone:
Expand Down

0 comments on commit ce12166

Please sign in to comment.