coredevice: only import common RTIO exceptions

This commit is contained in:
Sebastien Bourdeauducq 2016-03-19 12:11:47 +08:00
parent 8f67062543
commit d0af58d122
1 changed files with 2 additions and 3 deletions

View File

@ -1,12 +1,11 @@
from artiq.coredevice import exceptions, dds, spi
from artiq.coredevice.exceptions import (RTIOUnderflow, RTIOSequenceError,
RTIOCollision, RTIOOverflow, RTIOBusy,
DDSBatchError, CacheError)
RTIOCollision, RTIOOverflow, RTIOBusy)
from artiq.coredevice.dds import (PHASE_MODE_CONTINUOUS, PHASE_MODE_ABSOLUTE,
PHASE_MODE_TRACKING)
__all__ = []
__all__ += ["RTIOUnderflow", "RTIOSequenceError", "RTIOCollision",
"RTIOOverflow", "RTIOBusy", "DDSBatchError", "CacheError"]
"RTIOOverflow", "RTIOBusy"]
__all__ += ["PHASE_MODE_CONTINUOUS", "PHASE_MODE_ABSOLUTE",
"PHASE_MODE_TRACKING"]