From 19c522088622b1e14d09749e538f6ca89da55deb Mon Sep 17 00:00:00 2001 From: Javier Arribas Date: Tue, 7 Aug 2018 20:05:35 +0200 Subject: [PATCH] Prepare the tracking configuration to allow a specific pull-in loops bandwidth --- src/algorithms/tracking/libs/dll_pll_conf.cc | 4 +++- src/algorithms/tracking/libs/dll_pll_conf.h | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/algorithms/tracking/libs/dll_pll_conf.cc b/src/algorithms/tracking/libs/dll_pll_conf.cc index 4cecdfcc5..c514fee5f 100644 --- a/src/algorithms/tracking/libs/dll_pll_conf.cc +++ b/src/algorithms/tracking/libs/dll_pll_conf.cc @@ -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; diff --git a/src/algorithms/tracking/libs/dll_pll_conf.h b/src/algorithms/tracking/libs/dll_pll_conf.h index a8f3ad10b..a6a754363 100644 --- a/src/algorithms/tracking/libs/dll_pll_conf.h +++ b/src/algorithms/tracking/libs/dll_pll_conf.h @@ -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;