analyzer: move common to artiq.protocols

migen was still pulled in through rtio.__init__.py
This commit is contained in:
Robert Jördens 2016-01-29 20:26:48 -07:00
parent 17ac64a65e
commit 68891493a3
3 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ from itertools import count
import struct
import logging
from artiq.gateware.rtio.analyzer_common import MessageType, ExceptionType
from artiq.protocols.analyzer import MessageType, ExceptionType
logger = logging.getLogger(__name__)

View File

@ -3,7 +3,7 @@ from migen.genlib.record import Record, layout_len
from misoc.interconnect.csr import *
from misoc.interconnect import stream
from artiq.gateware.rtio.analyzer_common import MessageType, ExceptionType
from artiq.protocols.analyzer import MessageType, ExceptionType
__all__ = ["Analyzer"]