Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade Rigol drivers to conform to our standard #4538

Merged
merged 15 commits into from
Sep 10, 2022
Merged
Prev Previous commit
Next Next commit
Add aliases from DP8xx drivers
  • Loading branch information
jenshnielsen committed Sep 10, 2022
commit 25392f5d6b255e73154e505a8cad4d7993dab775
5 changes: 5 additions & 0 deletions qcodes/instrument_drivers/rigol/DP821.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
"""
Old alias for RigolDP821 for backwards compatibility.
Will eventually be deprecated and removed.
"""
from .RigolDP821 import RigolDP821
5 changes: 5 additions & 0 deletions qcodes/instrument_drivers/rigol/DP831.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
"""
Old alias for RigolDP831 for backwards compatibility.
Will eventually be deprecated and removed.
"""
from .RigolDP831 import RigolDP831
5 changes: 5 additions & 0 deletions qcodes/instrument_drivers/rigol/DP832.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
"""
Old alias for RigolDP832 for backwards compatibility.
Will eventually be deprecated and removed.
"""
from .RigolDP832 import RigolDP832
5 changes: 1 addition & 4 deletions qcodes/instrument_drivers/rigol/RigolDP821.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,7 @@ class RigolDP821(_RigolDP8xx):
def __init__(self, name: str, address: str, **kwargs: Any):
channel_ranges = [
(60.0, 1.0),
(
8.0,
10.0,
),
(8.0, 10.0),
]

ovp_ranges_std = [(0.01, 66.0), (0.01, 8.8)]
Expand Down