From 9cd1c1cbd5c4be1d0a68c65254ac30890074419b Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Fri, 23 Sep 2022 10:07:17 +0200 Subject: [PATCH] targets/digilent_arty: Switch with_buttons to False by default (To fix #426). --- litex_boards/targets/digilent_arty.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex_boards/targets/digilent_arty.py b/litex_boards/targets/digilent_arty.py index 555aa53..eb9c76e 100755 --- a/litex_boards/targets/digilent_arty.py +++ b/litex_boards/targets/digilent_arty.py @@ -78,7 +78,7 @@ class BaseSoC(SoCCore): with_led_chaser = True, with_jtagbone = True, with_spi_flash = False, - with_buttons = True, + with_buttons = False, with_pmod_gpio = False, **kwargs): platform = digilent_arty.Platform(variant=variant, toolchain=toolchain)