mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-04-27 21:23:18 +00:00
Remove redundant void (clang-tidy modernize-redundant-void-arg)
This commit is contained in:
parent
cd91722d2f
commit
a9472dea30
@ -604,7 +604,7 @@ void Ad9361FpgaSignalSource::run_DMA_process(const std::string &FreqBand, const
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void Ad9361FpgaSignalSource::run_dynamic_bit_selection_process(void)
|
void Ad9361FpgaSignalSource::run_dynamic_bit_selection_process()
|
||||||
{
|
{
|
||||||
bool dynamic_bit_selection_active = true;
|
bool dynamic_bit_selection_active = true;
|
||||||
|
|
||||||
|
@ -74,7 +74,7 @@ private:
|
|||||||
const std::string &Filename1,
|
const std::string &Filename1,
|
||||||
const std::string &Filename2);
|
const std::string &Filename2);
|
||||||
|
|
||||||
void run_dynamic_bit_selection_process(void);
|
void run_dynamic_bit_selection_process();
|
||||||
|
|
||||||
std::thread thread_file_to_dma;
|
std::thread thread_file_to_dma;
|
||||||
std::thread thread_dynamic_bit_selection;
|
std::thread thread_dynamic_bit_selection;
|
||||||
@ -95,6 +95,9 @@ private:
|
|||||||
std::string filename_rx2;
|
std::string filename_rx2;
|
||||||
std::string freq_band;
|
std::string freq_band;
|
||||||
|
|
||||||
|
std::mutex dma_mutex;
|
||||||
|
std::mutex dynamic_bit_selection_mutex;
|
||||||
|
|
||||||
double rf_gain_rx1_;
|
double rf_gain_rx1_;
|
||||||
double rf_gain_rx2_;
|
double rf_gain_rx2_;
|
||||||
uint64_t freq_; // frequency of local oscillator
|
uint64_t freq_; // frequency of local oscillator
|
||||||
@ -125,9 +128,6 @@ private:
|
|||||||
bool enable_DMA_;
|
bool enable_DMA_;
|
||||||
bool enable_dynamic_bit_selection_;
|
bool enable_dynamic_bit_selection_;
|
||||||
bool rf_shutdown_;
|
bool rf_shutdown_;
|
||||||
|
|
||||||
std::mutex dma_mutex;
|
|
||||||
std::mutex dynamic_bit_selection_mutex;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // GNSS_SDR_AD9361_FPGA_SIGNAL_SOURCE_H
|
#endif // GNSS_SDR_AD9361_FPGA_SIGNAL_SOURCE_H
|
||||||
|
Loading…
x
Reference in New Issue
Block a user