Closed CarlosD1119 closed 3 months ago
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.
It works. Many thanks.
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: