Skip to content

Commit a867bb5

Browse files
Merge pull request #234 from amp-bjorn/main
added ability to use keysight meter
2 parents d516dda + 03ef0fa commit a867bb5

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

docs/release-notes.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Improvements
1515

1616
- Sequencer logic now handles exceptions raised on sequence abort. GUI will no longer hang when a test raises an exception during a test abort.
1717
- Fix bug where DSOX1202G appeared to hang both the program and scope
18+
- LCR Driver now supports instruments reporting as Keysight or Agilent. Newer models of the LCR meter report as Keysight, whereas older models report as Agilent.
1819

1920
*************
2021
Version 0.6.4

src/fixate/drivers/lcr/agilent_u1732c.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979

8080

8181
class AgilentU1732C(LCR):
82-
REGEX_ID = "Agilent Technologies,U1732C"
82+
REGEX_ID = "(Keysight|Agilent) Technologies,U1732C" # Regex allows multiple manufacturers
8383
INSTR_TYPE = "VISA"
8484

8585
def __init__(self, instrument):

0 commit comments

Comments
 (0)