-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dressler Cesar 1312 RF generator (#426)
Here's support for the Dressler Cesar 1312 RF generator. An older instrument, but works great via RS232. The most important commands are implemented and especially the package sending/receiving are working very well. Functionality that is covered: Select control mode Select regulation mode Set/get the output power Read back reflected power Turn on/off RF and read status Test coverage included, added to docs.
- Loading branch information
1 parent
c406808
commit 4441d8e
Showing
7 changed files
with
908 additions
and
0 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,12 @@ | ||
.. currentmodule:: instruments.dressler | ||
|
||
======== | ||
Dressler | ||
======== | ||
|
||
:class:`Cesar1312` RF Generator | ||
=============================== | ||
|
||
.. autoclass:: Cesar1312 | ||
:members: | ||
:undoc-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 |
---|---|---|
|
@@ -14,6 +14,7 @@ Contents: | |
instrument | ||
generic_scpi | ||
agilent | ||
dressler | ||
fluke | ||
gentec-eo | ||
glassman | ||
|
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/usr/bin/env python | ||
""" | ||
Module containing Dressler instruments | ||
""" | ||
|
||
from instruments.dressler.cesar_1312 import Cesar1312 |
Oops, something went wrong.