This commit is contained in:
2025-12-16 19:29:01 +06:00
parent c8342a62c2
commit 12ea397ccf

View File

@@ -61,8 +61,8 @@ class PrologixEndpointLoop:
def _keithley2000_init_cmds(self, dev_meta: dict[str, Any]) -> list[str]:
default_cmds = [
# turn off VFD
":DISP:ENAB OFF",
"*CLS",
":INIT:CONT OFF;:ABORT",
# DC voltage config
':SENS:FUNC "VOLT:DC"',
":SENS:VOLT:DC:RANG 10", # fixed 10 V range
@@ -71,6 +71,8 @@ class PrologixEndpointLoop:
# offset drift?
":SYST:AZER:STAT ON",
":TRIG:SOUR IMM",
# turn off VFD
":DISP:ENAB OFF",
]
extra = dev_meta.get("init_cmds")