Skip to content

Commit

Permalink
Add AD9213 class
Browse files Browse the repository at this point in the history
Signed-off-by: Travis F. Collins <travis.collins@analog.com>
  • Loading branch information
tfcollins committed Sep 25, 2024
1 parent 16fe567 commit 61ec920
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions adi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
from adi.ad9162 import ad9162
from adi.ad9166 import ad9166
from adi.ad9172 import ad9172
from adi.ad9213 import ad9213
from adi.ad9250 import ad9250
from adi.ad9265 import ad9265
from adi.ad9434 import ad9434
Expand Down
18 changes: 18 additions & 0 deletions adi/ad9213.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Copyright (C) 2024 Analog Devices, Inc.
#
# SPDX short identifier: ADIBSD

from adi.context_manager import context_manager
from adi.rx_tx import rx_def


class ad9213(rx_def, context_manager):
""" AD9213 High-Speed ADC """

_complex_data = False
_rx_channel_names = ["voltage0"]
_control_device_name = "axi-ad9213-rx-hpc"
_rx_data_device_name = "axi-ad9213-rx-hpc"
_device_name = ""


0 comments on commit 61ec920

Please sign in to comment.