Hi Marcus,
Good to hear from you, I hope all is well. Thanks for this response.
I tried doing what you said, but I get the attached error message. I have been looking the docs but haven't found much discussion that is helping. Do you see anything wrong with these relevant code snippets?
# create the USRP source
self.uhd_usrp_source_0 = uhd.usrp_source(
",".join((addr0, "", "master_clock_rate=200e6")),
uhd.stream_args(
cpu_format="fc32",
args='',
channels=list(range(0,1)),
),
)
# create the message debug block
self.message_debug_block = blocks.message_debug()
# connect the usrps async_msgs port to the message debug blocks store port
self.connect((self.uhd_usrp_source, 'async_msgs'), (self.message_debug_block, 'store'))
