Skip to content

Commit

Permalink
update load arg to termination in setting the output termination
Browse files Browse the repository at this point in the history
  • Loading branch information
slwatkins authored Jun 4, 2024
1 parent c545efc commit 77b19bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/splendaq/daq/_log_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ def dc_settings(dc_level=0):
'dc_level': dc_level,
}

def set_output_channel(self, channel, waveformtype, load="HiZ",
def set_output_channel(self, channel, waveformtype, termination="HiZ",
**settings):
"""
Method to turn on an output channel and generate the speicified
Expand Down Expand Up @@ -435,7 +435,7 @@ def set_output_channel(self, channel, waveformtype, load="HiZ",
"""

if self._device in ["Moku:Pro", "Moku:Lab"]:
self.DL.set_output_termination(channel, load)
self.DL.set_output_termination(channel, termination)
self.DL.generate_waveform(
channel,
waveformtype,
Expand Down

0 comments on commit 77b19bd

Please sign in to comment.