diff options
author | Martin Braun <martin.braun@ettus.com> | 2019-02-04 16:00:16 +0100 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2019-02-22 16:56:52 -0800 |
commit | 692ddc71b17196487dcad982836e074cab9a0f25 (patch) | |
tree | cf76abf577dde6128e03561c52d9c31dca302026 /host/python/types.py | |
parent | 51bbf548c9b442d0b53b6c8de5f89403de274424 (diff) | |
download | uhd-692ddc71b17196487dcad982836e074cab9a0f25.tar.gz uhd-692ddc71b17196487dcad982836e074cab9a0f25.tar.bz2 uhd-692ddc71b17196487dcad982836e074cab9a0f25.zip |
python: Replace Boost.Python with PyBind11
This does not change the Python API itself, but it is still
a significant change. Most importantly, it removes the dependency on
Boost.Python.
Diffstat (limited to 'host/python/types.py')
-rw-r--r-- | host/python/types.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/host/python/types.py b/host/python/types.py index 6b4ceefce..ad96076f3 100644 --- a/host/python/types.py +++ b/host/python/types.py @@ -18,8 +18,9 @@ SPIEdge = lib.types.spi_edge SPIConfig = lib.types.spi_config RXMetadataErrorCode = lib.types.rx_metadata_error_code Range = lib.types.range -RangeVector = lib.types.range_vector -MetaRange = lib.types.meta_range +MetaRange = lib.types.meta_range_t +GainRange = lib.types.meta_range_t +FreqRange = lib.types.meta_range_t RXMetadata = lib.types.rx_metadata TXMetadata = lib.types.tx_metadata TXAsyncMetadata = lib.types.async_metadata |