mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-01-31 03:14:56 +00:00
Remove unused private member
This commit is contained in:
parent
5ac57eff38
commit
843fb7a58a
@ -197,7 +197,6 @@ private:
|
||||
volk_gnsssdr::vector<uint32_t> d_all_fft_codes_; // memory that contains all the code ffts
|
||||
std::weak_ptr<ChannelFsm> channel_fsm_;
|
||||
Gnss_Synchro* gnss_synchro_;
|
||||
const ConfigurationInterface* configuration_;
|
||||
Acq_Conf_Fpga acq_parameters_;
|
||||
std::string role_;
|
||||
int64_t fs_in_;
|
||||
|
@ -204,7 +204,6 @@ private:
|
||||
std::weak_ptr<ChannelFsm> channel_fsm_;
|
||||
volk_gnsssdr::vector<uint32_t> d_all_fft_codes_; // memory that contains all the code ffts
|
||||
Gnss_Synchro* gnss_synchro_;
|
||||
const ConfigurationInterface* configuration_;
|
||||
Acq_Conf_Fpga acq_parameters_;
|
||||
std::string role_;
|
||||
int64_t fs_in_;
|
||||
|
@ -204,7 +204,6 @@ private:
|
||||
std::weak_ptr<ChannelFsm> channel_fsm_;
|
||||
|
||||
Gnss_Synchro* gnss_synchro_;
|
||||
const ConfigurationInterface* configuration_;
|
||||
Acq_Conf_Fpga acq_parameters_;
|
||||
std::string role_;
|
||||
int64_t fs_in_;
|
||||
|
@ -202,7 +202,6 @@ private:
|
||||
std::weak_ptr<ChannelFsm> channel_fsm_;
|
||||
volk_gnsssdr::vector<uint32_t> d_all_fft_codes_; // memory that contains all the code ffts
|
||||
Gnss_Synchro* gnss_synchro_;
|
||||
const ConfigurationInterface* configuration_;
|
||||
Acq_Conf_Fpga acq_parameters_;
|
||||
std::string role_;
|
||||
int64_t fs_in_;
|
||||
|
@ -22,7 +22,6 @@
|
||||
#include "configuration_interface.h"
|
||||
#include "gnss_sdr_fft.h"
|
||||
#include "gnss_sdr_flags.h"
|
||||
#include "gnss_synchro.h"
|
||||
#include "gps_l2c_signal_replica.h"
|
||||
#include <glog/logging.h>
|
||||
#include <gnuradio/gr_complex.h> // for gr_complex
|
||||
|
@ -22,6 +22,7 @@
|
||||
|
||||
#include "acq_conf_fpga.h"
|
||||
#include "channel_fsm.h"
|
||||
#include "gnss_synchro.h"
|
||||
#include "pcps_acquisition_fpga.h"
|
||||
#include <gnuradio/runtime_types.h> // for basic_block_sptr, top_block_sptr
|
||||
#include <volk_gnsssdr/volk_gnsssdr_alloc.h>
|
||||
@ -35,7 +36,6 @@
|
||||
* \{ */
|
||||
|
||||
|
||||
class Gnss_Synchro;
|
||||
class ConfigurationInterface;
|
||||
|
||||
/*!
|
||||
@ -164,7 +164,6 @@ private:
|
||||
volk_gnsssdr::vector<uint32_t> d_all_fft_codes_; // memory that contains all the code ffts
|
||||
std::weak_ptr<ChannelFsm> channel_fsm_;
|
||||
Gnss_Synchro* gnss_synchro_;
|
||||
const ConfigurationInterface* configuration_;
|
||||
Acq_Conf_Fpga acq_parameters_;
|
||||
std::string role_;
|
||||
int64_t fs_in_;
|
||||
|
@ -204,7 +204,6 @@ private:
|
||||
std::weak_ptr<ChannelFsm> channel_fsm_;
|
||||
volk_gnsssdr::vector<uint32_t> d_all_fft_codes_; // memory that contains all the code ffts
|
||||
Gnss_Synchro* gnss_synchro_;
|
||||
const ConfigurationInterface* configuration_;
|
||||
Acq_Conf_Fpga acq_parameters_;
|
||||
std::string role_;
|
||||
int64_t fs_in_;
|
||||
|
@ -34,7 +34,6 @@ void Acq_Conf_Fpga::SetFromConfiguration(const ConfigurationInterface *configura
|
||||
|
||||
// downsampling factor
|
||||
uint32_t downsampling_factor = configuration->property(role + ".downsampling_factor", downs_factor);
|
||||
downsampling_factor = downsampling_factor;
|
||||
fs_in = fs_in / downsampling_factor;
|
||||
|
||||
// code length in samples
|
||||
|
Loading…
Reference in New Issue
Block a user