We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d18647d commit e0c5b6eCopy full SHA for e0c5b6e
host/python/uhd/usrp/multi_usrp.py
@@ -81,6 +81,7 @@ def _start_stream(streamer):
81
if not stream_cmd.stream_now:
82
if start_time is not None:
83
stream_cmd.time_spec = start_time
84
+ stream_cmd.stream_now = False
85
else:
86
stream_cmd.time_spec = lib.types.time_spec(
87
super(MultiUSRP, self).get_time_now().get_real_secs() + 0.05)
@@ -183,6 +184,7 @@ def _config_streamer(streamer):
183
184
metadata = lib.types.tx_metadata()
185
186
metadata.time_spec = start_time
187
+ metadata.has_time_spec = True
188
while send_samps < max_samps:
189
real_samps = min(proto_len, max_samps-send_samps)
190
if real_samps < proto_len:
0 commit comments