Skip to content

Commit

Permalink
Merge pull request #605 from jpineda3/class-fixes
Browse files Browse the repository at this point in the history
Class fixes after rc testing
  • Loading branch information
tfcollins authored Oct 29, 2024
2 parents dde58ee + 8084776 commit 58c3827
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion adi/ad9083.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def __init__(self, uri=""):
self._rx_channel_names.append(ch._id)

for name in self._rx_channel_names:
if "_i" or "_q" in name:
if any(ext in name for ext in ["_i", "_q"]):
self._complex_data = True

rx.__init__(self)
Expand Down
2 changes: 1 addition & 1 deletion adi/ad9467.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class ad9467(rx, context_manager):
""" AD9467 High-Speed ADC """

_complex_data = False
_rx_channel_names = ["voltage0", "voltage1"]
_rx_channel_names = ["voltage0"]
_device_name = ""

def __init__(self, uri=""):
Expand Down

0 comments on commit 58c3827

Please sign in to comment.