Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | python: multi_usrp: Fix get_radio_control() | Martin Braun | 2020-11-23 | 1 | -1/+1 |
| | | | | | | | | This function was incorrectly wrapped into Python and would fail with Python saying it can't hold a reference to the radio block. This changes the wrapping into returning a raw pointer, but also makes the return value policy reference_internal so that garbage collection happens in the right order. | ||||
* | python: Add access to the property_tree from Python | Martin Braun | 2020-10-16 | 1 | -0/+4 |
| | | | | | | | Example: >>> usrp = uhd.usrp.multi_usrp("") >>> tree = usrp.get_tree() >>> print(tree.access_int("/name").get()) | ||||
* | python: Move multi_usrp_python to its own module | Martin Braun | 2020-10-12 | 1 | -0/+198 |
This helps with recompilation times of UHD. No functional changes. |