forked from M-Labs/artiq
analyzer: move common to artiq.protocols
migen was still pulled in through rtio.__init__.py
This commit is contained in:
parent
17ac64a65e
commit
68891493a3
|
@ -4,7 +4,7 @@ from itertools import count
|
||||||
import struct
|
import struct
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
from artiq.gateware.rtio.analyzer_common import MessageType, ExceptionType
|
from artiq.protocols.analyzer import MessageType, ExceptionType
|
||||||
|
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
|
@ -3,7 +3,7 @@ from migen.genlib.record import Record, layout_len
|
||||||
from misoc.interconnect.csr import *
|
from misoc.interconnect.csr import *
|
||||||
from misoc.interconnect import stream
|
from misoc.interconnect import stream
|
||||||
|
|
||||||
from artiq.gateware.rtio.analyzer_common import MessageType, ExceptionType
|
from artiq.protocols.analyzer import MessageType, ExceptionType
|
||||||
|
|
||||||
|
|
||||||
__all__ = ["Analyzer"]
|
__all__ = ["Analyzer"]
|
||||||
|
|
Loading…
Reference in New Issue