targets/digilent_arty: Switch with_buttons to False by default (To fix #426).

This commit is contained in:
Florent Kermarrec 2022-09-23 10:07:17 +02:00
parent dcb9e2b763
commit 9cd1c1cbd5
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ class BaseSoC(SoCCore):
with_led_chaser = True, with_led_chaser = True,
with_jtagbone = True, with_jtagbone = True,
with_spi_flash = False, with_spi_flash = False,
with_buttons = True, with_buttons = False,
with_pmod_gpio = False, with_pmod_gpio = False,
**kwargs): **kwargs):
platform = digilent_arty.Platform(variant=variant, toolchain=toolchain) platform = digilent_arty.Platform(variant=variant, toolchain=toolchain)