mirror of
https://github.com/litex-hub/litex-boards.git
synced 2025-01-03 03:43:36 -05:00
muselabe_icesugar/SPIFlash: Disable Master (to avoid wasting resources on this small FPGA).
This commit is contained in:
parent
218e830fbf
commit
fdf94b95c9
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ class BaseSoC(SoCCore):
|
|||
# SPI Flash --------------------------------------------------------------------------------
|
||||
from litespi.modules import W25Q64FV
|
||||
from litespi.opcodes import SpiNorFlashOpCodes as Codes
|
||||
self.add_spi_flash(mode="1x", module=W25Q64FV(Codes.READ_1_1_1))
|
||||
self.add_spi_flash(mode="1x", module=W25Q64FV(Codes.READ_1_1_1), with_master=False)
|
||||
|
||||
# Add ROM linker region --------------------------------------------------------------------
|
||||
self.bus.add_region("rom", SoCRegion(
|
||||
|
|
Loading…
Reference in a new issue