1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-12-15 04:30:33 +00:00

Prepare the tracking configuration to allow a specific pull-in loops bandwidth

This commit is contained in:
Javier Arribas 2018-08-07 20:05:35 +02:00
parent b47d7826eb
commit 19c5220886
2 changed files with 5 additions and 1 deletions

View File

@ -41,7 +41,9 @@ Dll_Pll_Conf::Dll_Pll_Conf()
vector_length = 0;
dump = false;
dump_filename = "./dll_pll_dump.dat";
pll_bw_hz = 40.0;
pll_pull_in_bw_hz = 50.0;
dll_pull_in_bw_hz = 3.0;
pll_bw_hz = 35.0;
dll_bw_hz = 2.0;
pll_bw_narrow_hz = 5.0;
dll_bw_narrow_hz = 0.75;

View File

@ -44,6 +44,8 @@ public:
unsigned int vector_length;
bool dump;
std::string dump_filename;
float pll_pull_in_bw_hz;
float dll_pull_in_bw_hz;
float pll_bw_hz;
float dll_bw_hz;
float pll_bw_narrow_hz;