You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here: md_tx = uhd.types.TXMetadata
you do not create a TXMetadata object but you use the underlying pybind11 class, which is not a valid parameter for the streamer send method. Instead you need: md_tx = uhd.types.TXMetadata()
mind the brackets which will create an instance of the object instead of assigning the class to md_tx!
Then you have a real metadata object and your code should work.
Issue Description
I am using usrp to transmit signals with python API. The code is as follows. I don't find out any misaligned arguments, but there are mistakes.
Code:
Result:
The text was updated successfully, but these errors were encountered: