Skip to content

Commit

Permalink
Add ORX rf_bandwidth
Browse files Browse the repository at this point in the history
Signed-off-by: Trisha De Vera <[email protected]>
  • Loading branch information
trishaange01 committed Jan 14, 2025
1 parent 271c951 commit 4311131
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions adi/adrv9009.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (C) 2019-2024 Analog Devices, Inc.
# Copyright (C) 2019-2025 Analog Devices, Inc.
#
# SPDX short identifier: ADIBSD

Expand Down Expand Up @@ -246,7 +246,7 @@ def obs_quadrature_tracking_en_chan2(self):

@obs_quadrature_tracking_en_chan2.setter
def obs_quadrature_tracking_en_chan2(self, value):
self._set_iio_attr("voltage3", "quadrature_tracking_en", False, value)
self._set_iio_attr("voltage3", "quadrature_tracking_en", False, value)

@property
def obs_rf_port_select(self):
Expand Down Expand Up @@ -278,7 +278,7 @@ def obs_hardwaregain_chan2(self):

@obs_hardwaregain_chan2.setter
def obs_hardwaregain_chan2(self, value):
self._set_iio_attr("voltage3", "hardwaregain", False, value)
self._set_iio_attr("voltage3", "hardwaregain", False, value)

@property
def tx_quadrature_tracking_en_chan0(self):
Expand Down Expand Up @@ -321,6 +321,11 @@ def rx_rf_bandwidth(self):
"""rx_rf_bandwidth: Bandwidth of front-end analog filter of RX path"""
return self._get_iio_attr("voltage0", "rf_bandwidth", False)

@property
def orx_rf_bandwidth(self):
"""orx_rf_bandwidth: Bandwidth of front-end analog filter of ORX path"""
return self._get_iio_attr("voltage2", "rf_bandwidth", False)

@property
def tx_rf_bandwidth(self):
"""tx_rf_bandwidth: Bandwidth of front-end analog filter of TX path"""
Expand Down

0 comments on commit 4311131

Please sign in to comment.