diff options
Diffstat (limited to 'host/examples')
-rw-r--r-- | host/examples/replay_samples_from_file.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/host/examples/replay_samples_from_file.cpp b/host/examples/replay_samples_from_file.cpp index f9ef3cd45..a8b5d40e9 100644 --- a/host/examples/replay_samples_from_file.cpp +++ b/host/examples/replay_samples_from_file.cpp @@ -346,9 +346,13 @@ int UHD_SAFE_MAIN(int argc, char *argv[]) cout << endl << "Stopping replay..." << endl; replay_ctrl->issue_stream_cmd(stream_cmd, replay_chan); + // The stop takes effect after the current command has completed, so use + // halt to stop the command in progress and clear any queued commands. + replay_ctrl->play_halt(replay_chan); + /////////////////////////////////////////////////////////////////////////// - // Wait for the replay data to flush out + // Wait for any buffered replay data to finish playing out uint16_t prev_packet_count, packet_count; |