mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-11-19 16:24:58 +00:00
Merge branch 'next' of https://github.com/gnss-sdr/gnss-sdr into release_0010
This commit is contained in:
commit
899f83c4ef
22
README.md
22
README.md
@ -6,20 +6,20 @@
|
|||||||
|
|
||||||
This program is a software-defined receiver which is able to process (that is, to perform detection, synchronization, demodulation and decoding of the navigation message, computation of observables and, finally, computation of position fixes) the following Global Navigation Satellite System's signals:
|
This program is a software-defined receiver which is able to process (that is, to perform detection, synchronization, demodulation and decoding of the navigation message, computation of observables and, finally, computation of position fixes) the following Global Navigation Satellite System's signals:
|
||||||
|
|
||||||
In the L1 band (centered at 1575.42 MHz):
|
In the L1 band:
|
||||||
- 🛰 GPS L1 C/A :white_check_mark:
|
- 🛰 GPS L1 C/A (centered at 1575.42 MHz) :white_check_mark:
|
||||||
- 🛰 Galileo E1b/c :white_check_mark:
|
- 🛰 Galileo E1b/c (centered at 1575.42 MHz) :white_check_mark:
|
||||||
- 🛰 GLONASS L1 C/A :white_check_mark:
|
- 🛰 GLONASS L1 C/A (centered at 1601.72 MHz) :white_check_mark:
|
||||||
|
|
||||||
In the L2 band (centered at 1227.60 MHz):
|
In the L2 band:
|
||||||
- 🛰 GPS L2C :white_check_mark:
|
- 🛰 GPS L2C (centered at 1227.60 MHz) :white_check_mark:
|
||||||
- 🛰 GLONASS L2 C/A :white_check_mark:
|
- 🛰 GLONASS L2 C/A (centered at 1246 MHz) :white_check_mark:
|
||||||
|
|
||||||
In the L5 band (centered at 1176.45 MHz):
|
In the L5 band:
|
||||||
- 🛰 GPS L5 :white_check_mark:
|
- 🛰 GPS L5 (centered at 1176.45 MHz) :white_check_mark:
|
||||||
- 🛰 Galileo E5a :white_check_mark:
|
- 🛰 Galileo E5a (centered at 1176.45 MHz) :white_check_mark:
|
||||||
|
|
||||||
GNSS-SDR provides interfaces for a wide range of radio frequency front-ends, generates processing outputs in standard formats, allows for the full inspection of the whole signal processing chain, and offers a framework for the development of new features. Please visit [https://gnss-sdr.org](https://gnss-sdr.org "GNSS-SDR website") for more information about this open source software-defined GNSS receiver.
|
GNSS-SDR provides interfaces for a wide range of radio frequency front-ends and raw sample file formats, generates processing outputs in standard formats, allows for the full inspection of the whole signal processing chain, and offers a framework for the development of new features. Please visit [https://gnss-sdr.org](https://gnss-sdr.org "GNSS-SDR website") for more information about this open source software-defined GNSS receiver.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -1304,6 +1304,7 @@ void GNSSFlowgraph::set_channels_state()
|
|||||||
}
|
}
|
||||||
DLOG(INFO) << "Channel " << i << " in state " << channels_state_[i];
|
DLOG(INFO) << "Channel " << i << " in state " << channels_state_[i];
|
||||||
}
|
}
|
||||||
|
std::lock_guard<std::mutex> lock(signal_list_mutex);
|
||||||
acq_channels_count_ = max_acq_channels_;
|
acq_channels_count_ = max_acq_channels_;
|
||||||
DLOG(INFO) << acq_channels_count_ << " channels in acquisition state";
|
DLOG(INFO) << acq_channels_count_ << " channels in acquisition state";
|
||||||
}
|
}
|
||||||
|
@ -107,17 +107,17 @@ public:
|
|||||||
|
|
||||||
void set_configuration(std::shared_ptr<ConfigurationInterface> configuration);
|
void set_configuration(std::shared_ptr<ConfigurationInterface> configuration);
|
||||||
|
|
||||||
unsigned int applied_actions()
|
unsigned int applied_actions() const
|
||||||
{
|
{
|
||||||
return applied_actions_;
|
return applied_actions_;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool connected()
|
bool connected() const
|
||||||
{
|
{
|
||||||
return connected_;
|
return connected_;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool running()
|
bool running() const
|
||||||
{
|
{
|
||||||
return running_;
|
return running_;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user