Fix receiver termination when using the Osmosdr_Signal_Source implementation for the SignalSource block

This commit is contained in:
Carles Fernandez 2020-08-06 11:45:27 +02:00
parent 6869183ac6
commit fd41eef1e0
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D
2 changed files with 3 additions and 0 deletions

View File

@ -23,6 +23,8 @@ SPDX-FileCopyrightText: 2011-2020 Carles Fernandez-Prades <carles.fernandez@cttc
parameters for the `DataTypeAdapter`, `InputFilter` and `Resampler` blocks are
ignored. This was the default behavior in GNSS-SDR v0.0.12, but it changed in
v0.0.13. This change recovers the old behavior.
- Fixed the termination of the receiver with `q` + `[Enter]` keys when using the
`Osmosdr_Signal_Source` implementation of the `SignalSource` block.
- Improved General Block diagram, both in content and in image resolution.
&nbsp;

View File

@ -121,6 +121,7 @@ void GNSSFlowgraph::stop()
chan->stop_channel(); // stop the acquisition or tracking operation
}
top_block_->stop();
top_block_->wait();
running_ = false;
}