From df667b843271edf157105f504d359d6577d0802b Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Tue, 19 Jun 2018 14:56:11 +0200 Subject: [PATCH] Fix constructor --- src/algorithms/acquisition/libs/acq_conf.cc | 24 ++++++++++----------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/algorithms/acquisition/libs/acq_conf.cc b/src/algorithms/acquisition/libs/acq_conf.cc index c1b288ef4..f403992e4 100644 --- a/src/algorithms/acquisition/libs/acq_conf.cc +++ b/src/algorithms/acquisition/libs/acq_conf.cc @@ -36,17 +36,17 @@ Acq_Conf::Acq_Conf() /* PCPS acquisition configuration */ sampled_ms = 0; max_dwells = 0; - unsigned int doppler_max = 0; - unsigned int num_doppler_bins_step2 = 0; - float doppler_step2 = 0.0; - long fs_in = 0; - int samples_per_ms = 0; - int samples_per_code = 0; - bool bit_transition_flag = false; - bool use_CFAR_algorithm_flag = false; - bool dump = false; - bool blocking = false; - bool make_2_steps = false; - std::string dump_filename = ""; + doppler_max = 0; + num_doppler_bins_step2 = 0; + doppler_step2 = 0.0; + fs_in = 0; + samples_per_ms = 0; + samples_per_code = 0; + bit_transition_flag = false; + use_CFAR_algorithm_flag = false; + dump = false; + blocking = false; + make_2_steps = false; + dump_filename = ""; it_size = sizeof(char); }