forked from microsoft/Qcodes
-
Notifications
You must be signed in to change notification settings - Fork 1
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 #3 from nulinspiratie/feature/signadyne_driver_cla…
…ssification Feature/signadyne driver classification
- Loading branch information
Showing
8 changed files
with
349 additions
and
251 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,19 @@ | ||
# from qcodes import validators as validator | ||
# from functools import partial | ||
# | ||
# from .SD_common.SD_Module import * | ||
from .SD_common.SD_AWG import * | ||
|
||
|
||
class Keysight_M3201A(SD_AWG): | ||
""" | ||
This is the qcodes driver for the Keysight M3201A AWG PXIe card | ||
Args: | ||
name (str): name for this instrument, passed to the base instrument | ||
chassis (int): chassis number where the device is located | ||
slot (int): slot number where the device is plugged in | ||
""" | ||
|
||
def __init__(self, name, chassis=1, slot=7, **kwargs): | ||
super().__init__(name, chassis, slot, channels=4, triggers=8, **kwargs) |
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
Oops, something went wrong.