From: Florent Kermarrec Date: Wed, 18 Feb 2015 15:53:02 +0000 (+0100) Subject: update LiteScope X-Git-Tag: 24jan2021_ls180~2572^2~2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9326985e057cc1347db80f14b78204e9fcdd9d95;p=litex.git update LiteScope --- diff --git a/test/config.py b/test/config.py index 44d8fcee..cdde349f 100644 --- a/test/config.py +++ b/test/config.py @@ -1,4 +1,4 @@ -from litescope.host.driver import LiteScopeUART2WBDriver +from litescope.host.driver.uart import LiteScopeUARTDriver csr_csv_file = "./csr.csv" busword = 32 @@ -6,4 +6,4 @@ debug_wb = False com = 2 baud = 921600 -wb = LiteScopeUART2WBDriver(com, baud, csr_csv_file, busword, debug_wb) \ No newline at end of file +wb = LiteScopeUARTDriver(com, baud, csr_csv_file, busword, debug_wb) \ No newline at end of file diff --git a/test/test_la.py b/test/test_la.py index 66867c9b..f0344d6e 100644 --- a/test/test_la.py +++ b/test/test_la.py @@ -2,7 +2,7 @@ import sys from config import * from tools import * from bist import * -from litescope.host.driver import LiteScopeLADriver +from litescope.host.driver.la import LiteScopeLADriver la = LiteScopeLADriver(wb.regs, "la") identify = LiteSATABISTIdentifyDriver(wb.regs, "sata_bist")