update LiteScope
authorFlorent Kermarrec <florent@enjoy-digital.fr>
Wed, 18 Feb 2015 15:53:02 +0000 (16:53 +0100)
committerFlorent Kermarrec <florent@enjoy-digital.fr>
Wed, 18 Feb 2015 15:53:02 +0000 (16:53 +0100)
test/config.py
test/test_la.py

index 44d8fcee479971f3b15f0ee2bd4514db9c11290e..cdde349f0051d242ac61eae3f83247c1ec0622a7 100644 (file)
@@ -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
index 66867c9b8e73dd61b9d185dcc73254c1318373b2..f0344d6eec2d7f71673d3e5b467e884a8074055e 100644 (file)
@@ -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")