[hamradio-commits] [gnss-sdr] 110/126: bug fix for Mac OSX compiler

Carles Fernandez carles_fernandez-guest at moszumanska.debian.org
Sat Dec 26 18:38:07 UTC 2015


This is an automated email from the git hooks/post-receive script.

carles_fernandez-guest pushed a commit to branch next
in repository gnss-sdr.

commit 48c5227c9ba80cc1edf31d5be8e374b9d69e8ff3
Author: Javier Arribas <jarribas at cttc.es>
Date:   Wed Dec 23 11:31:16 2015 +0100

    bug fix for Mac OSX compiler
---
 src/algorithms/tracking/libs/cpu_multicorrelator.cc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/algorithms/tracking/libs/cpu_multicorrelator.cc b/src/algorithms/tracking/libs/cpu_multicorrelator.cc
index 04ce9d5..6dd36e0 100644
--- a/src/algorithms/tracking/libs/cpu_multicorrelator.cc
+++ b/src/algorithms/tracking/libs/cpu_multicorrelator.cc
@@ -128,7 +128,8 @@ bool cpu_multicorrelator::Carrier_wipeoff_multicorrelator_resampler(
     //update_local_carrier(signal_length_samples, rem_carrier_phase_in_rad, phase_step_rad); //replaced by VOLK phase rotator
     //volk_32fc_x2_multiply_32fc(d_sig_doppler_wiped, d_sig_in, d_nco_in, signal_length_samples); //replaced by VOLK phase rotator
 
-    lv_32fc_t phase_offset_as_complex[1]= lv_cmake(std::cos(rem_carrier_phase_in_rad),-std::sin(rem_carrier_phase_in_rad));
+    lv_32fc_t phase_offset_as_complex[1];
+    phase_offset_as_complex[0]= lv_cmake(std::cos(rem_carrier_phase_in_rad),-std::sin(rem_carrier_phase_in_rad));
     volk_32fc_s32fc_x2_rotator_32fc(d_sig_doppler_wiped, d_sig_in, std::exp(lv_32fc_t(0, -phase_step_rad)),phase_offset_as_complex, signal_length_samples);
     update_local_code(signal_length_samples,rem_code_phase_chips, code_phase_step_chips);
     for (int current_correlator_tap = 0; current_correlator_tap < d_n_correlators; current_correlator_tap++)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-hamradio/gnss-sdr.git



More information about the pkg-hamradio-commits mailing list