diff options
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 |