Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/release-notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Release Date xx-xx-xxxx
Improvements
############
- Fix bug where DSOX1202G appeared to hang both the program and scope
- 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.

*************
Version 0.6.4
Expand Down
2 changes: 1 addition & 1 deletion src/fixate/drivers/lcr/agilent_u1732c.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@


class AgilentU1732C(LCR):
REGEX_ID = "Agilent Technologies,U1732C"
REGEX_ID = "(Keysight|Agilent) Technologies,U1732C" # Regex allows multiple manufacturers
INSTR_TYPE = "VISA"

def __init__(self, instrument):
Expand Down