1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-06-24 05:53:16 +00:00
This commit is contained in:
Carles Fernandez 2015-05-24 11:18:32 +02:00
commit a243250b1a
3 changed files with 19 additions and 5 deletions

View File

@ -711,8 +711,8 @@ if(NOT ARMADILLO_FOUND)
message(STATUS " Armadillo will be downloaded and built automatically ")
message(STATUS " when doing 'make'. ")
set(armadillo_RELEASE 5.100.1)
set(armadillo_MD5 "6926fbf81bde99d777e3d09d034b308a")
set(armadillo_RELEASE 5.100.2)
set(armadillo_MD5 "fe57525a4fce94799d1556eb06339bbd")
ExternalProject_Add(
armadillo-${armadillo_RELEASE}

View File

@ -94,9 +94,9 @@ In case you do not want to use PyBOMBS and prefer to build and install GNU Radio
$ sudo apt-get install libopenblas-dev liblapack-dev gfortran # For Debian/Ubuntu/LinuxMint
$ sudo yum install lapack-devel blas-devel gcc-fortran # For Fedora/CentOS/RHEL
$ sudo zypper install lapack-devel blas-devel gcc-fortran # For OpenSUSE
$ wget http://sourceforge.net/projects/arma/files/armadillo-5.100.1.tar.gz
$ tar xvfz armadillo-5.100.1.tar.gz
$ cd armadillo-5.100.1
$ wget http://sourceforge.net/projects/arma/files/armadillo-5.100.2.tar.gz
$ tar xvfz armadillo-5.100.2.tar.gz
$ cd armadillo-5.100.2
$ cmake .
$ make
$ sudo make install

View File

@ -175,6 +175,20 @@ Galileo_E5a_Dll_Pll_Tracking_cc::Galileo_E5a_Dll_Pll_Tracking_cc(
d_carrier_lock_fail_counter = 0;
d_carrier_lock_threshold = CARRIER_LOCK_THRESHOLD;
d_channel_internal_queue = 0;
d_acquisition_gnss_synchro = 0;
d_channel = 0;
tmp_E = 0;
tmp_P = 0;
tmp_L = 0;
d_acq_code_phase_samples = 0;
d_acq_carrier_doppler_hz = 0;
d_carrier_doppler_hz = 0;
d_acc_carrier_phase_rad = 0;
d_code_phase_samples = 0;
d_acc_code_phase_secs = 0;
d_state = 0;
systemName["E"] = std::string("Galileo");
}