mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-01-20 22:17:03 +00:00
Reorder private members
This commit is contained in:
parent
e8eb8a5ace
commit
223a4b16d8
@ -40,6 +40,8 @@ Channel::Channel(const ConfigurationInterface* configuration,
|
|||||||
role_(role),
|
role_(role),
|
||||||
channel_(channel)
|
channel_(channel)
|
||||||
{
|
{
|
||||||
|
glonass_extend_correlation_ms_ = configuration->property("Tracking_1G.extend_correlation_ms", 0) + configuration->property("Tracking_2G.extend_correlation_ms", 0);
|
||||||
|
|
||||||
channel_fsm_ = std::make_shared<ChannelFsm>();
|
channel_fsm_ = std::make_shared<ChannelFsm>();
|
||||||
|
|
||||||
flag_enable_fpga_ = configuration->property("GNSS-SDR.enable_FPGA", false);
|
flag_enable_fpga_ = configuration->property("GNSS-SDR.enable_FPGA", false);
|
||||||
@ -104,9 +106,6 @@ Channel::Channel(const ConfigurationInterface* configuration,
|
|||||||
gnss_signal_ = Gnss_Signal(signal_str);
|
gnss_signal_ = Gnss_Signal(signal_str);
|
||||||
|
|
||||||
channel_msg_rx_ = channel_msg_receiver_make_cc(channel_fsm_, repeat_);
|
channel_msg_rx_ = channel_msg_receiver_make_cc(channel_fsm_, repeat_);
|
||||||
|
|
||||||
glonass_extend_correlation_ms_ = 0;
|
|
||||||
glonass_extend_correlation_ms_ = configuration->property("Tracking_1G.extend_correlation_ms", 0) + configuration->property("Tracking_2G.extend_correlation_ms", 0);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -107,10 +107,10 @@ private:
|
|||||||
std::string role_;
|
std::string role_;
|
||||||
std::mutex mx_;
|
std::mutex mx_;
|
||||||
uint32_t channel_;
|
uint32_t channel_;
|
||||||
|
int glonass_extend_correlation_ms_;
|
||||||
bool connected_;
|
bool connected_;
|
||||||
bool repeat_;
|
bool repeat_;
|
||||||
bool flag_enable_fpga_;
|
bool flag_enable_fpga_;
|
||||||
int glonass_extend_correlation_ms_;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user