Source code for qcodes.instrument_drivers.stanford_research.SR865
from qcodes.instrument_drivers.stanford_research.SR86x import SR86x
[docs]class SR865(SR86x):
"""
The SR865 instrument is almost equal to the SR860, except for the max frequency
"""
def __init__(self, name: str, address: str, reset: bool=False, **kwargs: str) ->None:
super().__init__(name, address, max_frequency=2E6, reset=reset, **kwargs)