diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 22deb92a3..eb9bdbb6e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: - name: Install Python dependencies run: | - python3 -m pip install setuptools requests pexpect meson + python3 -m pip install setuptools requests pexpect meson pytest # Install (n)Migen / LiteX / Cores - name: Install LiteX @@ -38,4 +38,4 @@ jobs: # Test - name: Run Tests - run: python3 setup.py test + run: python3 -m pytest -v diff --git a/litex_boards/platforms/digilent_arty.py b/litex_boards/platforms/digilent_arty.py index ec99c8844..72626f254 100644 --- a/litex_boards/platforms/digilent_arty.py +++ b/litex_boards/platforms/digilent_arty.py @@ -299,11 +299,10 @@ def sdcard_pmod_io(pmod): IOStandard("LVCMOS33"), ), ("sdcard", 0, - Subsignal("data", Pins(f"{pmod}:2 {pmod}:4 {pmod}:5 {pmod}:0"), Misc("PULLUP True")), - Subsignal("cmd", Pins(f"{pmod}:1"), Misc("PULLUP True")), - Subsignal("clk", Pins(f"{pmod}:3")), + Subsignal("data", Pins(f"{pmod}:2 {pmod}:4 {pmod}:5 {pmod}:0"), Misc("SLEW=FAST"), Misc("PULLUP True")), + Subsignal("cmd", Pins(f"{pmod}:1"), Misc("SLEW=FAST"), Misc("PULLUP True")), + Subsignal("clk", Pins(f"{pmod}:3"), Misc("SLEW=FAST")), Subsignal("cd", Pins(f"{pmod}:6")), - Misc("SLEW=FAST"), #NOTE: this and all Misc() is not supported by yosys+nextprn toolchain IOStandard("LVCMOS33"), ), ]