From 2fc04386d382004dc7ec801820ed15dfeec8e91d Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Mon, 2 May 2022 13:34:19 +0200 Subject: [PATCH] examples/arty: Use full import. --- examples/arty.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/arty.py b/examples/arty.py index 1f7cda7..cf40b6c 100755 --- a/examples/arty.py +++ b/examples/arty.py @@ -21,8 +21,8 @@ import argparse from migen import * -from litex_boards.platforms import arty -from litex_boards.targets.arty import * +from litex_boards.platforms import digilent_arty +from litex_boards.targets.digilent_arty import * from litescope import LiteScopeAnalyzer @@ -30,7 +30,7 @@ from litescope import LiteScopeAnalyzer class LiteScopeSoC(BaseSoC): def __init__(self): - platform = arty.Platform() + platform = digilent_arty.Platform() # BaseSoC ---------------------------------------------------------------------------------- BaseSoC.__init__(self,