drtio: fix imports

This commit is contained in:
Sebastien Bourdeauducq 2018-09-09 14:11:21 +08:00
parent 87e0384e97
commit df61b85988
2 changed files with 2 additions and 1 deletions

View File

@ -11,7 +11,7 @@ from artiq.gateware.rtio.input_collector import *
from artiq.gateware.drtio import (link_layer,
rt_packet_satellite, rt_errors_satellite,
rt_packet_master, rt_controller_master,
rt_controller_repeater)
rt_packet_repeater, rt_controller_repeater)
from artiq.gateware.drtio.rx_synchronizer import GenericRXSynchronizer

View File

@ -3,6 +3,7 @@ from migen import *
from misoc.interconnect.csr import *
from artiq.gateware.rtio.cdc import BlindTransfer
from artiq.gateware.drtio.cdc import CrossDomainRequest
class RTController(Module, AutoCSR):