Skip to content

Commit

Permalink
targets/c10lprefkit: fix default sys-clk-freq.
Browse files Browse the repository at this point in the history
  • Loading branch information
enjoy-digital committed Jan 12, 2021
1 parent 0a7443d commit 9ff90eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion litex_boards/targets/c10lprefkit.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def main():
parser = argparse.ArgumentParser(description="LiteX SoC on C10 LP RefKit")
parser.add_argument("--build", action="store_true", help="Build bitstream")
parser.add_argument("--load", action="store_true", help="Load bitstream")
parser.add_argument("--sys-clk-freq", default=500e6, help="System clock frequency (default: 50MHz)")
parser.add_argument("--sys-clk-freq", default=50e6, help="System clock frequency (default: 50MHz)")
parser.add_argument("--with-ethernet", action="store_true", help="Enable Ethernet support")
builder_args(parser)
soc_sdram_args(parser)
Expand Down

0 comments on commit 9ff90eb

Please sign in to comment.