diff options
author | Martin Braun <martin.braun@ettus.com> | 2021-06-09 16:11:11 +0200 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2021-06-23 13:57:15 -0500 |
commit | 1ca9a45ff5f2eb55093d825f6d9fc36256ee7d67 (patch) | |
tree | 372bb508f8a84fa8eba2c4f971cdd4f56b8f95c4 /host/python | |
parent | f71bd44113820c2e8d7adc501e6d061f174e06f0 (diff) | |
download | uhd-1ca9a45ff5f2eb55093d825f6d9fc36256ee7d67.tar.gz uhd-1ca9a45ff5f2eb55093d825f6d9fc36256ee7d67.tar.bz2 uhd-1ca9a45ff5f2eb55093d825f6d9fc36256ee7d67.zip |
cal: Add support for X410
Diffstat (limited to 'host/python')
-rw-r--r-- | host/python/uhd/usrp/cal/usrp_calibrator.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/host/python/uhd/usrp/cal/usrp_calibrator.py b/host/python/uhd/usrp/cal/usrp_calibrator.py index ad3b23046..a665564ba 100644 --- a/host/python/uhd/usrp/cal/usrp_calibrator.py +++ b/host/python/uhd/usrp/cal/usrp_calibrator.py @@ -386,6 +386,17 @@ class X300Calibrator(USRPCalibratorBase): # calibrated. lo_offset = 10e6 +class X410Calibrator(USRPCalibratorBase): + """ + X410/ZBX Calibration + """ + mboard_ids = ('x410',) + # Choosing 3.84 MHz: It is a small rate, but carries enough bandwidth to + # receive a tone. It's 1/40 the default master clock rate (122.88e6), which + # means it'll engage max halfbands. + default_rate = 3.84e6 + min_freq = 1e6 + max_freq = 8e9 ############################################################################### # The dispatch function |