mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-12-14 04:00:34 +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),
|
||||
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>();
|
||||
|
||||
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);
|
||||
|
||||
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::mutex mx_;
|
||||
uint32_t channel_;
|
||||
int glonass_extend_correlation_ms_;
|
||||
bool connected_;
|
||||
bool repeat_;
|
||||
bool flag_enable_fpga_;
|
||||
int glonass_extend_correlation_ms_;
|
||||
};
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user