mirror of
https://github.com/litex-hub/litex-boards.git
synced 2025-01-03 03:43:36 -05:00
zedboard: disable soc uart for all variants (zynq does not need it, for soft cpus there are no pins)
This commit is contained in:
parent
53ce00b3fd
commit
bc3c42ab5f
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,6 @@ class BaseSoC(SoCCore):
|
||||||
|
|
||||||
if kwargs.get("cpu_type", None) == "zynq7000":
|
if kwargs.get("cpu_type", None) == "zynq7000":
|
||||||
kwargs['integrated_sram_size'] = 0
|
kwargs['integrated_sram_size'] = 0
|
||||||
kwargs['with_uart'] = False
|
|
||||||
|
|
||||||
# SoCCore ----------------------------------------------------------------------------------
|
# SoCCore ----------------------------------------------------------------------------------
|
||||||
SoCCore.__init__(self, platform, sys_clk_freq,
|
SoCCore.__init__(self, platform, sys_clk_freq,
|
||||||
|
@ -159,6 +158,7 @@ def main():
|
||||||
soc_core_args(parser)
|
soc_core_args(parser)
|
||||||
vivado_build_args(parser)
|
vivado_build_args(parser)
|
||||||
parser.set_defaults(cpu_type="zynq7000")
|
parser.set_defaults(cpu_type="zynq7000")
|
||||||
|
parser.set_defaults(no_uart=True)
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
soc = BaseSoC(
|
soc = BaseSoC(
|
||||||
|
|
Loading…
Reference in a new issue