mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-01-05 15:00:33 +00:00
start the DMA only when then the receiver is in post-processing mode
This commit is contained in:
parent
933873c265
commit
6fcae1a917
@ -111,7 +111,11 @@ void GNSSFlowgraph::start()
|
|||||||
}
|
}
|
||||||
|
|
||||||
#ifdef ENABLE_FPGA
|
#ifdef ENABLE_FPGA
|
||||||
sig_source_.at(0)->start();
|
// start the DMA if the receiver is in post-processing mode
|
||||||
|
if (configuration_->property(sig_source_.at(0)->role() + ".switch_position", 0) == 0)
|
||||||
|
{
|
||||||
|
sig_source_.at(0)->start();
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
running_ = true;
|
running_ = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user