digilent_pynq_z1: Do minor cosmetic cleanups.

This commit is contained in:
Florent Kermarrec 2022-01-14 09:39:42 +01:00
parent 45cfe2be6b
commit 296c99f065
2 changed files with 54 additions and 55 deletions

View File

@ -73,8 +73,7 @@ _io = [
("ck_sda", 0, Pins("P15"), IOStandard("LVCMOS33")),
# Crypto SDA
("crypto_sda", 0, Pins("J15"), IOStandard("LVCMOS33"))
("crypto_sda", 0, Pins("J15"), IOStandard("LVCMOS33")),
]
_ps7_io = [

8
litex_boards/targets/digilent_pynq_z1.py Normal file → Executable file
View File

@ -104,10 +104,10 @@ class BaseSoC(SoCCore):
def main():
parser = argparse.ArgumentParser(description="LiteX SoC on PYNQ Z1")
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=125e6, help="System clock frequency (default: 125MHz)")
parser.add_argument("--with-video-terminal", action="store_true", help="Enable Video Terminal (HDMI)")
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=125e6, help="System clock frequency.")
parser.add_argument("--with-video-terminal", action="store_true", help="Enable Video Terminal (HDMI).")
builder_args(parser)
soc_core_args(parser)