-
Notifications
You must be signed in to change notification settings - Fork 320
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6160 from jenshnielsen/minicircuits_refactor
Refactor drivers Minicircuits - R&S
- Loading branch information
Showing
34 changed files
with
1,425 additions
and
798 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
The Minicircuits, Oxford, QDev, QuantumDesign, Rigol and Rohde & Schwarz drivers shipping with QCoDeS | ||
have been updated to ensure all Parameters are set as static | ||
attributes that are documented and can be type checked. The docs for the same drivers have been | ||
updated to not document inherited members. This makes the documentation significantly more readable | ||
as it focuses on specific members for a given instrument. The documentation now also links superclasses. | ||
Please consult these for inherited members. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ MiniCircuits Drivers | |
|
||
.. automodule:: qcodes.instrument_drivers.Minicircuits | ||
:autosummary: | ||
:no-inherited-members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ Oxford Instruments Drivers | |
|
||
.. automodule:: qcodes.instrument_drivers.oxford | ||
:autosummary: | ||
:no-inherited-members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ QDev Drivers | |
|
||
.. automodule:: qcodes.instrument_drivers.QDev | ||
:autosummary: | ||
:no-inherited-members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ Rigol Drivers | |
|
||
.. automodule:: qcodes.instrument_drivers.rigol | ||
:autosummary: | ||
:no-inherited-members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,26 @@ | ||
from ._minicircuits_rc_sp4t import MiniCircuitsRCSP4T, MiniCircuitsRCSP4TChannel | ||
from ._minicircuits_rc_spdt import MiniCircuitsRCSPDT, MiniCircuitsRCSPDTChannel | ||
from ._minicircuits_rudat_13g_90 import MiniCircuitsRudat13G90Usb | ||
from ._minicircuits_rudat_13g_90 import ( | ||
MiniCircuitsRudat13G90Base, | ||
MiniCircuitsRudat13G90Usb, | ||
) | ||
from ._minicircuits_usb_spdt import ( | ||
MiniCircuitsUsbSPDT, | ||
MiniCircuitsUsbSPDTSwitchChannel, | ||
) | ||
from .Base_SPDT import MiniCircuitsSPDTBase, MiniCircuitsSPDTSwitchChannelBase | ||
from .USBHIDMixin import MiniCircuitsHIDMixin | ||
|
||
__all__ = [ | ||
"MiniCircuitsRCSP4T", | ||
"MiniCircuitsRCSP4TChannel", | ||
"MiniCircuitsRCSPDT", | ||
"MiniCircuitsRCSPDTChannel", | ||
"MiniCircuitsRudat13G90Usb", | ||
"MiniCircuitsRudat13G90Base", | ||
"MiniCircuitsHIDMixin", | ||
"MiniCircuitsUsbSPDT", | ||
"MiniCircuitsSPDTBase", | ||
"MiniCircuitsUsbSPDTSwitchChannel", | ||
"MiniCircuitsSPDTSwitchChannelBase", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.