diff options
author | Martin Braun <martin.braun@ettus.com> | 2020-04-01 16:44:08 -0700 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2020-04-17 07:58:19 -0500 |
commit | 1a19bc653ee499545addb2a8718d12069bfd6fcd (patch) | |
tree | fa9c0b16432d559163e1e93dde836efd2fe3a1de /host/python | |
parent | 760abdf70315be16943496a1a1375f78660d96d8 (diff) | |
download | uhd-1a19bc653ee499545addb2a8718d12069bfd6fcd.tar.gz uhd-1a19bc653ee499545addb2a8718d12069bfd6fcd.tar.bz2 uhd-1a19bc653ee499545addb2a8718d12069bfd6fcd.zip |
cal: Add pwr_cal container
This is a cal container for all types of power cal (RX or TX) that rely
on a single, overall gain value.
Includes Python API.
Diffstat (limited to 'host/python')
-rw-r--r-- | host/python/uhd/usrp/cal/libtypes.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/host/python/uhd/usrp/cal/libtypes.py b/host/python/uhd/usrp/cal/libtypes.py index b75165965..1eb9ff360 100644 --- a/host/python/uhd/usrp/cal/libtypes.py +++ b/host/python/uhd/usrp/cal/libtypes.py @@ -17,5 +17,6 @@ from ... import libpyuhd as lib database = lib.cal.database Source = lib.cal.source IQCal = lib.cal.iq_cal +PwrCal = lib.cal.pwr_cal InterpMode = lib.cal.interp_mode # pylint: enable=invalid-name |