Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions exopy_qcircuits/instruments/drivers/ZI/UHFLI.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from __future__ import (division, unicode_literals, print_function,
absolute_import)
from ..driver_tools import (InstrIOError, instrument_property,
from exopy_hqc_legacy.instruments.drivers.driver_tools import (InstrIOError, instrument_property,
secure_communication)
import sys
from subprocess import call
Expand Down Expand Up @@ -483,4 +483,4 @@ def get_DAQmodule(self, DAM, dimensions, signalID,signal_paths):

# Stub class to remove make exopy happy
class UHFLI:
pass
pass
2 changes: 1 addition & 1 deletion exopy_qcircuits/instruments/drivers/ZI_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import sys, os


from .driver_tools import BaseInstrument, InstrIOError
from exopy_hqc_legacy.instruments.drivers.driver_tools import BaseInstrument, InstrIOError


class ZIInstrument(BaseInstrument):
Expand Down
2 changes: 1 addition & 1 deletion exopy_qcircuits/instruments/drivers/dll/alazar935x.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

logger = logging.getLogger(__name__)

from ..dll_tools import DllInstrument
from exopy_hqc_legacy.instruments.drivers.dll_tools import DllInstrument

try:
from . import atsapi as ats
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
import glob
import re

from ..dll_tools import DllInstrument
from exopy_hqc_legacy.instruments.drivers.dll_tools import DllInstrument
from . import atsapi as ats


Expand Down Expand Up @@ -417,4 +417,4 @@ def get_demod(self, startaftertrig, duration, recordsPerCapture,

mon_fichier.close()

return answerDemod, answerTrace
return answerDemod, answerTrace
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
import math
import time

from ..dll_tools import DllInstrument
from exopy_hqc_legacy.instruments.drivers.dll_tools import DllInstrument
from . import atsapi as ats


Expand Down Expand Up @@ -467,4 +467,4 @@ def get_demod(self, startaftertrig, duration, recordsPerCapture,
else:
answerTrace[Tracestring][:,:samplesPerDemod[i]] = data[i]

return answerDemod, answerTrace
return answerDemod, answerTrace
7 changes: 4 additions & 3 deletions exopy_qcircuits/instruments/drivers/dll/labbrick.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@
To read the Dll of the LabBrick correctly, Visual C++ Studio 2013 is needed.

"""
from ..driver_tools import (InstrIOError, secure_communication,
instrument_property)
from ..dll_tools import DllLibrary, DllInstrument
from exopy_hqc_legacy.instruments.drivers.driver_tools import (InstrIOError,
secure_communication,
instrument_property)
from exopy_hqc_legacy.instruments.drivers.dll_tools import DllLibrary, DllInstrument
from inspect import cleandoc
import ctypes

Expand Down
91 changes: 0 additions & 91 deletions exopy_qcircuits/instruments/drivers/dll_tools.py

This file was deleted.

Loading