Skip to content

Commit

Permalink
Fixed wrong dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
hsandber committed Oct 29, 2024
1 parent b63d85f commit 7f898b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/surf/devices/analog_devices/_Ltm4664.py
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ def getLinear5s11sDataFormat(var, read):
units = 'V',
disp = '{:1.3f}',
linkedGet = getLinear16uDataFormat,
dependencies = [self.VOUT_MODE, self.READ_VOUT],
dependencies = [self.VOUT_MODE, self.MFR_VOUT_PEAK],
pollInterval = 1,
))

Expand All @@ -518,7 +518,7 @@ def getLinear5s11sDataFormat(var, read):
units = 'V',
disp = '{:1.3f}',
linkedGet = getLinear16uDataFormat,
dependencies = [self.VOUT_MODE, self.READ_VOUT],
dependencies = [self.VOUT_MODE, self.MFR_VOUT_MAX],
pollInterval = 1,
))

Expand Down

0 comments on commit 7f898b3

Please sign in to comment.