Fix FPGA termination

This commit is contained in:
Carles Fernandez 2020-08-13 21:19:17 +02:00
parent d4ed61df4b
commit 11b499535e
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D
1 changed files with 2 additions and 0 deletions

View File

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