From c8a09834ac84cfda3a94a0ee3f5eebe70f482374 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Fri, 23 Sep 2016 14:24:19 +0200 Subject: [PATCH 001/171] Update links to the new website --- README.md | 656 ++++++++++++++++++++++++++++-------------------------- 1 file changed, 336 insertions(+), 320 deletions(-) diff --git a/README.md b/README.md index 1d116c6e3..e8ccc9e8d 100644 --- a/README.md +++ b/README.md @@ -6,25 +6,32 @@ Visit [gnss-sdr.org](http://gnss-sdr.org "GNSS-SDR's Homepage") for more informa If you have questions about GNSS-SDR, please [subscribe to the gnss-sdr-developers mailing list](http://lists.sourceforge.net/lists/listinfo/gnss-sdr-developers "Subscribe to the gnss-sdr-developers mailing list" ) and post your questions there. - + # How to build GNSS-SDR -This section describes how to set up the compilation environment in GNU/Linux or [Mac OS X](#macosx), and to build GNSS-SDR. See also [our Building Guide](http://gnss-sdr.org/documentation/building-guide "GNSS-SDR's Building Guide"). +This section describes how to set up the compilation environment in GNU/Linux or [macOS / Mac OS X](#macosx), and to build GNSS-SDR. See also our [build and install page](http://gnss-sdr.org/build-and-install/ "GNSS-SDR's Build and Install"). -GNU/Linux +GNU/Linux ---------- - * Tested distributions: Ubuntu from 14.04 LTS to 16.04 LTS, Debian 8.0 "jessie", Linaro 15.03 + * Tested distributions: Ubuntu from 14.04 LTS to 16.04 LTS, Debian 8.0 "jessie", Linaro 15.03 * Known to work but not continually tested: Arch Linux, Fedora, and openSUSE - * Supported microprocessor architectures: - * i386: Intel x86 instruction set (32-bit microprocessors). + * Supported microprocessor architectures: + * i386: Intel x86 instruction set (32-bit microprocessors). * amd64: also known as x86-64, the 64-bit version of the x86 instruction set, originally created by AMD and implemented by AMD, Intel, VIA and others. * armel: ARM embedded ABI, supported on ARM v4t and higher. - * armhf: ARM hard float, ARMv7 + VFP3-D16 floating-point hardware extension + Thumb-2 instruction set and above. + * armhf: ARM hard float, ARMv7 + VFP3-D16 floating-point hardware extension + Thumb-2 instruction set and above. * arm64: ARM 64 bits or ARMv8. + * mips: MIPS architecture (big-endian, such as those manufactured by SGI). + * mipsel: MIPS architecture (little-endian, such as Loongson 3). + * mips64el: 64-bit version of MIPS architecture. + * powerpc: the RISC 32-bit microprocessor architecture developed by IBM, Motorola (now Freescale) and Apple. + * ppc64: 64-bit big-endian PowerPC architecture. + * ppc64el: 64-bit little-endian PowerPC architecture. + * s390x: IBM System z architecture for mainframe computers. Older distribution releases might work as well, but you will need GCC 4.7 or newer. @@ -34,7 +41,7 @@ Before building GNSS-SDR, you need to install all the required dependencies. The If you want to start building and running GNSS-SDR as quick and easy as possible, the best option is to install all the required dependencies as binary packages. If you are using Debian 8, Ubuntu 14.10 or above, this can be done by copying and pasting the following line in a terminal: -~~~~~~ +~~~~~~ $ sudo apt-get install build-essential cmake git libboost-dev libboost-date-time-dev \ libboost-system-dev libboost-filesystem-dev libboost-thread-dev libboost-chrono-dev \ libboost-serialization-dev libboost-program-options-dev libboost-test-dev \ @@ -50,12 +57,12 @@ deb-src http://us.archive.ubuntu.com/ubuntu/ xenial universe to your ```/etc/apt/sources.list``` file and doing: -~~~~~~ -$ sudo apt-get update +~~~~~~ +$ sudo apt-get update $ sudo apt-get build-dep gnss-sdr -~~~~~~ +~~~~~~ -Once you have installed these packages, you can jump directly to [how to download the source code and build GNSS-SDR](#download-and-build-linux). +Once you have installed these packages, you can jump directly to [how to download the source code and build GNSS-SDR](#download-and-build-linux). Note for Ubuntu 14.04 LTS "trusty" users: you will need to build from source and install GNU Radio manually, as explained below, since GNSS-SDR requires gnuradio-dev >= 3.7.3, and Ubuntu 14.04 came with 3.7.2. Install all the packages above BUT EXCEPT ```libuhd-dev```, ```gnuradio-dev``` and ```gr-osmosdr``` (and remove them if they are already installed in your machine), and install those dependencies using PyBOMBS. @@ -66,49 +73,49 @@ This option is adequate if you are interested in development, in working with th First of all, install some basic packages: -~~~~~~ +~~~~~~ $ sudo apt-get install git python-pip -~~~~~~ +~~~~~~ Download, build and install PyBOMBS: -~~~~~~ +~~~~~~ $ sudo pip install git+https://github.com/gnuradio/pybombs.git -~~~~~~ +~~~~~~ Add some software recipes (i.e., instructions on how to install software dependencies): -~~~~~~ +~~~~~~ $ pybombs recipes add gr-recipes git+https://github.com/gnuradio/gr-recipes.git $ pybombs recipes add gr-etcetera git+https://github.com/gnuradio/gr-etcetera.git -~~~~~~ +~~~~~~ Download, build and install GNU Radio, related drivers and some other extra modules into the directory ```/path/to/prefix``` (replace this path by your preferred one, for instance ```$HOME/sdr```): -~~~~~~ +~~~~~~ $ pybombs prefix init /path/to/prefix -a myprefix -R gnuradio-default -~~~~~~ +~~~~~~ This will perform a local installation of the dependencies under ```/path/to/prefix```, so they will not be visible when opening a new terminal. In order to make them available, you will need to set up the adequate environment variables: -~~~~~~ +~~~~~~ $ cd /path/to/prefix $ . ./setup_env.sh -~~~~~~ +~~~~~~ Now you are ready to use GNU Radio and to jump into building GNSS-SDR after installing a few other dependencies. Actually, those are steps that PyBOMBS can do for you as well: -~~~~~~ +~~~~~~ $ pybombs install gnss-sdr -~~~~~~ +~~~~~~ -By default, PyBOMBS installs the ‘next’ branch of GNSS-SDR development, which is the most recent version of the source code. This behaviour can be modified by altering the corresponding recipe at ```$HOME/.pybombs/recipes/gr-recipes/gnss-sdr.lwr``` +By default, PyBOMBS installs the ‘next’ branch of GNSS-SDR development, which is the most recent version of the source code. This behaviour can be modified by altering the corresponding recipe at ```$HOME/.pybombs/recipes/gr-recipes/gnss-sdr.lwr``` -In case you do not want to use PyBOMBS and prefer to build and install GNSS-SDR step by step (i.e., cloning the repository and doing the usual ```cmake .. && make && make install``` dance), Armadillo, GFlags, Glog and GunTLS can be installed either by using PyBOMBS: +In case you do not want to use PyBOMBS and prefer to build and install GNSS-SDR step by step (i.e., cloning the repository and doing the usual ```cmake .. && make && make install``` dance), Armadillo, GFlags, Glog and GunTLS can be installed either by using PyBOMBS: -~~~~~~ +~~~~~~ $ pybombs install armadillo gflags glog gnutls -~~~~~~ +~~~~~~ or manually as explained below, and then please follow instructions on how to [download the source code and build GNSS-SDR](#download-and-build-linux). @@ -121,9 +128,9 @@ or manually as explained below, and then please follow instructions on how to [d $ sudo apt-get install libopenblas-dev liblapack-dev # For Debian/Ubuntu/LinuxMint $ sudo yum install lapack-devel blas-devel # For Fedora/CentOS/RHEL $ sudo zypper install lapack-devel blas-devel # For OpenSUSE -$ wget http://sourceforge.net/projects/arma/files/armadillo-7.200.2.tar.xz -$ tar xvfz armadillo-7.200.2.tar.xz -$ cd armadillo-7.200.2 +$ wget http://sourceforge.net/projects/arma/files/armadillo-7.400.1.tar.xz +$ tar xvfz armadillo-7.400.1.tar.xz +$ cd armadillo-7.400.1 $ cmake . $ make $ sudo make install @@ -131,11 +138,11 @@ $ sudo make install The full stop separated from ```cmake``` by a space is important. [CMake](http://www.cmake.org/ "CMake's Homepage") will figure out what other libraries are currently installed and will modify Armadillo's configuration correspondingly. CMake will also generate a run-time armadillo library, which is a combined alias for all the relevant libraries present on your system (eg. BLAS, LAPACK and ATLAS). - + #### Install [Gflags](https://github.com/gflags/gflags "Gflags' Homepage"), a commandline flags processing module for C++: -~~~~~~ +~~~~~~ $ wget https://github.com/gflags/gflags/archive/v2.1.2.tar.gz $ tar xvfz v2.1.2.tar.gz $ cd gflags-2.1.2 @@ -143,50 +150,50 @@ $ cmake -DBUILD_SHARED_LIBS=ON -DBUILD_STATIC_LIBS=OFF -DBUILD_gflags_nothreads_ $ make $ sudo make install $ sudo ldconfig -~~~~~~ +~~~~~~ + - #### Install [Glog](https://github.com/google/glog "Glog's Homepage"), a library that implements application-level logging: -~~~~~~ -$ wget https://github.com/google/glog/archive/v0.3.4.tar.gz -$ tar xvfz v0.3.4.tar.gz +~~~~~~ +$ wget https://github.com/google/glog/archive/v0.3.4.tar.gz +$ tar xvfz v0.3.4.tar.gz $ cd glog-0.3.4 $ ./configure $ make $ sudo make install $ sudo ldconfig -~~~~~~ +~~~~~~ + - #### Build the [Google C++ Testing Framework](https://github.com/google/googletest "Googletest Homepage"), also known as googletest: -~~~~~~ +~~~~~~ $ wget https://github.com/google/googletest/archive/release-1.7.0.zip $ unzip release-1.7.0.zip $ cd googletest-release-1.7.0 $ cmake . $ make -~~~~~~ +~~~~~~ Please **DO NOT install** googletest (do *not* type ```sudo make install```). Every user needs to compile his tests using the same compiler flags used to compile the installed Google Test libraries; otherwise he may run into undefined behaviors (i.e. the tests can behave strangely and may even crash for no obvious reasons). The reason is that C++ has this thing called the One-Definition Rule: if two C++ source files contain different definitions of the same class/function/variable, and you link them together, you violate the rule. The linker may or may not catch the error (in many cases it is not required by the C++ standard to catch the violation). If it does not, you get strange run-time behaviors that are unexpected and hard to debug. If you compile Google Test and your test code using different compiler flags, they may see different definitions of the same class/function/variable (e.g. due to the use of ```#if``` in Google Test). Therefore, for your sanity, we recommend to avoid installing pre-compiled Google Test libraries. Instead, each project should compile Google Test itself such that it can be sure that the same flags are used for both Google Test and the tests. The building system of GNSS-SDR does the compilation and linking of googletest to its own tests; it is only required that you tell the system where the googletest folder that you downloaded resides. Just add to your ```$HOME/.bashrc``` file the following line: -~~~~~~ +~~~~~~ export GTEST_DIR=/home/username/gtest-1.7.0 -~~~~~~ +~~~~~~ + +changing /home/username/gtest-1.7.0 by the actual directory where you downloaded googletest. -changing /home/username/gtest-1.7.0 by the actual directory where you downloaded googletest. - #### Install the [GnuTLS library](http://www.gnutls.org/ "GnuTLS's Homepage"): -~~~~~~ +~~~~~~ $ sudo apt-get install libgnutls-openssl-dev # For Debian/Ubuntu/LinuxMint $ sudo yum install libgnutls-openssl-devel # For Fedora/CentOS/RHEL -~~~~~~ +~~~~~~ In case the GnuTLS library with openssl extensions package is not available in your GNU/Linux distribution, GNSS-SDR can also work well with OpenSSL. @@ -194,97 +201,97 @@ In case the GnuTLS library with openssl extensions package is not available in y ### Clone GNSS-SDR's Git repository: -~~~~~~ +~~~~~~ $ git clone https://github.com/gnss-sdr/gnss-sdr -~~~~~~ +~~~~~~ Cloning the GNSS-SDR repository as in the line above will create a folder named gnss-sdr with the following structure: -~~~~~~ +~~~~~~ |-gnss-sdr |---build <- where gnss-sdr is built. |---cmake <- CMake-related files. |---conf <- Configuration files. Each file defines one particular receiver. |---data <- Populate this folder with your captured data. |---docs <- Contains documentation-related files. - |---install <- Executables will be placed here. + |---install <- Executables will be placed here. |---src <- Source code folder. |-----algorithms <- Signal processing blocks. |-----core <- Control plane, interfaces, systems' parameters. |-----main <- Main function of the C++ program. |-----tests <- QA code. |-----utils <- some utilities (e.g. Matlab scripts). -~~~~~~ +~~~~~~ By default, you will be in the 'master' branch of the Git repository, which corresponds to the lastest stable release. If you want to try the latest developments, you can use the 'next' branch by going to the newly created gnss-sdr folder doing: -~~~~~~ +~~~~~~ $ git checkout next -~~~~~~ +~~~~~~ -More information about GNSS-SDR-specific Git usage and pointers to further readings can be found at out guide about [how to contribute to the source code](http://gnss-sdr.org/documentation/how-contribute-source-code "How to contribute to the source code"). +More information about GNSS-SDR-specific Git usage and pointers to further readings can be found at our [Git tutorial](http://gnss-sdr.org/docs/tutorials/using-git/ "Using Git"). ### Build and install GNSS-SDR Go to GNSS-SDR's build directory: -~~~~~~ +~~~~~~ $ cd gnss-sdr/build -~~~~~~ +~~~~~~ Configure and build the application: -~~~~~~ +~~~~~~ $ cmake ../ $ make -~~~~~~ +~~~~~~ By default, CMake will build the Release version, meaning that the compiler will generate a fast, optimized executable. This is the recommended build type when using a RF front-end and you need to attain real time. If working with a file (and thus without real-time constraints), you may want to obtain more information about the internals of the receiver, as well as more fine-grained logging. This can be done by building the Debug version, by doing: -~~~~~~ +~~~~~~ $ cmake -DCMAKE_BUILD_TYPE=Debug ../ $ make -~~~~~~ +~~~~~~ This will create four executables at gnss-sdr/install, namely ```gnss-sdr```, ```run_tests```, ```front-end-cal``` and ```volk_gnsssdr_profile```. You can run them from that folder, but if you prefer to install ```gnss-sdr``` on your system and have it available anywhere else, do: -~~~~~~ +~~~~~~ $ sudo make install -~~~~~~ +~~~~~~ This will also make a copy of the conf/ folder into /usr/local/share/gnss-sdr/conf for your reference. We suggest to create a working directory at your preferred location and store your own configuration and data files there. You could be interested in creating the documentation by doing: -~~~~~~ +~~~~~~ $ make doc -~~~~~~ +~~~~~~ from the gnss-sdr/build folder. This will generate HTML documentation that can be retrieved pointing your browser of preference to build/docs/html/index.html. If a LaTeX installation is detected in your system, -~~~~~~ +~~~~~~ $ make pdfmanual -~~~~~~ +~~~~~~ will create a PDF manual at build/docs/GNSS-SDR_manual.pdf. Finally, -~~~~~~ +~~~~~~ $ make doc-clean -~~~~~~ +~~~~~~ will remove the content of previously-generated documentation. -GNSS-SDR comes with a library which is a module of the Vector-Optimized Library of Kernels (so called [VOLK_GNSSSDR](./src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/README.md)) and a profiler that will build a config file for the best SIMD architecture for your processor. Run ```volk_gnsssdr_profile``` that is installed into ```$PREFIX/bin```. This program tests all known VOLK kernels for each architecture supported by the processor. When finished, it will write to ```$HOME/.volk_gnsssdr/volk_gnsssdr_config``` the best architecture for the VOLK function. This file is read when using a function to know the best version of the function to execute. It mimics GNU Radio's [VOLK](http://libvolk.org/) library, so if you still have not run ```volk_profile```, this is a good moment to do so. +GNSS-SDR comes with a library which is a module of the Vector-Optimized Library of Kernels (so called [VOLK_GNSSSDR](./src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/README.md)) and a profiler that will build a config file for the best SIMD architecture for your processor. Run ```volk_gnsssdr_profile``` that is installed into ```$PREFIX/bin```. This program tests all known VOLK kernels for each architecture supported by the processor. When finished, it will write to ```$HOME/.volk_gnsssdr/volk_gnsssdr_config``` the best architecture for the VOLK function. This file is read when using a function to know the best version of the function to execute. It mimics GNU Radio's [VOLK](http://libvolk.org/) library, so if you still have not run ```volk_profile```, this is a good moment to do so. If you are using Eclipse as your development environment, CMake can create the project for you. Type: -~~~~~~ +~~~~~~ $ cmake -G "Eclipse CDT4 - Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug -DECLIPSE_CDT4_GENERATE_SOURCE_PROJECT=TRUE -DCMAKE_ECLIPSE_VERSION=3.7 -DCMAKE_ECLIPSE_MAKE_ARGUMENTS=-j8 ../ -~~~~~~ +~~~~~~ and then import the created project file into Eclipse: @@ -305,31 +312,31 @@ $ cmake ../ $ make $ sudo make install $ sudo ldconfig -~~~~~~ +~~~~~~ -Then configure GNSS-SDR to build the GN3S_Signal_Source by: +Then configure GNSS-SDR to build the `GN3S_Signal_Source` by: -~~~~~~ +~~~~~~ $ cd gnss-sdr/build $ cmake -DENABLE_GN3S=ON ../ $ make $ sudo make install -~~~~~~ +~~~~~~ In order to gain access to USB ports, gnss-sdr should be used as root. In addition, the driver requires access to the GN3S firmware binary file. It should be available in the same path where the application is called. -GNSS-SDR comes with a pre-compiled custom GN3S firmware available at gr-gn3s/firmware/GN3S_v2/bin/gn3s_firmware.ihx. Please copy this file to the application path. +GNSS-SDR comes with a pre-compiled custom GN3S firmware available at gr-gn3s/firmware/GN3S_v2/bin/gn3s_firmware.ihx. Please copy this file to the application path. -(in order to disable the GN3S_Signal_Source compilation, you can pass -DENABLE_GN3S=OFF to cmake and build GNSS-SDR again). +(in order to disable the `GN3S_Signal_Source` compilation, you can pass `-DENABLE_GN3S=OFF` to cmake and build GNSS-SDR again). More info at https://github.com/gnss-sdr/gr-gn3s - + ###### Build OSMOSDR support (OPTIONAL): -Install the [OsmoSDR](http://sdr.osmocom.org/trac/ "OsmoSDR's Homepage") library and GNU Radio's source block: +Install the [OsmoSDR](http://sdr.osmocom.org/trac/ "OsmoSDR's Homepage") library and GNU Radio's source block: -~~~~~~ +~~~~~~ $ git clone git://git.osmocom.org/osmo-sdr.git $ cd osmo-sdr/software/libosmosdr $ mkdir build @@ -347,18 +354,18 @@ $ cmake ../ -Wno-dev $ make $ sudo make install $ sudo ldconfig -~~~~~~ +~~~~~~ -Then, configure GNSS-SDR to build the Osmosdr_Signal_Source by: +Then, configure GNSS-SDR to build the `Osmosdr_Signal_Source` by: -~~~~~~ +~~~~~~ $ cmake -DENABLE_OSMOSDR=ON ../ $ make $ sudo make install -~~~~~~ +~~~~~~ -(in order to disable the Osmosdr_Signal_Source compilation, you can pass -DENABLE_OSMOSDR=OFF to cmake and build GNSS-SDR again). +(in order to disable the `Osmosdr_Signal_Source` compilation, you can pass `DENABLE_OSMOSDR=OFF` to cmake and build GNSS-SDR again). @@ -366,22 +373,22 @@ $ sudo make install In order to enable the building of blocks that use OpenCL, type: -~~~~~~ +~~~~~~ $ cmake -DENABLE_OPENCL=ON ../ $ make $ sudo make install -~~~~~~ +~~~~~~ ###### Build CUDA support (OPTIONAL): In order to enable the building of blocks that use CUDA, NVIDIA's parallel programming model that enables graphics processing unit (GPU) acceleration for data-parallel computations, first you need to install the CUDA Toolkit from [NVIDIA Developers Download page](https://developer.nvidia.com/cuda-downloads "CUDA Downloads"). Make sure that the SDK samples build well. Then, build GNSS-SDR by doing: -~~~~~~ +~~~~~~ $ cmake -DENABLE_CUDA=ON ../ $ make $ sudo make install -~~~~~~ +~~~~~~ Of course, you will also need a GPU that [supports CUDA](https://developer.nvidia.com/cuda-gpus "CUDA GPUs"). @@ -390,33 +397,33 @@ Of course, you will also need a GPU that [supports CUDA](https://developer.nvidi In order to build an executable that not depends on the specific SIMD instruction set that is present in the processor of the compiling machine, so other users can execute it in other machines without those particular sets, use: -~~~~~~ +~~~~~~ $ cmake -DENABLE_GENERIC_ARCH=ON ../ -$ make +$ make $ sudo make install -~~~~~~ +~~~~~~ Using this option, all SIMD instructions are exclusively accessed via VOLK, which automatically includes versions of each function for different SIMD instruction sets, then detects at runtime which to use, or if there are none, substitutes a generic, non-SIMD implementation. -Mac OS X +macOS and Mac OS X --------- -### Mac OS X 10.9 (Mavericks), 10.10 (Yosemite) and 10.11 (El Capitan) +### macOS Sierra, Mac OS X 10.11 (El Capitan), 10.10 (Yosemite) and 10.9 (Mavericks). If you still have not installed [Xcode](http://developer.apple.com/xcode/ "Xcode"), do it now from the App Store (it's free). You will also need the Xcode Command Line Tools. Launch the Terminal, found in /Applications/Utilities/, and type: -~~~~~~ +~~~~~~ $ xcode-select --install -~~~~~~ +~~~~~~ -Agree to Xcode license: +Agree to Xcode license: -~~~~~~ +~~~~~~ $ sudo xcodebuild -license -~~~~~~ +~~~~~~ Software pre-requisites can be installed using either [Macports](#macports) or [Homebrew](#homebrew). @@ -426,7 +433,7 @@ First, [install Macports](http://www.macports.org/install.php). If you are upgra In a terminal, type: -~~~~~~ +~~~~~~ $ sudo port selfupdate $ sudo port upgrade outdated $ sudo port install doxygen +latex @@ -434,19 +441,19 @@ $ sudo port install gnuradio $ sudo port install armadillo $ sudo port install gnutls $ sudo port install google-glog +gflags -~~~~~~ +~~~~~~ You also might need to activate a Python installation. The list of installed versions can be retrieved with: -~~~~~~ +~~~~~~ $ port select list python -~~~~~~ +~~~~~~ and you can activate a certain version (2.7 works well) by typing: -~~~~~~ +~~~~~~ $ sudo port select --set python python27 -~~~~~~ +~~~~~~ #### Homebrew @@ -465,42 +472,42 @@ $ brew install glog gflags gnutls Finally, you are ready to clone the GNSS-SDR repository, configure and build the software: -~~~~~~ +~~~~~~ $ git clone https://github.com/gnss-sdr/gnss-sdr $ cd gnss-sdr/build $ cmake ../ $ make -~~~~~~ +~~~~~~ This will create three executables at gnss-sdr/install, namely ```gnss-sdr```, ```run_tests``` and ```volk_gnsssdr_profile```. You can install the software receiver on your system by doing: -~~~~~~ +~~~~~~ $ sudo make install -~~~~~~ +~~~~~~ Note, it is advisable not to run the install step in a homebrew environment. The documentation can be built by: -~~~~~~ +~~~~~~ $ make doc -~~~~~~ +~~~~~~ and can be viewed doing: -~~~~~~ +~~~~~~ $ open ./docs/html/index.html -~~~~~~ +~~~~~~ GNSS-SDR comes with a library which is a module of the Vector-Optimized Library of Kernels (so called [VOLK_GNSSSDR](./src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/README.md)) and a profiler that will build a config file for the best SIMD architecture for your processor. Run ```volk_gnsssdr_profile``` that is installed into ```$PREFIX/bin```. This program tests all known VOLK kernels for each architecture supported by the processor. When finished, it will write to ```$HOME/.volk_gnsssdr/volk_gnsssdr_config``` the best architecture for the VOLK function. This file is read when using a function to know the best version of the function to execute. It mimics GNU Radio's [VOLK](http://libvolk.org/) library, so if you still have not run ```volk_profile```, this is a good moment to do so. -###### Other package managers +###### Other package managers -GNU Radio and other dependencies can also be installed using other package managers than Macports, such as [Fink](http://www.finkproject.org/ "Fink") or [Homebrew](http://brew.sh/ "Homebrew"). Since the version of Python that ships with OS X is great for learning but it is not good for development, you could have another Python executable in a non-standard location. If that is the case, you need to inform GNSS-SDR's configuration system by defining the PYTHON_EXECUTABLE variable as: +GNU Radio and other dependencies can also be installed using other package managers than Macports, such as [Fink](http://www.finkproject.org/ "Fink") or [Homebrew](http://brew.sh/ "Homebrew"). Since the version of Python that ships with OS X is great for learning but it is not good for development, you could have another Python executable in a non-standard location. If that is the case, you need to inform GNSS-SDR's configuration system by defining the `PYTHON_EXECUTABLE` variable as: ~~~~~~ cmake -DPYTHON_EXECUTABLE=/path/to/bin/python ../ -~~~~~~ +~~~~~~ In case you have installed Macports in a non-standard location, you can use: @@ -526,29 +533,29 @@ Updating GNSS-SDR If you cloned GNSS-SDR some time ago, it is possible that some developer has updated files at the Git repository. You can update your working copy by doing: -~~~~~~ +~~~~~~ $ git checkout master # Switch to branch you want to update $ git pull origin master # Download the newest code from our repository -~~~~~~ +~~~~~~ -or, if you want to test the lastest developments: +or, if you want to test the latest developments: -~~~~~~ -$ git checkout next -$ git pull origin next -~~~~~~ +~~~~~~ +$ git checkout next +$ git pull origin next +~~~~~~ Before rebuilding the source code, it is safe (and recommended) to remove the remainders of old compilations: -~~~~~~ +~~~~~~ $ rm -rf gnss-sdr/build/* -~~~~~~ +~~~~~~ -If you are interested in contributing to the development of GNSS-SDR, please check out [how to do it](http://gnss-sdr.org/documentation/how-contribute-source-code "How to contribute to GNSS-SDR source code"). +If you are interested in contributing to the development of GNSS-SDR, please check out [how to do it](http://gnss-sdr.org/contribute/ "How to contribute to GNSS-SDR source code"). + +There is a more controlled way to upgrade your repository, which is to use the Git commands ```fetch``` and ```merge```, as described [here](http://gnss-sdr.org/docs/tutorials/using-git/). -There is a more controlled way to upgrade your repository, which is to use the Git commands ```fetch``` and ```merge```, as described [here](http://gnss-sdr.org/source-code). - Getting started @@ -559,7 +566,7 @@ Getting started 2. In post-processing mode, you have to provide a captured GNSS signal file. 1. The signal file can be easily recorded using the GNU Radio file sink in ```gr_complex``` mode. 2. You will need a GPS active antenna, a [USRP](http://www.ettus.com/product) and a suitable USRP daughter board to receive GPS L1 C/A signals. GNSS-SDR require to have at least 2 MHz of bandwidth in 1.57542 GHz. (remember to enable the DC bias with the daughter board jumper). -We use a [DBSRX2](https://www.ettus.com/product/details/DBSRX2) to do the task, but you can try the newer Ettus' daughter boards as well. +We use a [DBSRX2](https://www.ettus.com/product/details/DBSRX2) to do the task, but you can try the newer Ettus' daughter boards as well. 3. The easiest way to capture a signal file is to use the GNU Radio Companion GUI. Only two blocks are needed: a USRP signal source connected to complex float file sink. You need to tune the USRP central frequency and decimation factor using USRP signal source properties box. We suggest using a decimation factor of 20 if you use the USRP2. This will give you 100/20 = 5 MSPS which will be enough to receive GPS L1 C/A signals. The front-end gain should also be configured. In our test with the DBSRX2 we obtained good results with ```G=50```. 4. Capture at least 80 seconds of signal in open sky conditions. During the process, be aware of USRP driver buffer underuns messages. If your hard disk is not fast enough to write data at this speed you can capture to a virtual RAM drive. 80 seconds of signal at 5 MSPS occupies less than 3 Gbytes using ```gr_complex```. 5. If you have no access to a RF front-end, you can download a sample raw data file (that contains GPS and Galileo signals) from [here](http://sourceforge.net/projects/gnss-sdr/files/data/). @@ -577,7 +584,7 @@ We use a [DBSRX2](https://www.ettus.com/product/details/DBSRX2) to do the task, ```$ gnss-sdr --config_file=/path/to/my_receiver.conf``` The program reports the current status in text mode, directly to the terminal window. If all goes well, and GNSS-SDR is able to successfully track and decode at least 4 satellites, you will get PVT fixes. The program will write .kml, .geojson and RINEX files in the folder from which ```gnss-sdr``` was run. In addition to the console output, GNSS-SDR also writes log files at /tmp/ (configurable with the commandline flag ```./gnss-sdr --log_dir=/path/to/log```). - +For more information, check out our [quick start guide](http://gnss-sdr.org/quick-start-guide/). Using GNSS-SDR @@ -585,22 +592,20 @@ Using GNSS-SDR With GNSS-SDR, you can define you own receiver, work with captured raw data or from a RF front-end, dump into files intermediate signals, or tune every single algorithm used in the signal processing. All the configuration is done in a single file. Those configuration files reside at the [gnss-sdr/conf/](./conf/) folder (or at /usr/local/share/gnss-sdr/conf if you installed the program). By default, the executable ```gnss-sdr``` will read the configuration available at ```gnss-sdr/conf/gnss-sdr.conf``` (or at (usr/local/share/gnss-sdr/conf/default.conf if you installed the program). You can edit that file to fit your needs, or even better, define a new ```my_receiver.conf``` file with your own configuration. This new receiver can be generated by invoking gnss-sdr with the ```--config_file``` flag pointing to your configuration file: -~~~~~~ +~~~~~~ $ gnss-sdr --config_file=/path/to/my_receiver.conf -~~~~~~ - -You can see a guide of available implementations at ```gnss-sdr/conf/master.conf```. That folder contains other working examples as well. If you have a working configuration and want to share it will others, please tell us and we will be happy to upload it to the server. +~~~~~~ You can use a single configuration file for processing different data files, specifying the file to be processed with the ```--signal_source``` flag: -~~~~~~ +~~~~~~ $ gnss-sdr --config_file=../conf/my_receiver.conf --signal_source=../data/my_captured_data.dat -~~~~~~ +~~~~~~ This will override the ```SignalSource.filename``` specified in the configuration file. - + Control plane @@ -614,38 +619,38 @@ The [GNSSFlowgraph](./src/core/receiver/gnss_flowgraph.h) class is responsible f The Control Plane is in charge of creating a flowgraph according to the configuration and then managing the modules. Configuration allows users to define in an easy way their own custom receiver by specifying the flowgraph (type of signal source, number of channels, algorithms to be used for each channel and each module, strategies for satellite selection, type of output format, etc.). Since it is difficult to foresee what future module implementations will be needed in terms of configuration, we used a very simple approach that can be extended without a major impact in the code. This can be achieved by simply mapping the names of the variables in the modules with the names of the parameters in the configuration. - + ### Configuration Properties are passed around within the program using the [ConfigurationInterface](./src/core/interfaces/configuration_interface.h) class. There are two implementations of this interface: [FileConfiguration](./src/core/receiver/file_configuration.h) and [InMemoryConfiguration](./src/core/receiver/in_memory_configuration.h). FileConfiguration reads the properties (pairs of property name and value) from a file and stores them internally. InMemoryConfiguration does not read from a file; it remains empty after instantiation and property values and names are set using the set property method. FileConfiguration is intended to be used in the actual GNSS-SDR application whereas InMemoryConfiguration is intended to be used in tests to avoid file-dependency in the file system. Classes that need to read configuration parameters will receive instances of ConfigurationInterface from where they will fetch the values. For instance, parameters related to SignalSource should look like this: -~~~~~~ +~~~~~~ SignalSource.parameter1=value1 SignalSource.parameter2=value2 -~~~~~~ +~~~~~~ The name of these parameters can be anything but one reserved word: implementation. This parameter indicates in its value the name of the class that has to be instantiated by the factory for that role. For instance, if our signal source is providing data already at baseband and thus we want to use the implementation [Pass_Through](./src/algorithms/libs/pass_through.h) for module SignalConditioner, the corresponding line in the configuration file would be -~~~~~~ +~~~~~~ SignalConditioner.implementation=Pass_Through -~~~~~~ +~~~~~~ Since the configuration is just a set of property names and values without any meaning or syntax, the system is very versatile and easily extendable. Adding new properties to the system only implies modifications in the classes that will make use of these properties. In addition, the configuration files are not checked against any strict syntax so it is always in a correct status (as long as it contains pairs of property names and values in the [INI format](http://en.wikipedia.org/wiki/INI_file)). - + ### GNSS block factory Hence, the application defines a simple accessor class to fetch the configuration pairs of values and passes them to a factory class called [GNSSBlockFactory](./src/core/receiver/gnss_block_factory.h). This factory decides, according to the configuration, which class needs to be instantiated and which parameters should be passed to the constructor. Hence, the factory encapsulates the complexity of blocks' instantiation. With that approach, adding a new block that requires new parameters will be as simple as adding the block class and modifying the factory to be able to instantiate it. This loose coupling between the blocks' implementations and the syntax of the configuration enables extending the application capacities in a high degree. It also allows to produce fully customized receivers, for instance a testbed for acquisition algorithms, and to place observers at any point of the receiver chain. - +More information can be found at the [Control Plane page](http://gnss-sdr.org/docs/control-plane/). Signal Processing plane ----------------------- -GNU Radio's class ```gr::basic_block``` is the abstract base class for all signal processing blocks, a bare abstraction of an entity that has a name and a set of inputs and outputs. It is never instantiated directly; rather, this is the abstract parent class of both ```gr::hier_block2```, which is a recursive container that adds or removes processing or hierarchical blocks to the internal graph, and ```gr::block```, which is the abstract base class for all the processing blocks. +GNU Radio's class ```gr::basic_block``` is the abstract base class for all signal processing blocks, a bare abstraction of an entity that has a name and a set of inputs and outputs. It is never instantiated directly; rather, this is the abstract parent class of both ```gr::hier_block2```, which is a recursive container that adds or removes processing or hierarchical blocks to the internal graph, and ```gr::block```, which is the abstract base class for all the processing blocks. ![](./docs/doxygen/images/ClassHierarchy.png) @@ -657,7 +662,7 @@ Subclassing GNSSBlockInterface, we defined interfaces for the GNSS receiver bloc Internally, GNSS-SDR makes use of the complex data types defined by [VOLK](http://libvolk.org/ "Vector-Optimized Library of Kernels home"). They are fundamental for handling sample streams in which samples are complex numbers with real and imaginary components of 8, 16 or 32 bits, common formats delivered by GNSS (and generic SDR) radio frequency front-ends. The following list shows the data type names that GNSS-SDR exposes through the configuration file: -- **`byte`**: Signed integer, 8-bit two's complement number ranging from -128 to 127. C++ type name: `int8_t`. +- **`byte`**: Signed integer, 8-bit two's complement number ranging from -128 to 127. C++ type name: `int8_t`. - **`short`**: Signed integer, 16-bit two's complement number ranging from -32768 to 32767. C++ type name: `int16_t` . - **`float`**: Defines numbers with fractional parts, can represent values ranging from approx. 1.5e-45 to 3.4e+38 with a precision of 7 digits (32 bits). C++ type name: `float`. - **`ibyte`**: Interleaved (I&Q) stream of samples of type `byte`. C++ type name: `int8_t`. @@ -667,34 +672,34 @@ Internally, GNSS-SDR makes use of the complex data types defined by [VOLK](http: - **`gr_complex`**: Complex samples, with real and imaginary parts of type `float`. C++ type name: `std::complex`. - +More information about the available processing blocks and their configuration parameters can be found at the [Signal Processing Blocks documentation page](http://gnss-sdr.org/docs/sp-blocks/). ### Signal Source -The input of a software receiver are the raw bits that come out from the front-end's analog-to-digital converter (ADC). Those bits can be read from a file stored in the hard disk or directly in real-time from a hardware device through USB or Ethernet buses. +The input of a software receiver are the raw bits that come out from the front-end's analog-to-digital converter (ADC). Those bits can be read from a file stored in the hard disk or directly in real-time from a hardware device through USB or Ethernet buses. The Signal Source module is in charge of implementing the hardware driver, that is, the portion of the code that communicates with the RF front-end and receives the samples coming from the ADC. This communication is usually performed through USB or Ethernet buses. Since real-time processing requires a highly optimized implementation of the whole receiver, this module also allows to read samples from a file stored in a hard disk, and thus processing without time constraints. Relevant parameters of those samples are the intermediate frequency (or baseband I&Q components), the sampling rate and number of bits per sample, that must be specified by the user in the configuration file. This module also performs bit-depth adaptation, since most of the existing RF front-ends provide samples quantized with 2 or 3 bits, while operations inside the processor are performed on 32- or 64-bit words, depending on its architecture. Although there are implementations of the most intensive computational processes (mainly correlation) that take advantage of specific data types and architectures for the sake of efficiency, the approach is processor-specific and hardly portable. We suggest to keep signal samples in standard data types and letting the compiler select the best library version (implemented using SIMD or any other processor-specific technology) of the required routines for a given processor. - + ***Example: File Signal Source*** The user can configure the receiver for reading from a file, setting in the configuration file the data file location, sample format, and the sampling frequency and intermediate frequency at what the signal was originally captured. - -~~~~~~ + +~~~~~~ ;######### SIGNAL_SOURCE CONFIG ############ SignalSource.implementation=File_Signal_Source SignalSource.filename=/home/user/gnss-sdr/data/my_capture.dat SignalSource.item_type=gr_complex SignalSource.sampling_frequency=4000000 ; Sampling frequency in [Hz] -SignalSource.freq=1575420000 ; RF front-end center frequency in [Hz] +SignalSource.freq=1575420000 ; RF front-end center frequency in [Hz] ~~~~~~ Type ```gr_complex``` refers to a GNU Radio typedef equivalent to ```std::complex```. In order to save some storage space, you might wanted to store your signal in a more efficient format such as an I/Q interleaved ```short`` integer sample stream. In that case, change the corresponding line to: -~~~~~~ +~~~~~~ SignalSource.item_type=short -~~~~~~ +~~~~~~ In this latter case, you will need to convert the interleaved I/Q samples to a complex stream via Data Type Adapter block (see below). @@ -721,13 +726,13 @@ Finally, if the data is stored as shorts ```item_type=short```, then it may be s The output data type is either ```float``` or ```gr_complex``` depending on whether or not ```sample_type``` is real. Example: -~~~~~~ +~~~~~~ ;######### SIGNAL_SOURCE CONFIG ############ SignalSource.implementation=Two_Bit_Packed_File_Signal_Source SignalSource.filename=/data/my_capture.datz SignalSource.item_type=short -SignalSource.sampling_frequency=60000000 -SignalSource.freq=1575468750 +SignalSource.sampling_frequency=60000000 +SignalSource.freq=1575468750 SignalSource.samples=6000000000 ; Notice that 0 indicates the entire file. SignalSource.repeat=false SignalSource.dump=false @@ -736,7 +741,7 @@ SignalSource.enable_throttle_control=false SignalSource.sample_type=iq SignalSource.big_endian_items=true SignalSource.big_endian_bytes=false -~~~~~~ +~~~~~~ @@ -745,20 +750,20 @@ SignalSource.big_endian_bytes=false The user may prefer to use a [UHD](http://code.ettus.com/redmine/ettus/projects/uhd/wiki)-compatible RF front-end and try real-time processing. For instance, for a USRP1 + DBSRX daughterboard, use: -~~~~~~ +~~~~~~ ;######### SIGNAL_SOURCE CONFIG ############ SignalSource.implementation=UHD_Signal_Source SignalSource.item_type=gr_complex SignalSource.sampling_frequency=4000000 ; Sampling frequency in [Hz] -SignalSource.freq=1575420000 ; RF front-end center frequency in [Hz] +SignalSource.freq=1575420000 ; RF front-end center frequency in [Hz] SignalSource.gain=60 ; Front-end gain in dB SignalSource.subdevice=B:0 ; UHD subdevice specification (for USRP1 use A:0 or B:0, for USRP B210 use A:0) -~~~~~~ +~~~~~~ ***Example: Configuring the USRP X300 with two front-ends for receiving signals in L1 and L2 bands*** -~~~~~~ +~~~~~~ ;######### SIGNAL_SOURCE CONFIG ############ SignalSource.implementation=UHD_Signal_Source SignalSource.device_address=192.168.40.2 ; Put your USRP IP address here @@ -777,34 +782,34 @@ SignalSource.freq1=1227600000 SignalSource.gain1=50 SignalSource.samples1=0 SignalSource.dump1=false -~~~~~~ +~~~~~~ ***Example: OsmoSDR-compatible Signal Source*** [OsmoSDR](http://sdr.osmocom.org/trac) is a small form-factor, inexpensive software defined radio project. It provides a driver for several front-ends, such as [RTL-based dongles](http://sdr.osmocom.org/trac/wiki/rtl-sdr), HackRF, bladeRF, etc. Note that not all the OsmoSDR-compatible devices can work as radio frequency front-ends for proper GNSS signal reception, please check the specifications. For suitable RF front-ends, you can use: -~~~~~~ +~~~~~~ ;######### SIGNAL_SOURCE CONFIG ############ SignalSource.implementation=Osmosdr_Signal_Source SignalSource.item_type=gr_complex SignalSource.sampling_frequency=2000000 -SignalSource.freq=1575420000 +SignalSource.freq=1575420000 SignalSource.rf_gain=40 SignalSource.if_gain=30 SignalSource.enable_throttle_control=false SignalSource.osmosdr_args=rtl_tcp,offset_tune=1 -~~~~~~ +~~~~~~ In case of using a Zarlink's RTL2832 based DVB-T receiver, you can even use the ```rtl_tcp``` I/Q server in order to use the USB dongle remotely. In a terminal, type: -~~~~~~ +~~~~~~ $ rtl_tcp -a 127.0.0.1 -p 1234 -f 1575420000 -g 0 -s 2000000 -~~~~~~ +~~~~~~ and use the following configuration: -~~~~~~ +~~~~~~ ;######### SIGNAL_SOURCE CONFIG ############ SignalSource.implementation=RtlTcp_Signal_Source SignalSource.item_type=gr_complex @@ -822,7 +827,7 @@ SignalSource.swap_iq=false SignalSource.repeat=false SignalSource.dump=false SignalSource.dump_filename=../data/signal_source.dat -~~~~~~ +~~~~~~ Example for a dual-frequency receiver: @@ -848,7 +853,7 @@ SignalSource.dump1=false ~~~~~~ -Other examples are available at [gnss-sdr/conf/](./conf/). +More documentation and examples are available at the [Signal Source Blocks page](http://gnss-sdr.org/docs/sp-blocks/signal-source/). ### Signal Conditioner @@ -858,37 +863,38 @@ The signal conditioner is in charge of resampling the signal and delivering a re If your signal source is providing baseband signal samples of type ```gr_complex``` at 4 Msps, you can bypass the Signal Conditioner block by: -~~~~~~ +~~~~~~ SignalConditioner.implementation=Pass_Through -~~~~~~ +~~~~~~ If you need to adapt some aspect of you signal, you can enable the Signal Conditioner and configure three internal blocks: a data type adpater, an input signal and a resampler. -~~~~~~ +~~~~~~ ;#[Signal_Conditioner] enables this block. Then you have to configure [DataTypeAdapter], [InputFilter] and [Resampler] blocks SignalConditioner.implementation=Signal_Conditioner -~~~~~~ - +~~~~~~ + +More documentation at the [Signal Conditioner Blocks page](http://gnss-sdr.org/docs/sp-blocks/signal-conditioner/). #### Data type adapter This block changes the type of input data samples. If your signal source delivers data samples of type ```short```, you can use this block to convert them to ```gr_complex``` like this: -~~~~~~ +~~~~~~ ;######### DATA_TYPE_ADAPTER CONFIG ############ ;#implementation: [Pass_Through] disables this block DataTypeAdapter.implementation=Ishort_To_Complex -~~~~~~ +~~~~~~ - +More documentation at the [Data Type Adapter Blocks page](http://gnss-sdr.org/docs/sp-blocks/data-type-adapter/). #### Input filter -This blocks filters the input data. It can be combined with frequency translation for IF signals. The computation of the filter taps is based on parameters of GNU Radio's function [pm_remez](http://gnuradio.org/doc/doxygen/pm__remez_8h.html), that calculates the optimal (in the Chebyshev/minimax sense) FIR filter impulse response given a set of band edges, the desired reponse on those bands, and the weight given to the error in those bands. +This block filters the input data. It can be combined with frequency translation for IF signals. The computation of the filter taps is based on parameters of GNU Radio's function [pm_remez](http://gnuradio.org/doc/doxygen/pm__remez_8h.html), that calculates the optimal (in the Chebyshev/minimax sense) FIR filter impulse response given a set of band edges, the desired reponse on those bands, and the weight given to the error in those bands. The block can be configured like this: -~~~~~~ +~~~~~~ ;######### INPUT_FILTER CONFIG ############ ;#implementation: Use [Pass_Through] or [Fir_Filter] or [Freq_Xlating_Fir_Filter] ;#[Pass_Through] disables this block @@ -921,7 +927,7 @@ InputFilter.ampl2_end=0.0 InputFilter.band1_error=1.0 InputFilter.band2_error=1.0 -;#filter_type: one of "bandpass", "hilbert" or "differentiator" +;#filter_type: one of "bandpass", "hilbert" or "differentiator" InputFilter.filter_type=bandpass ;#grid_density: determines how accurately the filter will be constructed. @@ -933,27 +939,27 @@ InputFilter.grid_density=16 InputFilter.sampling_frequency=4000000 InputFilter.IF=0 InputFilter.decimation_factor=1 -~~~~~~ +~~~~~~ - +More documentation at the [Input Filter Blocks page](http://gnss-sdr.org/docs/sp-blocks/input-filter/). #### Resampler This block resamples the input data stream. The ```Direct_Resampler``` block implements a nearest neigbourhood interpolation: -~~~~~~ +~~~~~~ ;######### RESAMPLER CONFIG ############ ;#implementation: Use [Pass_Through] or [Direct_Resampler] ;#[Pass_Through] disables this block Resampler.implementation=Direct_Resampler Resampler.dump=false ; Dumps the resampled data to a file. Resampler.dump_filename=../data/resampler.dat ; log path and filename. -Resampler.item_type=gr_complex +Resampler.item_type=gr_complex Resampler.sample_freq_in=8000000 ; sample frequency of the input signal Resampler.sample_freq_out=4000000 ; desired sample frequency of the output signal -~~~~~~ +~~~~~~ - +More documentation at the [Resampler Blocks page](http://gnss-sdr.org/docs/sp-blocks/resampler/). ### Channel @@ -970,17 +976,17 @@ Each channel must be assigned to a GNSS signal, according to the following ident Example: Eight GPS L1 C/A channels. -~~~~~~ +~~~~~~ ;######### CHANNELS GLOBAL CONFIG ############ Channels_1C.count=8 ; Number of available GPS L1 C/A channels. Channels_1B.count=0 ; Number of available Galileo E1B channels. Channels.in_acquisition=1 ; Number of channels simultaneously acquiring -Channel.signal=1C ; -~~~~~~ +Channel.signal=1C ; +~~~~~~ Example: Four GPS L1 C/A and four Galileo E1B channels. -~~~~~~ +~~~~~~ ;######### CHANNELS GLOBAL CONFIG ############ Channels_1C.count=4 ; Number of available GPS L1 C/A channels. Channels_1B.count=4 ; Number of available Galileo E1B channels. @@ -993,48 +999,51 @@ Channel4.signal=1B ; Channel5.signal=1B ; Channel6.signal=1B ; Channel7.signal=1B ; -~~~~~~ +~~~~~~ This module is also in charge of managing the interplay between acquisition and tracking. Acquisition can be initialized in several ways, depending on the prior information available (called cold start when the receiver has no information about its position nor the satellites almanac; warm start when a rough location and the approximate time of day are available, and the receiver has a recently recorded almanac broadcast; or hot start when the receiver was tracking a satellite and the signal line of sight broke for a short period of time, but the ephemeris and almanac data is still valid, or this information is provided by other means), and an acquisition process can finish deciding that the satellite is not present, that longer integration is needed in order to confirm the presence of the satellite, or declaring the satellite present. In the latter case, acquisition process should stop and trigger the tracking module with coarse estimations of the synchronization parameters. The mathematical abstraction used to design this logic is known as finite state machine (FSM), that is a behavior model composed of a finite number of states, transitions between those states, and actions. For the implementation, we use the [Boost.Statechart library](http://www.boost.org/libs/statechart/doc/tutorial.html), which provides desirable features such as support for asynchronous state machines, multi-threading, type-safety, error handling and compile-time validation. - + The abstract class [ChannelInterface](./src/core/interfaces/channel_interface.h) represents an interface to a channel GNSS block. Check [Channel](./src/algorithms/channel/adapters/channel.h) for an actual implementation. - +More documentation at the [Channels page](http://gnss-sdr.org/docs/sp-blocks/channels/). + + + #### Acquisition The first task of a GNSS receiver is to detect the presence or absence of in-view satellites. This is done by the acquisition system process, which also provides a coarse estimation of two signal parameters: the frequency shift with respect to the nominal IF frequency, and a delay term which allows the receiver to create a local code aligned with the incoming code. [AcquisitionInterface](./src/core/interfaces/acquisition_interface.h) is the common interface for all the acquisition algorithms and their corresponding implementations. Algorithms' interface, that may vary depending on the use of information external to the receiver, such as in Assisted GNSS, is defined in classes referred to as *adapters*. These adapters wrap the GNU Radio blocks interface into a compatible interface expected by AcquisitionInterface. This allows the use of existing GNU Radio blocks derived from ```gr::block```, and ensures that newly developed implementations will also be reusable in other GNU Radio-based applications. Moreover, it adds still another layer of abstraction, since each given acquisition algorithm can have different implementations (for instance using different numerical libraries). In such a way, implementations can be continuously improved without having any impact neither on the algorithm interface nor the general acquisition interface. Check [GpsL1CaPcpsAcquisition](./src/algorithms/acquisition/adapters/gps_l1_ca_pcps_acquisition.h) and [GalileoE1PcpsAmbiguousAcquisition](./src/algorithms/acquisition/adapters/galileo_e1_pcps_ambiguous_acquisition.h) for examples of adapters from a Parallel Code Phase Search (PCPS) acquisition block, and [pcps_acquisition_cc](./src/algorithms/acquisition/gnuradio_blocks/pcps_acquisition_cc.h) for an example of a block implementation. The source code of all the available acquisition algorithms is located at: - -~~~~~~ + +~~~~~~ |-gnss-sdr |---src |-----algorithms |-------acquisition |---------adapters <- Adapters of the processing blocks to an AcquisitionInterface |---------gnuradio_blocks <- Signal processing blocks implementation -~~~~~~ +~~~~~~ The user can select a given implementation for the algorithm to be used in each receiver channel, as well as their parameters, in the configuration file. For a GPS l1 C/A receiver: -~~~~~~ +~~~~~~ ;######### ACQUISITION GLOBAL CONFIG ############ Acquisition_1C.implementation=GPS_L1_CA_PCPS_Acquisition ; Acquisition algorithm selection for this channel Acquisition_1C.item_type=gr_complex -Acquisition_1C.if=0 ; Signal intermediate frequency in [Hz] +Acquisition_1C.if=0 ; Signal intermediate frequency in [Hz] Acquisition_1C.sampled_ms=1 ; Signal block duration for the acquisition signal detection [ms] Acquisition_1C.threshold=0.005 ; Acquisition threshold -Acquisition_1C.pfa=0.0001 ; Acquisition false alarm probability. This option overrides the threshold option. -; Only use with implementations: [GPS_L1_CA_PCPS_Acquisition] or [Galileo_E1_PCPS_Ambiguous_Acquisition] +Acquisition_1C.pfa=0.0001 ; Acquisition false alarm probability. This option overrides the threshold option. +; Only use with implementations: [GPS_L1_CA_PCPS_Acquisition] or [Galileo_E1_PCPS_Ambiguous_Acquisition] Acquisition_1C.doppler_max=10000 ; Maximum expected Doppler shift [Hz] Acquisition_1C.doppler_step=500 ; Doppler step in the grid search [Hz] -Acquisition_1C.dump=false ; Enables internal data file logging [true] or [false] +Acquisition_1C.dump=false ; Enables internal data file logging [true] or [false] Acquisition_1C.dump_filename=./acq_dump.dat ; Log path and filename -~~~~~~ +~~~~~~ and, for Galileo E1B channels: -~~~~~~ +~~~~~~ ;######### GALILEO ACQUISITION CONFIG ############ Acquisition_1B.implementation=Galileo_E1_PCPS_Ambiguous_Acquisition Acquisition_1B.item_type=gr_complex @@ -1045,19 +1054,20 @@ Acquisition_1B.doppler_max=15000 Acquisition_1B.doppler_step=125 Acquisition_1B.dump=false Acquisition_1B.dump_filename=./acq_dump.dat -~~~~~~ +~~~~~~ +More documentation at the [Acquisition Blocks page](http://gnss-sdr.org/docs/sp-blocks/acquisition/). #### Tracking -When a satellite is declared present, the parameters estimated by the acquisition module are then fed to the receiver tracking module, which represents the second stage of the signal processing unit, aiming to perform a local search for accurate estimates of code delay and carrier phase, and following their eventual variations. +When a satellite is declared present, the parameters estimated by the acquisition module are then fed to the receiver tracking module, which represents the second stage of the signal processing unit, aiming to perform a local search for accurate estimates of code delay and carrier phase, and following their eventual variations. -Again, a class hierarchy consisting of a [TrackingInterface](./src/core/interfaces/tracking_interface.h) class and subclasses implementing algorithms provides a way of testing different approaches, with full access to their parameters. Check [GpsL1CaDllPllTracking](./src/algorithms/tracking/adapters/gps_l1_ca_dll_pll_tracking.h) or [GalileoE1DllPllVemlTracking](./src/algorithms/tracking/adapters/galileo_e1_dll_pll_veml_tracking.h) for examples of adapters, and [Gps_L1_Ca_Dll_Pll_Tracking_cc](./src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_tracking_cc.h) for an example of a signal processing block implementation. There are also available some useful classes and functions for signal tracking; take a look at [correlator.h](./src/algorithms/tracking/libs/correlator.h), [lock_detectors.h](./src/algorithms/tracking/libs/lock_detectors.h), [tracking_discriminators.h](./src/algorithms/tracking/libs/tracking_discriminators.h) or [tracking_2nd_DLL_filter.h](./src/algorithms/tracking/libs/tracking_2nd_DLL_filter.h). +Again, a class hierarchy consisting of a [TrackingInterface](./src/core/interfaces/tracking_interface.h) class and subclasses implementing algorithms provides a way of testing different approaches, with full access to their parameters. Check [GpsL1CaDllPllTracking](./src/algorithms/tracking/adapters/gps_l1_ca_dll_pll_tracking.h) or [GalileoE1DllPllVemlTracking](./src/algorithms/tracking/adapters/galileo_e1_dll_pll_veml_tracking.h) for examples of adapters, and [Gps_L1_Ca_Dll_Pll_Tracking_cc](./src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_tracking_cc.h) for an example of a signal processing block implementation. There are also available some useful classes and functions for signal tracking; take a look at [correlator.h](./src/algorithms/tracking/libs/correlator.h), [lock_detectors.h](./src/algorithms/tracking/libs/lock_detectors.h), [tracking_discriminators.h](./src/algorithms/tracking/libs/tracking_discriminators.h) or [tracking_2nd_DLL_filter.h](./src/algorithms/tracking/libs/tracking_2nd_DLL_filter.h). The source code of all the available tracking algorithms is located at: -~~~~~~ +~~~~~~ |-gnss-sdr |---src |-----algorithms @@ -1065,25 +1075,25 @@ The source code of all the available tracking algorithms is located at: |---------adapters <- Adapters of the processing blocks to a TrackingInterface |---------gnuradio_blocks <- Signal processing blocks implementation |---------libs <- libraries of tracking objects (e.g. correlators, discriminators, and so on) -~~~~~~ +~~~~~~ The user can select a given implementation for the algorithm to be used in all the tracking blocks, as well as its parameters, in the configuration file. For instance, for GPS l1 channels: -~~~~~~ +~~~~~~ ;######### TRACKING GPS L1 CONFIG ############ Tracking_1C.implementation=GPS_L1_CA_DLL_PLL_Tracking Tracking_1C.item_type=gr_complex Tracking_1C.pll_bw_hz=50.0 ; PLL loop filter bandwidth [Hz] Tracking_1C.dll_bw_hz=2.0 ; DLL loop filter bandwidth [Hz] Tracking_1C.order=3 ; PLL/DLL loop filter order [2] or [3] -Tracking_1C.early_late_space_chips=0.5 ; correlator early-late space [chips]. -Tracking_1C.dump=false ; Enable internal binary data file logging [true] or [false] +Tracking_1C.early_late_space_chips=0.5 ; correlator early-late space [chips]. +Tracking_1C.dump=false ; Enable internal binary data file logging [true] or [false] Tracking_1C.dump_filename=./tracking_ch_ ; Log path and filename. Notice that the tracking channel will add "x.dat" where x is the channel number. -~~~~~~ +~~~~~~ and, for Galileo E1B channels: -~~~~~~ +~~~~~~ ;######### TRACKING GALILEO E1B CONFIG ############ Tracking_1B.implementation=Galileo_E1_DLL_PLL_VEML_Tracking Tracking_1B.item_type=gr_complex @@ -1094,7 +1104,10 @@ Tracking_1B.early_late_space_chips=0.15; Tracking_1B.very_early_late_space_chips=0.6; Tracking_1B.dump=false Tracking_1B.dump_filename=../data/veml_tracking_ch_ -~~~~~~ +~~~~~~ + +More documentation at the [Tracking Blocks page](http://gnss-sdr.org/docs/sp-blocks/tracking/). + #### Decoding of the navigation message @@ -1102,16 +1115,16 @@ Most of GNSS signal links are modulated by a navigation message containing the t The common interface is [TelemetryDecoderInterface](./src/core/interfaces/telemetry_decoder_interface.h). Check [GpsL1CaTelemetryDecoder](./src/algorithms/telemetry_decoder/adapters/gps_l1_ca_telemetry_decoder.h) for an example of the GPS L1 NAV message decoding adapter, and [gps_l1_ca_telemetry_decoder_cc](./src/algorithms/telemetry_decoder/gnuradio_blocks/gps_l1_ca_telemetry_decoder_cc.h) for an actual implementation of a signal processing block. Configuration example: -~~~~~~ +~~~~~~ ;######### TELEMETRY DECODER CONFIG ############ TelemetryDecoder_1C.implementation=GPS_L1_CA_Telemetry_Decoder TelemetryDecoder_1C.dump=false -~~~~~~ +~~~~~~ In case you are configuring a multi-system receiver, you will need to decimate the one with the fastest code rate in order to get both data streams synchronized. For instance, for hybrid GPS L1 / Galileo E1B receivers: -~~~~~~ +~~~~~~ ;######### TELEMETRY DECODER GPS L1 CONFIG ############ TelemetryDecoder_1C.implementation=GPS_L1_CA_Telemetry_Decoder TelemetryDecoder_1C.dump=false @@ -1121,70 +1134,74 @@ TelemetryDecoder_1C.decimation_factor=4; TelemetryDecoder_1B.implementation=Galileo_E1B_Telemetry_Decoder TelemetryDecoder_1B.dump=false TelemetryDecoder_1B.decimation_factor=1; -~~~~~~ - +~~~~~~ + +More documentation at the [Telemetry Decoder Blocks page](http://gnss-sdr.org/docs/sp-blocks/telemetry-decoder/). + #### Observables GNSS systems provide different kinds of observations. The most commonly used are the code observations, also called pseudoranges. The *pseudo* comes from the fact that on the receiver side the clock error is unknown and thus the measurement is not a pure range observation. High accuracy applications also use the carrier phase observations, which are based on measuring the difference between the carrier phase transmitted by the GNSS satellites and the phase of the carrier generated in the receiver. Both observables are computed from the outputs of the tracking module and the decoding of the navigation message. This module collects all the data provided by every tracked channel, aligns all received data into a coherent set, and computes the observables. -The common interface is [ObservablesInterface](./src/core/interfaces/observables_interface.h). +The common interface is [ObservablesInterface](./src/core/interfaces/observables_interface.h). Configuration example for GPS L1 C/A signals: -~~~~~~ +~~~~~~ ;######### OBSERVABLES CONFIG ############ Observables.implementation=GPS_L1_CA_Observables Observables.dump=false Observables.dump_filename=./observables.dat -~~~~~~ +~~~~~~ For Galileo E1B receivers: -~~~~~~ +~~~~~~ ;######### OBSERVABLES CONFIG ############ Observables.implementation=Galileo_E1B_Observables Observables.dump=false Observables.dump_filename=./observables.dat -~~~~~~ +~~~~~~ For hybrid GPS L1 / Galileo E1B receivers: -~~~~~~ +~~~~~~ ;######### OBSERVABLES CONFIG ############ Observables.implementation=Hybrid_Observables Observables.dump=false Observables.dump_filename=./observables.dat -~~~~~~ - +~~~~~~ + +More documentation at the [Observables Blocks page](http://gnss-sdr.org/docs/sp-blocks/observables/). + #### Computation of Position, Velocity and Time Although data processing for obtaining high-accuracy PVT solutions is out of the scope of GNSS-SDR, we provide a module that can compute simple least square solutions (stored in GIS-friendly formats such as [GeoJSON](http://geojson.org/geojson-spec.html) and [KML](http://www.opengeospatial.org/standards/kml), or transmitted via serial port as [NMEA 0183](https://en.wikipedia.org/wiki/NMEA_0183) messages), and leaves room for more sophisticated positioning methods by storing observables and navigation data in [RINEX](https://en.wikipedia.org/wiki/RINEX) files (v2.11 or v3.02), and generating [RTCM](http://www.rtcm.org "Radio Technical Commission for Maritime Services") 3.2 messages that can be disseminated through the Internet in real time. -The common interface is [PvtInterface](./src/core/interfaces/pvt_interface.h). +The common interface is [PvtInterface](./src/core/interfaces/pvt_interface.h). Configuration example for GPS L1 C/A signals: -~~~~~~ +~~~~~~ ;######### PVT CONFIG ############ PVT.implementation=GPS_L1_CA_PVT PVT.averaging_depth=10 ; Number of PVT observations in the moving average algorithm -PVT.flag_averaging=true ; Enables the PVT averaging between output intervals (arithmetic mean) [true] or [false] +PVT.flag_averaging=true ; Enables the PVT averaging between output intervals (arithmetic mean) [true] or [false] PVT.output_rate_ms=100 ; Period in [ms] between two PVT outputs PVT.display_rate_ms=500 ; Position console print (std::out) interval [ms]. -PVT.dump=false ; Enables the PVT internal binary data file logging [true] or [false] +PVT.dump=false ; Enables the PVT internal binary data file logging [true] or [false] PVT.dump_filename=./PVT ; Log path and filename without extension of GeoJSON and KML files PVT.nmea_dump_filename=./gnss_sdr_pvt.nmea ; NMEA log path and filename -PVT.flag_nmea_tty_port=true ; Enables the NMEA log to a serial TTY port +PVT.flag_nmea_tty_port=true ; Enables the NMEA log to a serial TTY port PVT.nmea_dump_devname=/dev/pts/4 ; serial device descriptor for NMEA logging -PVT.flag_rtcm_server=false ; Enables or disables a TCP/IP server dispatching RTCM messages -PVT.flag_rtcm_tty_port=true ; Enables the RTCM log to a serial TTY port +PVT.flag_rtcm_server=false ; Enables or disables a TCP/IP server dispatching RTCM messages +PVT.flag_rtcm_tty_port=true ; Enables the RTCM log to a serial TTY port PVT.rtcm_dump_devname=/dev/pts/1 ; serial device descriptor for RTCM logging -~~~~~~ +~~~~~~ For Galileo E1B receivers: -~~~~~~ +~~~~~~ ;######### PVT CONFIG ############ PVT.implementation=GALILEO_E1_PVT PVT.averaging_depth=100 @@ -1194,12 +1211,12 @@ PVT.display_rate_ms=500; PVT.dump=false PVT.dump_filename=./PVT PVT.nmea_dump_filename=./gnss_sdr_pvt.nmea ; NMEA log path and filename -PVT.flag_nmea_tty_port=true ; Enables the NMEA log to a serial TTY port +PVT.flag_nmea_tty_port=true ; Enables the NMEA log to a serial TTY port PVT.nmea_dump_devname=/dev/pts/4 ; serial device descriptor for NMEA logging -PVT.flag_rtcm_server=false ; Enables or disables a TCP/IP server dispatching RTCM messages -PVT.flag_rtcm_tty_port=true ; Enables the RTCM log to a serial TTY port +PVT.flag_rtcm_server=false ; Enables or disables a TCP/IP server dispatching RTCM messages +PVT.flag_rtcm_tty_port=true ; Enables the RTCM log to a serial TTY port PVT.rtcm_dump_devname=/dev/pts/1 ; serial device descriptor for RTCM logging -~~~~~~ +~~~~~~ For hybrid GPS L1 / Galileo E1B receivers: @@ -1210,35 +1227,37 @@ PVT.implementation=Hybrid_PVT PVT.averaging_depth=10 PVT.flag_averaging=false PVT.output_rate_ms=100; -PVT.display_rate_ms=500; +PVT.display_rate_ms=500; PVT.dump=false PVT.dump_filename=./PVT -~~~~~~ +~~~~~~ **Notes on the output formats:** - * **GeoJSON** is a geospatial data interchange format based on JavaScript Object Notation (JSON) supported by numerous mapping and GIS software packages, including [OpenLayers](http://openlayers.org), [Leaflet](http://leafletjs.com), [MapServer](http://www.mapserver.org), [GeoServer](http://geoserver.org), [GeoDjango](https://www.djangoproject.com), [GDAL](http://www.gdal.org), and [CartoDB](https://cartodb.com). It is also possible to use GeoJSON with [PostGIS](http://postgis.net) and [Mapnik](http://mapnik.org), both of which handle the format via the GDAL OGR conversion library. The [Google Maps Javascript API](https://developers.google.com/maps/documentation/javascript/) v3 directly supports the [integration of GeoJSON data layers](https://developers.google.com/maps/documentation/javascript/examples/layer-data-simple), and [GitHub also supports GeoJSON rendering](https://github.com/blog/1528-there-s-a-map-for-that). + * **GeoJSON** is a geospatial data interchange format based on JavaScript Object Notation (JSON) supported by numerous mapping and GIS software packages, including [OpenLayers](http://openlayers.org), [Leaflet](http://leafletjs.com), [MapServer](http://www.mapserver.org), [GeoServer](http://geoserver.org), [GeoDjango](https://www.djangoproject.com), [GDAL](http://www.gdal.org), and [CartoDB](https://cartodb.com). It is also possible to use GeoJSON with [PostGIS](http://postgis.net) and [Mapnik](http://mapnik.org), both of which handle the format via the GDAL OGR conversion library. The [Google Maps Javascript API](https://developers.google.com/maps/documentation/javascript/) v3 directly supports the [integration of GeoJSON data layers](https://developers.google.com/maps/documentation/javascript/examples/layer-data-simple), and [GitHub also supports GeoJSON rendering](https://github.com/blog/1528-there-s-a-map-for-that). * **KML** (Keyhole Markup Language) is an XML grammar used to encode and transport representations of geographic data for display in an earth browser. KML is an open standard officially named the OpenGIS KML Encoding Standard (OGC KML), and it is maintained by the Open Geospatial Consortium, Inc. (OGC). KML files can be displayed in geobrowsers such as [Google Earth](https://www.google.com/earth/), [Marble](https://marble.kde.org), [osgEarth](http://osgearth.org), or used with the [NASA World Wind SDK for Java](http://worldwind.arc.nasa.gov/java/). * **NMEA 0183** is a combined electrical and data specification for communication between marine electronics such as echo sounder, sonars, anemometer, gyrocompass, autopilot, GPS receivers and many other types of instruments. It has been defined by, and is controlled by, the U.S. [National Marine Electronics Association](http://www.nmea.org/). The NMEA 0183 standard uses a simple ASCII, serial communications protocol that defines how data are transmitted in a *sentence* from one *talker* to multiple *listeners* at a time. Through the use of intermediate expanders, a talker can have a unidirectional conversation with a nearly unlimited number of listeners, and using multiplexers, multiple sensors can talk to a single computer port. At the application layer, the standard also defines the contents of each sentence (message) type, so that all listeners can parse messages accurately. Those messages can be sent through the serial port (that could be for instance a Bluetooth link) and be used/displayed by a number of software applications such as [gpsd](http://www.catb.org/gpsd/ "The UNIX GPS daemon"), [JOSM](https://josm.openstreetmap.de/ "The Java OpenStreetMap Editor"), [OpenCPN](http://opencpn.org/ocpn/ "Open Chart Plotter Navigator"), and many others (and maybe running on other devices). * **RINEX** (Receiver Independent Exchange Format) is an interchange format for raw satellite navigation system data, covering observables and the information contained in the navigation message broadcast by GNSS satellites. This allows the user to post-process the received data to produce a more accurate result (usually with other data unknown to the original receiver, such as better models of the atmospheric conditions at time of measurement). RINEX files can be used by software packages such as [GPSTk](http://www.gpstk.org), [RTKLIB](http://www.rtklib.com/) and [gLAB](http://gage14.upc.es/gLAB/). GNSS-SDR by default generates RINEX version [3.02](https://igscb.jpl.nasa.gov/igscb/data/format/rinex302.pdf). If [2.11](https://igscb.jpl.nasa.gov/igscb/data/format/rinex211.txt) is needed, it can be requested through a commandline flag when invoking the software receiver: -~~~~~~ +~~~~~~ $ gnss-sdr --RINEX_version=2 -~~~~~~ +~~~~~~ * **RTCM SC-104** provides standards that define the data structure for differential GNSS correction information for a variety of differential correction applications. Developed by the Radio Technical Commission for Maritime Services ([RTCM](http://www.rtcm.org/overview.php#Standards "Radio Technical Commission for Maritime Services")), they have become an industry standard for communication of correction information. GNSS-SDR implements RTCM version 3.2, defined in the document *RTCM 10403.2, Differential GNSS (Global Navigation Satellite Systems) Services - Version 3* (February 1, 2013), which can be [purchased online](https://ssl29.pair.com/dmarkle/puborder.php?show=3 "RTCM Online Publication Order Form"). By default, the generated RTCM binary messages are dumped into a text file in hexadecimal format. However, GNSS-SDR is equipped with a TCP/IP server, acting as an NTRIP source that can feed an NTRIP server. NTRIP (Networked Transport of RTCM via Internet Protocol) is an open standard protocol that can be freely download from [BKG](http://igs.bkg.bund.de/root_ftp/NTRIP/documentation/NtripDocumentation.pdf "Networked Transport of RTCM via Internet Protocol (Ntrip) Version 1.0"), and it is designed for disseminating differential correction data (*e.g.* in the RTCM-104 format) or other kinds of GNSS streaming data to stationary or mobile users over the Internet. The TCP/IP server can be enabled by setting ```PVT.flag_rtcm_server=true``` in the configuration file, and will be active during the execution of the software receiver. By default, the server will operate on port 2101 (which is the recommended port for RTCM services according to the Internet Assigned Numbers Authority, [IANA](http://www.iana.org/assignments/service-names-port-numbers "Service Name and Transport Protocol Port Number Registry")), and will identify the Reference Station with ID=1234. This behaviour can be changed in the configuration file: -~~~~~~ +~~~~~~ PVT.flag_rtcm_server=true PVT.rtcm_tcp_port=2102 PVT.rtcm_station_id=1111 -~~~~~~ +~~~~~~ **Important note:** In order to get well-formatted GeoJSON, KML and RINEX files, always terminate ```gnss-sdr``` execution by pressing key ```q``` and then key ```ENTER```. Those files will be automatically deleted if no position fix have been obtained during the execution of the software receiver. +More documentation at the [PVT Blocks page](http://gnss-sdr.org/docs/sp-blocks/pvt/). + About the software license ========================== @@ -1253,7 +1272,7 @@ That means that modifications only have to be made available to the public if di But what this also means is that non-GPL code cannot use GPL code. This means that you cannot modify / use GNSS-SDR, blend it with non-GPL code, and make money with the resulting software. You cannot distribute the resulting software under a non-disclosure agreement or contract. Distributors under the GPL also grant a license for any of their patents practiced by the software, to practice those patents in GPL software. You can sell a device that runs with GNSS-SDR, but if you distribute the code, it has to remain under GPL. - + Publications and Credits ======================== @@ -1265,54 +1284,54 @@ If you use GNSS-SDR to produce a research paper or Thesis, we would appreciate i * C. Fernández-Prades, J. Arribas, P. Closas, [Turning a Television into a GNSS Receiver](http://www.cttc.es/publication/turning-a-television-into-a-gnss-receiver/), in Proc. of the ION GNSS+ 2013 Conference, Nashville, Tennessee, Sept. 2013. * C. Fernández-Prades, J. Arribas, L. Esteve, D. Pubill, P. Closas, [An Open Source Galileo E1 Software Receiver](http://www.cttc.es/publication/an-open-source-galileo-e1-software-receiver/), in Proc. of the 6th ESA Workshop on Satellite Navigation Technologies (NAVITEC 2012), ESTEC, Noordwijk, The Netherlands, Dec. 2012. * J. Arribas, [GNSS Array-based Acquisition: Theory and Implementation](http://theses.eurasip.org/theses/449/gnss-array-based-acquisition-theory-and/), PhD Thesis, Universitat Politècnica de Catalunya, Barcelona, Spain, June 2012. - * C. Fernández-Prades, J. Arribas, P. Closas, C. Avilés, and L. Esteve, [GNSS-SDR: an open source tool for researchers and developers](http://www.cttc.es/publication/gnss-sdr-an-open-source-tool-for-researchers-and-developers/), in Proc. of the ION GNSS 2011 Conference, Portland, Oregon, Sept. 19-23, 2011. - * C. Fernández-Prades, C. Avilés, L. Esteve, J. Arribas, and P. Closas, [Design patterns for GNSS software receivers](http://www.cttc.es/publication/design-patterns-for-gnss-software-receivers/), in Proc. of the 5th ESA Workshop on Satellite Navigation Technologies (NAVITEC'2010), ESTEC, Noordwijk, The Netherlands, Dec. 2010. DOI:10.1109/NAVITEC.2010.5707981 + * C. Fernández-Prades, J. Arribas, P. Closas, C. Avilés, and L. Esteve, [GNSS-SDR: an open source tool for researchers and developers](http://www.cttc.es/publication/gnss-sdr-an-open-source-tool-for-researchers-and-developers/), in Proc. of the ION GNSS 2011 Conference, Portland, Oregon, Sept. 19-23, 2011. + * C. Fernández-Prades, C. Avilés, L. Esteve, J. Arribas, and P. Closas, [Design patterns for GNSS software receivers](http://www.cttc.es/publication/design-patterns-for-gnss-software-receivers/), in Proc. of the 5th ESA Workshop on Satellite Navigation Technologies (NAVITEC'2010), ESTEC, Noordwijk, The Netherlands, Dec. 2010. DOI:10.1109/NAVITEC.2010.5707981 For LaTeX users, these are the BibTeX cites for your convenience: -~~~~~~ -@INPROCEEDINGS{GNSS-SDR14b, - AUTHOR = {J.~Arribas and M.~Branzanti and C.~{Fern\'{a}ndez--Prades} and P.~Closas}, - TITLE = {Fastening {GPS} and {G}alileo Tight with a Software Receiver}, - BOOKTITLE = {Proc. of the ION GNSS+ 2014 Conference}, - YEAR = {2014}, - address = {Tampa, Florida}, - month = {Sept.} -} -~~~~~~ +~~~~~~ +@INPROCEEDINGS{GNSS-SDR14b, + AUTHOR = {J.~Arribas and M.~Branzanti and C.~{Fern\'{a}ndez--Prades} and P.~Closas}, + TITLE = {Fastening {GPS} and {G}alileo Tight with a Software Receiver}, + BOOKTITLE = {Proc. of the ION GNSS+ 2014 Conference}, + YEAR = {2014}, + address = {Tampa, Florida}, + month = {Sept.} +} +~~~~~~ -~~~~~~ -@INPROCEEDINGS{GNSS-SDR14a, - AUTHOR = {J.~Arribas and P.~Closas and C.~{Fern\'{a}ndez--Prades}}, - TITLE = {Interference Mitigation in {GNSS} Receivers by Array Signal Processing: {A} Software Radio Approach}, - BOOKTITLE = {Proc. of the 8th IEEE Sensor Array and Multichannel Signal Processing Workshop}, - YEAR = {2014}, - address = {A Coru\~{n}a, Spain}, - month = {June} -} -~~~~~~ +~~~~~~ +@INPROCEEDINGS{GNSS-SDR14a, + AUTHOR = {J.~Arribas and P.~Closas and C.~{Fern\'{a}ndez--Prades}}, + TITLE = {Interference Mitigation in {GNSS} Receivers by Array Signal Processing: {A} Software Radio Approach}, + BOOKTITLE = {Proc. of the 8th IEEE Sensor Array and Multichannel Signal Processing Workshop}, + YEAR = {2014}, + address = {A Coru\~{n}a, Spain}, + month = {June} +} +~~~~~~ -~~~~~~ -@INPROCEEDINGS{GNSS-SDR13, - AUTHOR = {C.~{Fern\'{a}ndez--Prades} and J.~Arribas and P.~Closas}, - TITLE = {Turning a Television into a {GNSS} Receiver}, - BOOKTITLE = {Proc. of the ION GNSS+ 2013 Conference}, - YEAR = {2013}, - address = {Nashville, Tennessee}, - month = {Sept.} -} -~~~~~~ +~~~~~~ +@INPROCEEDINGS{GNSS-SDR13, + AUTHOR = {C.~{Fern\'{a}ndez--Prades} and J.~Arribas and P.~Closas}, + TITLE = {Turning a Television into a {GNSS} Receiver}, + BOOKTITLE = {Proc. of the ION GNSS+ 2013 Conference}, + YEAR = {2013}, + address = {Nashville, Tennessee}, + month = {Sept.} +} +~~~~~~ -~~~~~~ +~~~~~~ @INPROCEEDINGS{GNSS-SDR12 author = {C.~{Fern\'{a}ndez--Prades} and J.~Arribas and L.~Esteve and D.~Pubill and P.~Closas}, title = {An Open Source {G}alileo {E1} Software Receiver}, - booktitle = {Proc. of the 6th ESA Workshop on Satellite Navigation Technologies (NAVITEC'2012)}, - year = {2012}, - address = {ESTEC, Noordwijk, The Netherlands}, + booktitle = {Proc. of the 6th ESA Workshop on Satellite Navigation Technologies (NAVITEC'2012)}, + year = {2012}, + address = {ESTEC, Noordwijk, The Netherlands}, month = {Dec.} } -~~~~~~ - -~~~~~~ +~~~~~~ + +~~~~~~ @PHDTHESIS{Arribas12, author = {J.~Arribas}, title = {{GNSS} Array-based Acquisition: Theory and Implementation}, @@ -1320,30 +1339,30 @@ For LaTeX users, these are the BibTeX cites for your convenience: year = {2012}, address = {Barcelona, Spain}, month = {June} } -~~~~~~ - -~~~~~~ -@INPROCEEDINGS{GNSS-SDR11, - AUTHOR = {C.~{Fern\'{a}ndez--Prades} and J.~Arribas and P.~Closas and C.~Avil\'{e}s and L.~Esteve}, - TITLE = {{GNSS-SDR}: An Open Source Tool For Researchers and Developers}, - BOOKTITLE = {Proc. of the ION GNSS 2011 Conference}, - YEAR = {2011}, - address = {Portland, Oregon}, - month = {Sept.} } -~~~~~~ - -~~~~~~ -@INPROCEEDINGS{GNSS-SDR10, - AUTHOR = {C.~{Fern\'{a}ndez--Prades} and C.~Avil\'{e}s and L.~Esteve and J.~Arribas and P.~Closas}, - TITLE = {Design patterns for {GNSS} software receivers}, - BOOKTITLE = {Proc. of the 5th ESA Workshop on Satellite Navigation Technologies (NAVITEC'2010)}, - YEAR = {2010}, - address = {ESTEC, Noordwijk, The Netherlands}, - month = {Dec.}, - note = {DOI:10.1109/NAVITEC.2010.5707981} } -~~~~~~ +~~~~~~ + +~~~~~~ +@INPROCEEDINGS{GNSS-SDR11, + AUTHOR = {C.~{Fern\'{a}ndez--Prades} and J.~Arribas and P.~Closas and C.~Avil\'{e}s and L.~Esteve}, + TITLE = {{GNSS-SDR}: An Open Source Tool For Researchers and Developers}, + BOOKTITLE = {Proc. of the ION GNSS 2011 Conference}, + YEAR = {2011}, + address = {Portland, Oregon}, + month = {Sept.} } +~~~~~~ + +~~~~~~ +@INPROCEEDINGS{GNSS-SDR10, + AUTHOR = {C.~{Fern\'{a}ndez--Prades} and C.~Avil\'{e}s and L.~Esteve and J.~Arribas and P.~Closas}, + TITLE = {Design patterns for {GNSS} software receivers}, + BOOKTITLE = {Proc. of the 5th ESA Workshop on Satellite Navigation Technologies (NAVITEC'2010)}, + YEAR = {2010}, + address = {ESTEC, Noordwijk, The Netherlands}, + month = {Dec.}, + note = {DOI:10.1109/NAVITEC.2010.5707981} } +~~~~~~ + - Ok, now what? @@ -1353,13 +1372,10 @@ In order to start using GNSS-SDR, you may want to populate ```gnss-sdr/data``` f Another interesting option is working in real-time with a RF front-end. We provide drivers for UHD-compatible hardware such as the [USRP family](http://www.ettus.com/product), for OsmoSDR and other front-ends (HackRF, bladeRF), for the GN3S v2 USB dongle and for some DVB-T USB dongles. Start with a low number of channels and then increase it in order to test how many channels your processor can handle in real-time. -You can find more information at the [GNSS-SDR Documentation page](http://gnss-sdr.org/documents) or directly asking to the [GNSS-SDR Developers mailing list](http://lists.sourceforge.net/lists/listinfo/gnss-sdr-developers). - -You are also very welcome to contribute to the project, there are many ways to [participate in GNSS-SDR](http://gnss-sdr.org/participate). If you need some special feature not yet implemented, the Developer Team would love to be hired for developing it. Please do not hesitate to [contact them](http://gnss-sdr.org/contact-us). +You can find more information at the [GNSS-SDR Documentation page](http://gnss-sdr.org/docs/) or directly asking to the [GNSS-SDR Developers mailing list](http://lists.sourceforge.net/lists/listinfo/gnss-sdr-developers). + +You are also very welcome to contribute to the project, there are many ways to [participate in GNSS-SDR](http://gnss-sdr.org/contribute/). If you need some special feature not yet implemented, the Developer Team would love to be hired for developing it. Please do not hesitate to [contact them](http://gnss-sdr.org/team/). **Enjoy GNSS-SDR!** The Developer Team. - - - From 50b6ae187bba1f045c51a39fc5851d6d00d82c94 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Mon, 17 Apr 2017 13:43:26 +0200 Subject: [PATCH 002/171] Add contributing guidelines as suggested at https://github.com/blog/1184-contributing-guidelines --- CONTRIBUTING.md | 176 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 176 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 000000000..12cc1328f --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,176 @@ +# Contributing to GNSS-SDR + +:+1::tada: Thanks for taking the time to contribute! :tada::+1: + +Third-party contributions are essential for keeping GNSS-SDR +continuously improving. We simply cannot access the huge number of +platforms and myriad configurations for running GNSS-SDR. We want to +keep it as easy as possible to contribute changes that get things +working in your environment. There are a few guidelines that we need +contributors to follow so that we can have a chance of keeping on top of +things. + +The following is a set of guidelines for contributing to GNSS-SDR, which +is hosted in the [GNSS-SDR Organization](https://github.com/gnss-sdr) on +GitHub. These are just guidelines, not rules. Use your best judgment, +and feel free to propose changes to this document in a [pull +request](#how-to-submit-a-pull-request). + +## Code of Conduct + +This project adheres to the Contributor Covenant [code of +conduct](CODE_OF_CONDUCT.md). By participating, you are expected to +uphold this code. Please report unacceptable behavior. + +## Reporting an issue + +Have you found a bug in the code which is not in the [list of known +bugs](https://github.com/gnss-sdr/gnss-sdr/issues)? Do you have a +suggestion for improvement? Then by all means please [submit a new +issue](https://github.com/gnss-sdr/gnss-sdr/issues/new), and do not +hesitate to comment on existing [open +issues](https://github.com/gnss-sdr/gnss-sdr/issues). + +When filling a new issue, please remember to: + + * **Use a clear and descriptive title** for the issue to identify the +problem. + + * **Describe the exact steps which reproduce the problem** in as many +details as possible. For example, start by describing your computing +platform (Operating System and version, how did you installed GNSS-SDR +and its dependencies, what file or front-end are you using as a signal +source, etc.). You can also include the configuration file you are +using, or a dump of the terminal output you are getting. The more +information you provide, the more chances to get useful answers. + + * **Please be patient**. This organization is run on a volunteer basis, +so it can take some time to the Developer Team to reach your issue. +They will do their best to fix it as soon as possible. + + * If you opened an issue that is now solved, it is a good practice to +**close it**. + +The list of [open issues](https://github.com/gnss-sdr/gnss-sdr/issues) +can be a good starting point and a source of ideas if you are looking to +contribute to the source code. + + +## Contributing to the source code + +### Preliminaries + + 1. If you still have not done so, [create your personal account on +GitHub](https://github.com/join). + + 2. [Fork GNSS-SDR from +GitHub](https://github.com/gnss-sdr/gnss-sdr/fork). This will copy the +whole gnss-sdr repository to your personal account. + + 3. Then, go to your favourite working folder in your computer and +clone your forked repository by typing (replacing ```YOUR_USERNAME``` by +the actual username of your GitHub account): + + $ git clone https://github.com/YOUR_USERNAME/gnss-sdr + + 4. Your forked repository https://github.com/YOUR_USERNAME/gnss-sdr +will receive the default name of `origin`. You can also add the original +gnss-sdr repository, which is usually called `upstream`: + + $ cd gnss-sdr + $ git remote add upstream https://github.com/gnss-sdr/gnss-sdr.git + +To verify the new upstream repository you have specified for your fork, +type `git remote -v`. You should see the URL for your fork as `origin`, +and the URL for the original repository as `upstream`: + +``` +$ git remote -v +origin https://github.com/YOUR_USERNAME/gnss-sdr.git (fetch) +origin https://github.com/YOUR_USERNAME/gnss-sdr.git (push) +upstream https://github.com/gnss-sdr/gnss-sdr.git (fetch) +upstream https://github.com/gnss-sdr/gnss-sdr.git (push) +``` + +### Start working on your contribution + +Checkout the `next` branch of the git repository in order to get +synchronized with the latest development code: + +``` +$ git checkout next +$ git pull upstream next +``` + +When start working in a new improvement, please **always** branch off +from `next`. Open a new branch and start working on it: + +``` +$ git checkout -b my_feature +``` + +Now you can do changes, add files, do commits (please take a look at +[how to write good commit +messages](https://chris.beams.io/posts/git-commit/)!) and push them to +your repository: + +``` +$ git push origin my_feature +``` + +If there have been new pushes to the `next` branch of the `upstream` +repository since the last time you pulled from it, you might want to put +your commits on top of them (this is mandatory for pull requests): + +``` +$ git pull --rebase upstream next +``` + +### How to submit a pull request + +When the contribution is ready, you can [submit a pull +request](https://github.com/gnss-sdr/gnss-sdr/compare/). Head to your +GitHub repository, switch to your `my_feature` branch, and click the +_**Pull Request**_ button, which will do all the work for you. Code +comparison must be always to the `next` branch. + +Once a pull request is sent, the Developer Team can review the set of +changes, discuss potential modifications, and even push follow-up +commits if necessary. + +Some things that will increase the chance that your pull request is +accepted: + + * Avoid platform-dependent code. If your code require external + dependencies, they must be available as packages in [Debian OldStable](https://wiki.debian.org/DebianOldStable). + * Write tests. + * Follow our [coding style guide](http://gnss-sdr.org/coding-style/). + * Write a descriptive and detailed summary. Please consider that +reviewing pull requests is hard, so include as much information as +possible to make your pull request's intent clear. + +For more details about Git usage, please check out [our +tutorial](http://gnss-sdr.org/docs/tutorials/using-git/). + + +## Contributing to the website + +The content of http://gnss-sdr.org lives in a GitHub repository at +https://github.com/gnss-sdr/geniuss-place + +You can fork that repository, reproduce the entire website on your +computer using [Jekyll](https://jekyllrb.com/), do changes and submit +pull requests, just as explained above. For more details, please check +out [how to contribute](http://gnss-sdr.org/contribute/). + +Last but not the least, you can leave your comments on the website. + + +------ + + + +![GeNiuSS +contributes](http://gnss-sdr.org/assets/images/geniuss-contribute.png) + +Thanks for your contribution to GNSS-SDR! From d77f48f55cfd3f1fa0fc6ae08686a5a16af4b725 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Mon, 17 Apr 2017 13:42:08 +0200 Subject: [PATCH 003/171] Add v1.4 of Contributor Covenant Code of Conduct --- CODE_OF_CONDUCT.md | 74 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 CODE_OF_CONDUCT.md diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 000000000..33e45b9d5 --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,74 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +In the interest of fostering an open and welcoming environment, we as +contributors and maintainers pledge to making participation in our project and +our community a harassment-free experience for everyone, regardless of age, body +size, disability, ethnicity, gender identity and expression, level of experience, +nationality, personal appearance, race, religion, or sexual identity and +orientation. + +## Our Standards + +Examples of behavior that contributes to creating a positive environment +include: + +* Using welcoming and inclusive language +* Being respectful of differing viewpoints and experiences +* Gracefully accepting constructive criticism +* Focusing on what is best for the community +* Showing empathy towards other community members + +Examples of unacceptable behavior by participants include: + +* The use of sexualized language or imagery and unwelcome sexual attention or +advances +* Trolling, insulting/derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or electronic + address, without explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Our Responsibilities + +Project maintainers are responsible for clarifying the standards of acceptable +behavior and are expected to take appropriate and fair corrective action in +response to any instances of unacceptable behavior. + +Project maintainers have the right and responsibility to remove, edit, or +reject comments, commits, code, wiki edits, issues, and other contributions +that are not aligned to this Code of Conduct, or to ban temporarily or +permanently any contributor for other behaviors that they deem inappropriate, +threatening, offensive, or harmful. + +## Scope + +This Code of Conduct applies both within project spaces and in public spaces +when an individual is representing the project or its community. Examples of +representing a project or community include using an official project e-mail +address, posting via an official social media account, or acting as an appointed +representative at an online or offline event. Representation of a project may be +further defined and clarified by project maintainers. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported by contacting the project team at carles.fernandez@cttc.es. All +complaints will be reviewed and investigated and will result in a response that +is deemed necessary and appropriate to the circumstances. The project team is +obligated to maintain confidentiality with regard to the reporter of an incident. +Further details of specific enforcement policies may be posted separately. + +Project maintainers who do not follow or enforce the Code of Conduct in good +faith may face temporary or permanent repercussions as determined by other +members of the project's leadership. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, +available at [http://contributor-covenant.org/version/1/4][version] + +[homepage]: http://contributor-covenant.org +[version]: http://contributor-covenant.org/version/1/4/ From cbe20c0920675d88b6939c7282a80ddd00a150b4 Mon Sep 17 00:00:00 2001 From: mmajoral Date: Thu, 18 May 2017 17:10:28 +0200 Subject: [PATCH 004/171] refactoring code --- .../gps_l1_ca_pcps_acquisition_fpga.cc | 80 ++-- .../gps_l1_ca_pcps_acquisition_fpga.h | 16 - .../gps_pcps_acquisition_fpga_sc.cc | 341 +++++++----------- .../gps_pcps_acquisition_fpga_sc.h | 39 +- .../acquisition/libs/CMakeLists.txt | 1 + .../libs/gps_fpga_acquisition_8sc.cc | 274 ++++++++------ .../libs/gps_fpga_acquisition_8sc.h | 58 ++- .../gps_l1_ca_dll_pll_c_aid_tracking_fpga.cc | 23 +- .../gps_l1_ca_dll_pll_c_aid_tracking_fpga.h | 2 + ...ps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc | 36 +- ...gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.h | 18 +- .../tracking/libs/fpga_multicorrelator_8sc.cc | 32 +- .../tracking/libs/fpga_multicorrelator_8sc.h | 10 +- .../gps_l1_ca_pcps_acquisition_test_fpga.cc | 6 +- .../gps_l1_ca_dll_pll_tracking_test_fpga.cc | 8 + 15 files changed, 484 insertions(+), 460 deletions(-) diff --git a/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_acquisition_fpga.cc b/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_acquisition_fpga.cc index 48dd946cb..be6ef08d4 100644 --- a/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_acquisition_fpga.cc +++ b/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_acquisition_fpga.cc @@ -34,7 +34,6 @@ #include "gps_l1_ca_pcps_acquisition_fpga.h" #include #include -#include "gps_sdr_signal_processing.h" #include "GPS_L1_CA.h" #include "configuration_interface.h" @@ -46,6 +45,18 @@ GpsL1CaPcpsAcquisitionFpga::GpsL1CaPcpsAcquisitionFpga( unsigned int in_streams, unsigned int out_streams) : role_(role), in_streams_(in_streams), out_streams_(out_streams) { + unsigned int code_length; + bool bit_transition_flag; + bool use_CFAR_algorithm_flag; + unsigned int sampled_ms; + long fs_in; + long ifreq; + bool dump; + std::string dump_filename; + unsigned int nsamples_total; + unsigned int select_queue_Fpga; + std::string device_name; + configuration_ = configuration; std::string default_item_type = "cshort"; @@ -55,50 +66,53 @@ GpsL1CaPcpsAcquisitionFpga::GpsL1CaPcpsAcquisitionFpga( item_type_ = configuration_->property(role + ".item_type", default_item_type); - fs_in_ = configuration_->property("GNSS-SDR.internal_fs_hz", 2048000); - if_ = configuration_->property(role + ".if", 0); - dump_ = configuration_->property(role + ".dump", false); + fs_in = configuration_->property("GNSS-SDR.internal_fs_hz", 2048000); + ifreq = configuration_->property(role + ".if", 0); + dump = configuration_->property(role + ".dump", false); doppler_max_ = configuration_->property(role + ".doppler_max", 5000); - sampled_ms_ = configuration_->property(role + ".coherent_integration_time_ms", 1); + sampled_ms = configuration_->property(role + ".coherent_integration_time_ms", 1); // note : the FPGA is implemented according to bit transition flag = 0. Setting bit transition flag to 1 has no effect. - bit_transition_flag_ = configuration_->property(role + ".bit_transition_flag", false); + bit_transition_flag = configuration_->property(role + ".bit_transition_flag", false); // note : the FPGA is implemented according to use_CFAR_algorithm = 0. Setting use_CFAR_algorithm to 1 has no effect. - use_CFAR_algorithm_flag_=configuration_->property(role + ".use_CFAR_algorithm", false); + use_CFAR_algorithm_flag=configuration_->property(role + ".use_CFAR_algorithm", false); // note : the FPGA does not use the max_dwells variable. max_dwells_ = configuration_->property(role + ".max_dwells", 1); - dump_filename_ = configuration_->property(role + ".dump_filename", default_dump_filename); + dump_filename = configuration_->property(role + ".dump_filename", default_dump_filename); //--- Find number of samples per spreading code ------------------------- - code_length_ = round(fs_in_ / (GPS_L1_CA_CODE_RATE_HZ / GPS_L1_CA_CODE_LENGTH_CHIPS)); + code_length = round(fs_in / (GPS_L1_CA_CODE_RATE_HZ / GPS_L1_CA_CODE_LENGTH_CHIPS)); // code length has the same value as d_fft_size float nbits; - nbits = ceilf(log2f(code_length_)); - nsamples_total_ = pow(2,nbits); + nbits = ceilf(log2f(code_length)); + nsamples_total = pow(2,nbits); //vector_length_ = code_length_ * sampled_ms_; - vector_length_ = nsamples_total_ * sampled_ms_; + vector_length_ = nsamples_total * sampled_ms; - if( bit_transition_flag_ ) - { - vector_length_ *= 2; - } +// if( bit_transition_flag_ ) +// { +// vector_length_ *= 2; +// } - code_ = new gr_complex[vector_length_]; - select_queue_Fpga_ = configuration_->property(role + ".select_queue_Fpga", 0); + + select_queue_Fpga = configuration_->property(role + ".select_queue_Fpga", 0); + + std::string default_device_name = "/dev/uio0"; + device_name = configuration_->property(role + ".devicename", default_device_name); if (item_type_.compare("cshort") == 0 ) { item_size_ = sizeof(lv_16sc_t); - gps_acquisition_fpga_sc_ = gps_pcps_make_acquisition_fpga_sc(sampled_ms_, max_dwells_, - doppler_max_, if_, fs_in_, code_length_, code_length_, vector_length_, - bit_transition_flag_, use_CFAR_algorithm_flag_, select_queue_Fpga_, dump_, dump_filename_); + gps_acquisition_fpga_sc_ = gps_pcps_make_acquisition_fpga_sc(sampled_ms, max_dwells_, + doppler_max_, ifreq, fs_in, code_length, code_length, vector_length_, nsamples_total, + bit_transition_flag, use_CFAR_algorithm_flag, select_queue_Fpga, device_name, dump, dump_filename); DLOG(INFO) << "acquisition(" << gps_acquisition_fpga_sc_->unique_id() << ")"; } @@ -107,6 +121,8 @@ GpsL1CaPcpsAcquisitionFpga::GpsL1CaPcpsAcquisitionFpga( } + + channel_ = 0; threshold_ = 0.0; doppler_step_ = 0; @@ -116,7 +132,7 @@ GpsL1CaPcpsAcquisitionFpga::GpsL1CaPcpsAcquisitionFpga( GpsL1CaPcpsAcquisitionFpga::~GpsL1CaPcpsAcquisitionFpga() { - delete[] code_; + } @@ -194,26 +210,8 @@ void GpsL1CaPcpsAcquisitionFpga::init() void GpsL1CaPcpsAcquisitionFpga::set_local_code() { - std::complex* code = new std::complex[vector_length_]; + gps_acquisition_fpga_sc_->set_local_code(); - - //init to zeros for the zero padding of the fft - for (uint s=0;s(0, 0); - } - - gps_l1_ca_code_gen_complex_sampled(code, gnss_synchro_->PRN, fs_in_ , 0); - - for (unsigned int i = 0; i < sampled_ms_; i++) - { - memcpy(&(code_[i*vector_length_]), code, sizeof(gr_complex)*vector_length_); - - } - - gps_acquisition_fpga_sc_->set_local_code(code_); - - delete[] code; } diff --git a/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_acquisition_fpga.h b/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_acquisition_fpga.h index 95d7cc8dd..9a7edbd7c 100644 --- a/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_acquisition_fpga.h +++ b/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_acquisition_fpga.h @@ -137,35 +137,19 @@ public: private: ConfigurationInterface* configuration_; gps_pcps_acquisition_fpga_sc_sptr gps_acquisition_fpga_sc_; - gr::blocks::stream_to_vector::sptr stream_to_vector_; - gr::blocks::float_to_complex::sptr float_to_complex_; - complex_byte_to_float_x2_sptr cbyte_to_float_x2_; size_t item_size_; std::string item_type_; unsigned int vector_length_; - unsigned int code_length_; - bool bit_transition_flag_; - bool use_CFAR_algorithm_flag_; unsigned int channel_; float threshold_; unsigned int doppler_max_; unsigned int doppler_step_; - unsigned int sampled_ms_; unsigned int max_dwells_; - long fs_in_; - long if_; - bool dump_; - std::string dump_filename_; - std::complex * code_; Gnss_Synchro * gnss_synchro_; std::string role_; unsigned int in_streams_; unsigned int out_streams_; - unsigned int nsamples_total_; - - unsigned int select_queue_Fpga_; - float calculate_threshold(float pfa); }; diff --git a/src/algorithms/acquisition/gnuradio_blocks/gps_pcps_acquisition_fpga_sc.cc b/src/algorithms/acquisition/gnuradio_blocks/gps_pcps_acquisition_fpga_sc.cc index 7cb177ded..05b0282c8 100644 --- a/src/algorithms/acquisition/gnuradio_blocks/gps_pcps_acquisition_fpga_sc.cc +++ b/src/algorithms/acquisition/gnuradio_blocks/gps_pcps_acquisition_fpga_sc.cc @@ -52,24 +52,24 @@ void wait3(int seconds) gps_pcps_acquisition_fpga_sc_sptr gps_pcps_make_acquisition_fpga_sc( unsigned int sampled_ms, unsigned int max_dwells, unsigned int doppler_max, long freq, long fs_in, - int samples_per_ms, int samples_per_code, int vector_length, + int samples_per_ms, int samples_per_code, int vector_length, unsigned int nsamples_total, bool bit_transition_flag, bool use_CFAR_algorithm_flag, - unsigned int select_queue_Fpga, + unsigned int select_queue_Fpga, std::string device_name, bool dump, std::string dump_filename) { return gps_pcps_acquisition_fpga_sc_sptr( new gps_pcps_acquisition_fpga_sc(sampled_ms, max_dwells, doppler_max, freq, fs_in, samples_per_ms, - samples_per_code, vector_length, bit_transition_flag, use_CFAR_algorithm_flag, select_queue_Fpga, dump, dump_filename)); + samples_per_code, vector_length, nsamples_total, bit_transition_flag, use_CFAR_algorithm_flag, select_queue_Fpga, device_name, dump, dump_filename)); } gps_pcps_acquisition_fpga_sc::gps_pcps_acquisition_fpga_sc( unsigned int sampled_ms, unsigned int max_dwells, unsigned int doppler_max, long freq, long fs_in, - int samples_per_ms, int samples_per_code, int vector_length, + int samples_per_ms, int samples_per_code, int vector_length, unsigned int nsamples_total, bool bit_transition_flag, bool use_CFAR_algorithm_flag, - unsigned int select_queue_Fpga, + unsigned int select_queue_Fpga, std::string device_name, bool dump, std::string dump_filename) : @@ -79,62 +79,27 @@ gps_pcps_acquisition_fpga_sc::gps_pcps_acquisition_fpga_sc( d_sample_counter = 0; // SAMPLE COUNTER d_active = false; d_state = 0; - d_freq = freq; - d_fs_in = fs_in; - d_samples_per_ms = samples_per_ms; d_samples_per_code = samples_per_code; - d_sampled_ms = sampled_ms; d_max_dwells = max_dwells; // Note : d_max_dwells is not used in the FPGA implementation d_well_count = 0; d_doppler_max = doppler_max; - d_fft_size = d_sampled_ms * d_samples_per_ms; + d_fft_size = sampled_ms * samples_per_ms; d_mag = 0; - d_input_power = 0.0; d_num_doppler_bins = 0; d_bit_transition_flag = bit_transition_flag; // Note : bit transition flag is ignored and assumed 0 in the FPGA implementation d_use_CFAR_algorithm_flag = use_CFAR_algorithm_flag; // Note : user CFAR algorithm flag is ignored and assumed 0 in the FPGA implementation d_threshold = 0.0; d_doppler_step = 250; - d_code_phase = 0; - d_test_statistics = 0.0; d_channel = 0; - d_doppler_freq = 0.0; - - d_nsamples_total = vector_length; - - //if( d_bit_transition_flag ) - // { - // d_fft_size *= 2; - // d_max_dwells = 1; - // } - - d_fft_codes = static_cast(volk_gnsssdr_malloc(d_nsamples_total * sizeof(gr_complex), volk_gnsssdr_get_alignment())); - d_magnitude = static_cast(volk_gnsssdr_malloc(d_nsamples_total * sizeof(float), volk_gnsssdr_get_alignment())); - //temporary storage for the input conversion from 16sc to float 32fc - d_in_32fc = static_cast(volk_gnsssdr_malloc(d_nsamples_total * sizeof(gr_complex), volk_gnsssdr_get_alignment())); - - d_fft_codes_padded = static_cast(volk_gnsssdr_malloc(d_nsamples_total * sizeof(gr_complex), volk_gnsssdr_get_alignment())); - - - // Direct FFT - d_fft_if = new gr::fft::fft_complex(d_nsamples_total, true); - - // Inverse FFT - d_ifft = new gr::fft::fft_complex(d_nsamples_total, false); - - // FPGA queue selection - d_select_queue_Fpga = select_queue_Fpga; // For dumping samples into a file d_dump = dump; d_dump_filename = dump_filename; d_gnss_synchro = 0; - d_grid_doppler_wipeoffs = 0; - - - + // instantiate HW accelerator class + acquisition_fpga_8sc= std::make_shared(device_name, vector_length, d_fft_size, nsamples_total, fs_in, freq, sampled_ms, select_queue_Fpga); } @@ -142,73 +107,23 @@ gps_pcps_acquisition_fpga_sc::gps_pcps_acquisition_fpga_sc( gps_pcps_acquisition_fpga_sc::~gps_pcps_acquisition_fpga_sc() { - if (d_num_doppler_bins > 0) - { - for (unsigned int i = 0; i < d_num_doppler_bins; i++) - { - volk_gnsssdr_free(d_grid_doppler_wipeoffs[i]); - } - delete[] d_grid_doppler_wipeoffs; - } - - volk_gnsssdr_free(d_fft_codes); - volk_gnsssdr_free(d_magnitude); - volk_gnsssdr_free(d_in_32fc); - - delete d_ifft; - delete d_fft_if; if (d_dump) { d_dump_file.close(); } - - - acquisition_fpga_8sc.free(); + acquisition_fpga_8sc->free(); } -void gps_pcps_acquisition_fpga_sc::set_local_code(std::complex * code) -{ - // COD - // Here we want to create a buffer that looks like this: - // [ 0 0 0 ... 0 c_0 c_1 ... c_L] - // where c_i is the local code and there are L zeros and L chips - - - - - int offset = 0; -// if( d_bit_transition_flag ) -// { -// std::fill_n( d_fft_if->get_inbuf(), d_nsamples_total, gr_complex( 0.0, 0.0 ) ); -// offset = d_nsamples_total; -// } - - - - memcpy(d_fft_if->get_inbuf() + offset, code, sizeof(gr_complex) * d_nsamples_total); - d_fft_if->execute(); // We need the FFT of local code - volk_32fc_conjugate_32fc(d_fft_codes_padded, d_fft_if->get_outbuf(), d_nsamples_total); - - acquisition_fpga_8sc.set_local_code(d_fft_codes_padded); - -} - - -void gps_pcps_acquisition_fpga_sc::update_local_carrier(gr_complex* carrier_vector, int correlator_length_samples, float freq) +void gps_pcps_acquisition_fpga_sc::set_local_code() { - float phase_step_rad = GPS_TWO_PI * freq / static_cast(d_fs_in); - - float _phase[1]; - _phase[0] = 0; - volk_gnsssdr_s32f_sincos_32fc(carrier_vector, - phase_step_rad, _phase, correlator_length_samples); + acquisition_fpga_8sc->set_local_code(d_gnss_synchro->PRN); } - void gps_pcps_acquisition_fpga_sc::init() { d_gnss_synchro->Flag_valid_acquisition = false; @@ -221,19 +136,12 @@ void gps_pcps_acquisition_fpga_sc::init() d_gnss_synchro->Acq_doppler_hz = 0.0; d_gnss_synchro->Acq_samplestamp_samples = 0; d_mag = 0.0; - d_input_power = 0.0; d_num_doppler_bins = ceil( static_cast(static_cast(d_doppler_max) - static_cast(-d_doppler_max)) / static_cast(d_doppler_step)); - // Create the carrier Doppler wipeoff signals - d_grid_doppler_wipeoffs = new gr_complex*[d_num_doppler_bins]; - for (unsigned int doppler_index = 0; doppler_index < d_num_doppler_bins; doppler_index++) - { - d_grid_doppler_wipeoffs[doppler_index] = static_cast(volk_gnsssdr_malloc(d_fft_size * sizeof(gr_complex), volk_gnsssdr_get_alignment())); - int doppler = -static_cast(d_doppler_max) + d_doppler_step * doppler_index; - update_local_carrier(d_grid_doppler_wipeoffs[doppler_index], d_fft_size, d_freq + doppler); - } - acquisition_fpga_8sc.init(d_fft_size, d_nsamples_total, d_freq, d_doppler_max, d_doppler_step, d_num_doppler_bins, d_fs_in, d_select_queue_Fpga); + acquisition_fpga_8sc->open_device(); + + acquisition_fpga_8sc->init(); @@ -253,8 +161,6 @@ void gps_pcps_acquisition_fpga_sc::set_state(int state) d_gnss_synchro->Acq_samplestamp_samples = 0; d_well_count = 0; d_mag = 0.0; - d_input_power = 0.0; - d_test_statistics = 0.0; } else if (d_state == 0) {} @@ -275,147 +181,142 @@ void gps_pcps_acquisition_fpga_sc::set_active(bool active) float temp_peak_to_noise_level = 0.0; float peak_to_noise_level = 0.0; - acquisition_fpga_8sc.block_samples(); // block the samples to run the acquisition this is only necessary for the tests + float input_power; + float test_statistics = 0.0; + acquisition_fpga_8sc->block_samples(); // block the samples to run the acquisition this is only necessary for the tests d_active = active; -// while (d_well_count < d_max_dwells) -// { - int acquisition_message = -1; //0=STOP_CHANNEL 1=ACQ_SUCCEES 2=ACQ_FAIL + int acquisition_message = -1; //0=STOP_CHANNEL 1=ACQ_SUCCEES 2=ACQ_FAIL - d_state = 1; + d_state = 1; - // initialize acquisition algorithm - int doppler; - uint32_t indext = 0; - float magt = 0.0; - //int effective_fft_size = ( d_bit_transition_flag ? d_fft_size/2 : d_fft_size ); - int effective_fft_size = d_fft_size; - //float fft_normalization_factor = static_cast(d_fft_size) * static_cast(d_fft_size); + // initialize acquisition algorithm + int doppler; + uint32_t indext = 0; + float magt = 0.0; + //int effective_fft_size = ( d_bit_transition_flag ? d_fft_size/2 : d_fft_size ); + int effective_fft_size = d_fft_size; + //float fft_normalization_factor = static_cast(d_fft_size) * static_cast(d_fft_size); - d_mag = 0.0; + d_mag = 0.0; - unsigned int initial_sample; + unsigned int initial_sample; - d_well_count++; + d_well_count++; - DLOG(INFO) << "Channel: " << d_channel - << " , doing acquisition of satellite: " << d_gnss_synchro->System << " "<< d_gnss_synchro->PRN - << " ,sample stamp: " << d_sample_counter << ", threshold: " - << ", threshold: " - << d_threshold << ", doppler_max: " << d_doppler_max - << ", doppler_step: " << d_doppler_step; + DLOG(INFO) << "Channel: " << d_channel + << " , doing acquisition of satellite: " << d_gnss_synchro->System << " "<< d_gnss_synchro->PRN + << " ,sample stamp: " << d_sample_counter << ", threshold: " + << ", threshold: " + << d_threshold << ", doppler_max: " << d_doppler_max + << ", doppler_step: " << d_doppler_step; - // Doppler frequency search loop - for (unsigned int doppler_index = 0; doppler_index < d_num_doppler_bins; doppler_index++) + // Doppler frequency search loop + for (unsigned int doppler_index = 0; doppler_index < d_num_doppler_bins; doppler_index++) + { + + + doppler = -static_cast(d_doppler_max) + d_doppler_step * doppler_index; + + acquisition_fpga_8sc->set_phase_step(doppler_index); + acquisition_fpga_8sc->run_acquisition(); // runs acquisition and waits until it is finished + + acquisition_fpga_8sc->read_acquisition_results(&indext, &magt, &initial_sample, &input_power); + + d_sample_counter = initial_sample; + + temp_peak_to_noise_level = (float) (magt / input_power); + if (peak_to_noise_level < temp_peak_to_noise_level) { + peak_to_noise_level = temp_peak_to_noise_level; + d_mag = magt; + input_power = (input_power - d_mag) / (effective_fft_size - 1); - doppler = -static_cast(d_doppler_max) + d_doppler_step * doppler_index; - - acquisition_fpga_8sc.set_phase_step(doppler_index); - acquisition_fpga_8sc.run_acquisition(); // runs acquisition and waits until it is finished - - acquisition_fpga_8sc.read_acquisition_results(&indext, &magt, &initial_sample, &d_input_power); - - d_sample_counter = initial_sample; - - temp_peak_to_noise_level = (float) (magt / d_input_power); - if (peak_to_noise_level < temp_peak_to_noise_level) - { - peak_to_noise_level = temp_peak_to_noise_level; - d_mag = magt; - - d_input_power = (d_input_power - d_mag) / (effective_fft_size - 1); - - //if (d_test_statistics < (d_mag / d_input_power) || !d_bit_transition_flag) - // { - d_gnss_synchro->Acq_delay_samples = static_cast(indext % d_samples_per_code); - d_gnss_synchro->Acq_doppler_hz = static_cast(doppler); - d_gnss_synchro->Acq_samplestamp_samples = d_sample_counter; - d_test_statistics = d_mag / d_input_power; - // } - } - - // Record results to file if required - if (d_dump) - { - std::stringstream filename; - std::streamsize n = 2 * sizeof(float) * (d_fft_size); // complex file write - filename.str(""); - - boost::filesystem::path p = d_dump_filename; - filename << p.parent_path().string() - << boost::filesystem::path::preferred_separator - << p.stem().string() - << "_" << d_gnss_synchro->System - <<"_" << d_gnss_synchro->Signal << "_sat_" - << d_gnss_synchro->PRN << "_doppler_" - << doppler - << p.extension().string(); - - DLOG(INFO) << "Writing ACQ out to " << filename.str(); - - d_dump_file.open(filename.str().c_str(), std::ios::out | std::ios::binary); - d_dump_file.write((char*)d_ifft->get_outbuf(), n); //write directly |abs(x)|^2 in this Doppler bin? - d_dump_file.close(); - } + d_gnss_synchro->Acq_delay_samples = static_cast(indext % d_samples_per_code); + d_gnss_synchro->Acq_doppler_hz = static_cast(doppler); + d_gnss_synchro->Acq_samplestamp_samples = d_sample_counter; + test_statistics = d_mag / input_power; } + // Record results to file if required + if (d_dump) + { + std::stringstream filename; + //std::streamsize n = 2 * sizeof(float) * (d_fft_size); // complex file write + filename.str(""); - if (d_test_statistics > d_threshold) - { - d_state = 2; // Positive acquisition + boost::filesystem::path p = d_dump_filename; + filename << p.parent_path().string() + << boost::filesystem::path::preferred_separator + << p.stem().string() + << "_" << d_gnss_synchro->System + <<"_" << d_gnss_synchro->Signal << "_sat_" + << d_gnss_synchro->PRN << "_doppler_" + << doppler + << p.extension().string(); - // 6.1- Declare positive acquisition using a message port - DLOG(INFO) << "positive acquisition"; - DLOG(INFO) << "satellite " << d_gnss_synchro->System << " " << d_gnss_synchro->PRN; - DLOG(INFO) << "sample_stamp " << d_sample_counter; - DLOG(INFO) << "test statistics value " << d_test_statistics; - DLOG(INFO) << "test statistics threshold " << d_threshold; - DLOG(INFO) << "code phase " << d_gnss_synchro->Acq_delay_samples; - DLOG(INFO) << "doppler " << d_gnss_synchro->Acq_doppler_hz; - DLOG(INFO) << "magnitude " << d_mag; - DLOG(INFO) << "input signal power " << d_input_power; + DLOG(INFO) << "Writing ACQ out to " << filename.str(); - d_active = false; - d_state = 0; + d_dump_file.open(filename.str().c_str(), std::ios::out | std::ios::binary); + d_dump_file.close(); + } + } - acquisition_message = 1; - this->message_port_pub(pmt::mp("events"), pmt::from_long(acquisition_message)); -// break; + if (test_statistics > d_threshold) + { + d_state = 2; // Positive acquisition - } - else //if (d_well_count == d_max_dwells) - { - d_state = 3; // Negative acquisition + // 6.1- Declare positive acquisition using a message port + DLOG(INFO) << "positive acquisition"; + DLOG(INFO) << "satellite " << d_gnss_synchro->System << " " << d_gnss_synchro->PRN; + DLOG(INFO) << "sample_stamp " << d_sample_counter; + DLOG(INFO) << "test statistics value " << test_statistics; + DLOG(INFO) << "test statistics threshold " << d_threshold; + DLOG(INFO) << "code phase " << d_gnss_synchro->Acq_delay_samples; + DLOG(INFO) << "doppler " << d_gnss_synchro->Acq_doppler_hz; + DLOG(INFO) << "magnitude " << d_mag; + DLOG(INFO) << "input signal power " << input_power; - // 6.2- Declare negative acquisition using a message port - DLOG(INFO) << "negative acquisition"; - DLOG(INFO) << "satellite " << d_gnss_synchro->System << " " << d_gnss_synchro->PRN; - DLOG(INFO) << "sample_stamp " << d_sample_counter; - DLOG(INFO) << "test statistics value " << d_test_statistics; - DLOG(INFO) << "test statistics threshold " << d_threshold; - DLOG(INFO) << "code phase " << d_gnss_synchro->Acq_delay_samples; - DLOG(INFO) << "doppler " << d_gnss_synchro->Acq_doppler_hz; - DLOG(INFO) << "magnitude " << d_mag; - DLOG(INFO) << "input signal power " << d_input_power; + d_active = false; + d_state = 0; - d_active = false; - d_state = 0; + acquisition_message = 1; + this->message_port_pub(pmt::mp("events"), pmt::from_long(acquisition_message)); - acquisition_message = 2; - this->message_port_pub(pmt::mp("events"), pmt::from_long(acquisition_message)); -// break; - } + } + else + { + d_state = 3; // Negative acquisition -// } + // 6.2- Declare negative acquisition using a message port + DLOG(INFO) << "negative acquisition"; + DLOG(INFO) << "satellite " << d_gnss_synchro->System << " " << d_gnss_synchro->PRN; + DLOG(INFO) << "sample_stamp " << d_sample_counter; + DLOG(INFO) << "test statistics value " << test_statistics; + DLOG(INFO) << "test statistics threshold " << d_threshold; + DLOG(INFO) << "code phase " << d_gnss_synchro->Acq_delay_samples; + DLOG(INFO) << "doppler " << d_gnss_synchro->Acq_doppler_hz; + DLOG(INFO) << "magnitude " << d_mag; + DLOG(INFO) << "input signal power " << input_power; - acquisition_fpga_8sc.unblock_samples(); + d_active = false; + d_state = 0; + + acquisition_message = 2; + this->message_port_pub(pmt::mp("events"), pmt::from_long(acquisition_message)); + + } + + + acquisition_fpga_8sc->unblock_samples(); + + acquisition_fpga_8sc->close_device(); DLOG(INFO) << "Done. Consumed 1 item."; diff --git a/src/algorithms/acquisition/gnuradio_blocks/gps_pcps_acquisition_fpga_sc.h b/src/algorithms/acquisition/gnuradio_blocks/gps_pcps_acquisition_fpga_sc.h index a3b4c1b64..ff39a1cd8 100644 --- a/src/algorithms/acquisition/gnuradio_blocks/gps_pcps_acquisition_fpga_sc.h +++ b/src/algorithms/acquisition/gnuradio_blocks/gps_pcps_acquisition_fpga_sc.h @@ -64,9 +64,9 @@ typedef boost::shared_ptr gps_pcps_acquisition_fpg gps_pcps_acquisition_fpga_sc_sptr gps_pcps_make_acquisition_fpga_sc(unsigned int sampled_ms, unsigned int max_dwells, unsigned int doppler_max, long freq, long fs_in, - int samples_per_ms, int samples_per_code, int vector_length_, + int samples_per_ms, int samples_per_code, int vector_length_, unsigned int nsamples_total_, bool bit_transition_flag, bool use_CFAR_algorithm_flag, - unsigned int select_queue_Fpga, + unsigned int select_queue_Fpga, std::string device_name, bool dump, std::string dump_filename); @@ -82,52 +82,35 @@ private: friend gps_pcps_acquisition_fpga_sc_sptr gps_pcps_make_acquisition_fpga_sc(unsigned int sampled_ms, unsigned int max_dwells, unsigned int doppler_max, long freq, long fs_in, - int samples_per_ms, int samples_per_code, int vector_length, + int samples_per_ms, int samples_per_code, int vector_length, unsigned int nsamples_total, bool bit_transition_flag, bool use_CFAR_algorithm_flag, unsigned int select_queue_Fpga, + std::string device_name, bool dump, std::string dump_filename); gps_pcps_acquisition_fpga_sc(unsigned int sampled_ms, unsigned int max_dwells, unsigned int doppler_max, long freq, long fs_in, - int samples_per_ms, int samples_per_code, int vector_length, + int samples_per_ms, int samples_per_code, int vector_length, unsigned int nsamples_total, bool bit_transition_flag, bool use_CFAR_algorithm_flag, unsigned int select_queue_Fpga, + std::string device_name, bool dump, std::string dump_filename); - void update_local_carrier(gr_complex* carrier_vector, - int correlator_length_samples, - float freq); - long d_fs_in; - long d_freq; - int d_samples_per_ms; int d_samples_per_code; float d_threshold; - std::string d_satellite_str; unsigned int d_doppler_max; unsigned int d_doppler_step; - unsigned int d_sampled_ms; unsigned int d_max_dwells; unsigned int d_well_count; unsigned int d_fft_size; - unsigned int d_nsamples_total; // the closest power of two approximation to d_fft_size unsigned long int d_sample_counter; - gr_complex** d_grid_doppler_wipeoffs; unsigned int d_num_doppler_bins; - gr_complex* d_fft_codes; - gr_complex* d_fft_codes_padded; - gr_complex* d_in_32fc; - gr::fft::fft_complex* d_fft_if; - gr::fft::fft_complex* d_ifft; + Gnss_Synchro *d_gnss_synchro; - unsigned int d_code_phase; - float d_doppler_freq; float d_mag; - float* d_magnitude; - float d_input_power; - float d_test_statistics; bool d_bit_transition_flag; bool d_use_CFAR_algorithm_flag; std::ofstream d_dump_file; @@ -135,10 +118,10 @@ private: int d_state; bool d_dump; unsigned int d_channel; - unsigned int d_select_queue_Fpga; std::string d_dump_filename; - gps_fpga_acquisition_8sc acquisition_fpga_8sc; + + std::shared_ptr acquisition_fpga_8sc; public: /*! @@ -173,7 +156,7 @@ public: * \brief Sets local code for PCPS acquisition algorithm. * \param code - Pointer to the PRN code. */ - void set_local_code(std::complex * code); + void set_local_code(); /*! * \brief Starts acquisition algorithm, turning from standby mode to @@ -215,6 +198,7 @@ public: void set_doppler_max(unsigned int doppler_max) { d_doppler_max = doppler_max; + acquisition_fpga_8sc->set_doppler_max(doppler_max); } /*! @@ -224,6 +208,7 @@ public: void set_doppler_step(unsigned int doppler_step) { d_doppler_step = doppler_step; + acquisition_fpga_8sc->set_doppler_step(doppler_step); } diff --git a/src/algorithms/acquisition/libs/CMakeLists.txt b/src/algorithms/acquisition/libs/CMakeLists.txt index 01ab3de68..93d1f1e29 100644 --- a/src/algorithms/acquisition/libs/CMakeLists.txt +++ b/src/algorithms/acquisition/libs/CMakeLists.txt @@ -55,6 +55,7 @@ include_directories( ${CMAKE_SOURCE_DIR}/src/core/system_parameters ${CMAKE_SOURCE_DIR}/src/core/interfaces ${CMAKE_SOURCE_DIR}/src/core/receiver + ${CMAKE_SOURCE_DIR}/src/algorithms/libs ${VOLK_INCLUDE_DIRS} ${GLOG_INCLUDE_DIRS} ${GFlags_INCLUDE_DIRS} diff --git a/src/algorithms/acquisition/libs/gps_fpga_acquisition_8sc.cc b/src/algorithms/acquisition/libs/gps_fpga_acquisition_8sc.cc index df5713dfe..1b0453288 100644 --- a/src/algorithms/acquisition/libs/gps_fpga_acquisition_8sc.cc +++ b/src/algorithms/acquisition/libs/gps_fpga_acquisition_8sc.cc @@ -34,6 +34,7 @@ */ #include "gps_fpga_acquisition_8sc.h" +#include "gps_sdr_signal_processing.h" #include // allocate memory dynamically @@ -59,139 +60,122 @@ // logging #include + +#include + #include "GPS_L1_CA.h" #define PAGE_SIZE 0x10000 -#define CODE_RESAMPLER_NUM_BITS_PRECISION 20 -#define CODE_PHASE_STEP_CHIPS_NUM_NBITS CODE_RESAMPLER_NUM_BITS_PRECISION -#define pwrtwo(x) (1 << (x)) -#define MAX_CODE_RESAMPLER_COUNTER pwrtwo(CODE_PHASE_STEP_CHIPS_NUM_NBITS) // 2^CODE_PHASE_STEP_CHIPS_NUM_NBITS -#define PHASE_CARR_NBITS 32 -#define PHASE_CARR_NBITS_INT 1 -#define PHASE_CARR_NBITS_FRAC PHASE_CARR_NBITS - PHASE_CARR_NBITS_INT - #define MAX_PHASE_STEP_RAD 0.999999999534339 // 1 - pow(2,-31); +#define NUM_PRNs 32 +#define TEST_REGISTER_WRITEVAL 0x55AA -bool gps_fpga_acquisition_8sc::init(unsigned int fft_size, unsigned int nsamples_total, long freq, unsigned int doppler_max, unsigned int doppler_step, int num_doppler_bins, long fs_in, unsigned select_queue) +bool gps_fpga_acquisition_8sc::init() { - float phase_step_rad_fpga; + // configure the acquisition with the main initialization values + gps_fpga_acquisition_8sc::configure_acquisition(); + return true; +} - d_phase_step_rad_vector = new float[num_doppler_bins]; - for (int doppler_index = 0; doppler_index < num_doppler_bins; doppler_index++) - { - int doppler = -static_cast(doppler_max) + doppler_step * doppler_index; - float phase_step_rad = GPS_TWO_PI * (freq + doppler) / static_cast(fs_in); - // The doppler step can never be outside the range -pi to +pi, otherwise there would be aliasing - // The FPGA expects phase_step_rad between -1 (-pi) to +1 (+pi) - // The FPGA also expects the phase to be negative since it produces cos(x) -j*sin(x) - // while the gnss-sdr software (volk_gnsssdr_s32f_sincos_32fc) generates cos(x) + j*sin(x) - phase_step_rad_fpga = phase_step_rad / (GPS_TWO_PI / 2); - // avoid saturation of the fixed point representation in the fpga - // (only the positive value can saturate due to the 2's complement representation) - if (phase_step_rad_fpga == 1.0) - { - phase_step_rad_fpga = MAX_PHASE_STEP_RAD; - } - d_phase_step_rad_vector[doppler_index] = phase_step_rad_fpga; - } - // sanity check : check test register - unsigned writeval = 0x55AA; - unsigned readval; - readval = gps_fpga_acquisition_8sc::fpga_acquisition_test_register(writeval); - if (writeval != readval) - { - printf("test register fail\n"); - LOG(WARNING) << "Acquisition test register sanity check failed"; - } - else - { - printf("test register success\n"); - LOG(INFO) << "Acquisition test register sanity check success !"; - } +bool gps_fpga_acquisition_8sc::set_local_code(unsigned int PRN) +{ - d_nsamples = fft_size; - d_nsamples_total = nsamples_total; + // select the code with the chosen PRN + gps_fpga_acquisition_8sc::fpga_configure_acquisition_local_code(&d_all_fft_codes[d_vector_length*PRN]); + return true; +} + + + +gps_fpga_acquisition_8sc::gps_fpga_acquisition_8sc(std::string device_name, unsigned int vector_length, unsigned int nsamples, unsigned int nsamples_total, long fs_in, long freq, unsigned int sampled_ms, unsigned select_queue) +{ + + // initial values + + d_device_name = device_name; + d_freq = freq; + d_fs_in = fs_in; + d_vector_length = vector_length; + d_nsamples = nsamples; // number of samples not including padding d_select_queue = select_queue; - gps_fpga_acquisition_8sc::configure_acquisition(); + d_doppler_step = 0; + d_fd = 0; // driver descriptor + d_map_base = nullptr; // driver memory map + + + // compute all the possible code ffts + + // Direct FFT + d_fft_if = new gr::fft::fft_complex(vector_length, true); + + // allocate memory to compute all the PRNs + // and compute all the possible codes + std::complex* code = new std::complex[nsamples_total]; // buffer for the local code + std::complex * code_total = new gr_complex[vector_length]; // buffer for the local code repeate every number of ms + + gr_complex* d_fft_codes_padded = static_cast(volk_gnsssdr_malloc(vector_length * sizeof(gr_complex), volk_gnsssdr_get_alignment())); + + d_all_fft_codes = new lv_16sc_t[vector_length*NUM_PRNs]; // memory containing all the possible fft codes for PRN 0 to 32 + + float max; // temporary maxima search + + for (unsigned int PRN = 0; PRN < NUM_PRNs; PRN ++) + { + gps_l1_ca_code_gen_complex_sampled(code, PRN, fs_in , 0); // generate PRN code + + for (unsigned int i = 0; i < sampled_ms; i++) + { + memcpy(&(code_total[i*nsamples_total]), code, sizeof(gr_complex)*nsamples_total); // repeat for each ms + } + + int offset = 0; + + memcpy(d_fft_if->get_inbuf() + offset, code_total, sizeof(gr_complex) * vector_length); // copy to FFT buffer + + d_fft_if->execute(); // Run the FFT of local code + + volk_32fc_conjugate_32fc(d_fft_codes_padded, d_fft_if->get_outbuf(), vector_length); // conjugate values + + max = 0; // initialize maximum value + + for (unsigned int i=0;i max) + { + max = std::abs(d_fft_codes_padded[i].real()); + } + if(std::abs(d_fft_codes_padded[i].imag()) > max) + { + max = std::abs(d_fft_codes_padded[i].imag()); + } + } + + for (unsigned int i=0;i max) - { - max = std::abs(fft_codes[i].real()); - } - if(std::abs(fft_codes[i].imag()) > max) - { - max = std::abs(fft_codes[i].imag()); - } - } - - for (i=0;i(d_doppler_max) + d_doppler_step * doppler_index; + float phase_step_rad = GPS_TWO_PI * (d_freq + doppler) / static_cast(d_fs_in); + // The doppler step can never be outside the range -pi to +pi, otherwise there would be aliasing + // The FPGA expects phase_step_rad between -1 (-pi) to +1 (+pi) + // The FPGA also expects the phase to be negative since it produces cos(x) -j*sin(x) + // while the gnss-sdr software (volk_gnsssdr_s32f_sincos_32fc) generates cos(x) + j*sin(x) + phase_step_rad_real = phase_step_rad / (GPS_TWO_PI / 2); + // avoid saturation of the fixed point representation in the fpga + // (only the positive value can saturate due to the 2's complement representation) + if (phase_step_rad_real == 1.0) + { + phase_step_rad_real = MAX_PHASE_STEP_RAD; + } phase_step_rad_int_temp = phase_step_rad_real*4; // * 2^2 phase_step_rad_int = (int32_t) (phase_step_rad_int_temp*(536870912)); // * 2^29 (in total it makes x2^31 in two steps to avoid the warnings @@ -280,6 +275,8 @@ void gps_fpga_acquisition_8sc::read_acquisition_results(uint32_t* max_index, flo *power_sum = (float) readval; readval = d_map_base[3]; *max_index = readval; + + } @@ -295,3 +292,50 @@ void gps_fpga_acquisition_8sc::unblock_samples() } +void gps_fpga_acquisition_8sc::open_device() +{ + + if ((d_fd = open(d_device_name.c_str(), O_RDWR | O_SYNC )) == -1) + { + LOG(WARNING) << "Cannot open deviceio" << d_device_name; + printf("kk\n"); + } + d_map_base = (volatile unsigned *)mmap(NULL, PAGE_SIZE, PROT_READ | PROT_WRITE, MAP_SHARED, d_fd,0); + + if (d_map_base == (void *) -1) + { + LOG(WARNING) << "Cannot map the FPGA acquisition module into user memory"; + printf("kk^2\n"); + } + + // sanity check : check test register + // we only nee to do this when the class is created + // but the device is not opened yet when the class is create + // because we need to open and close the device every time we run an acquisition + // since the same device may be used by more than one class (gps acquisition, galileo + // acquisition, etc ..) + unsigned writeval = TEST_REGISTER_WRITEVAL; + unsigned readval; + readval = gps_fpga_acquisition_8sc::fpga_acquisition_test_register(writeval); + if (writeval != readval) + { + LOG(WARNING) << "Acquisition test register sanity check failed"; + } + else + { + LOG(INFO) << "Acquisition test register sanity check success !"; + } + + +} +void gps_fpga_acquisition_8sc::close_device() +{ + printf("CLOSE DEVICE\n"); + if (munmap((void*)d_map_base, PAGE_SIZE) == -1) + { + printf("Failed to unmap memory uio\n"); + } + close(d_fd); + +} + diff --git a/src/algorithms/acquisition/libs/gps_fpga_acquisition_8sc.h b/src/algorithms/acquisition/libs/gps_fpga_acquisition_8sc.h index b34566308..39b08eb95 100644 --- a/src/algorithms/acquisition/libs/gps_fpga_acquisition_8sc.h +++ b/src/algorithms/acquisition/libs/gps_fpga_acquisition_8sc.h @@ -39,7 +39,7 @@ #include #include - +#include /*! * \brief Class that implements carrier wipe-off and correlators. @@ -47,35 +47,55 @@ class gps_fpga_acquisition_8sc { public: - gps_fpga_acquisition_8sc(); + gps_fpga_acquisition_8sc(std::string device_name, unsigned int vector_length, unsigned int nsamples, unsigned int nsamples_total, long fs_in, long freq, unsigned int sampled_ms, unsigned select_queue); ~gps_fpga_acquisition_8sc(); - bool init(unsigned int fft_size, unsigned int nsamples_total, long d_freq, unsigned int doppler_max, unsigned int doppler_step, int num_doppler_bins, long fs_in, unsigned select_queue); - bool set_local_code(gr_complex* fft_codes); //int code_length_chips, const lv_16sc_t* local_code_in, float *shifts_chips); + bool init(); + bool set_local_code(unsigned int PRN); //int code_length_chips, const lv_16sc_t* local_code_in, float *shifts_chips); bool free(); void run_acquisition(void); void set_phase_step(unsigned int doppler_index); void read_acquisition_results(uint32_t* max_index, float* max_magnitude, unsigned *initial_sample, float *power_sum); void block_samples(); void unblock_samples(); + void open_device(); + void close_device(); + + /*! + * \brief Set maximum Doppler grid search + * \param doppler_max - Maximum Doppler shift considered in the grid search [Hz]. + */ + void set_doppler_max(unsigned int doppler_max) + { + d_doppler_max = doppler_max; + } + + /*! + * \brief Set Doppler steps for the grid search + * \param doppler_step - Frequency bin of the search grid [Hz]. + */ + void set_doppler_step(unsigned int doppler_step) + { + d_doppler_step = doppler_step; + } + + private: - const lv_16sc_t *d_local_code_in; - lv_16sc_t *d_corr_out; - float *d_shifts_chips; - int d_code_length_chips; - int d_n_correlators; + + long d_freq; + long d_fs_in; + gr::fft::fft_complex* d_fft_if; // function used to run the fft of the local codes // data related to the hardware module and the driver - char d_device_io_name[11] = "/dev/uio13"; // driver io name - int d_fd; // driver descriptor - volatile unsigned *d_map_base; // driver memory map + int d_fd; // driver descriptor + volatile unsigned *d_map_base; // driver memory map + lv_16sc_t *d_all_fft_codes; // memory that contains all the code ffts + unsigned int d_vector_length; // number of samples incluing padding and number of ms + unsigned int d_nsamples; // number of samples not including padding + unsigned int d_select_queue; // queue selection + std::string d_device_name; // HW device name + unsigned int d_doppler_max; // max doppler + unsigned int d_doppler_step; // doppler step - // configuration data received from the interface - lv_16sc_t *d_fft_codes = nullptr; - float *d_phase_step_rad_vector = nullptr; - - unsigned int d_nsamples_total; // total number of samples in the fft including padding - unsigned int d_nsamples; // number of samples not including padding - unsigned int d_select_queue; // queue selection // FPGA private functions unsigned fpga_acquisition_test_register(unsigned writeval); diff --git a/src/algorithms/tracking/adapters/gps_l1_ca_dll_pll_c_aid_tracking_fpga.cc b/src/algorithms/tracking/adapters/gps_l1_ca_dll_pll_c_aid_tracking_fpga.cc index e21b6bc04..960ea47d6 100644 --- a/src/algorithms/tracking/adapters/gps_l1_ca_dll_pll_c_aid_tracking_fpga.cc +++ b/src/algorithms/tracking/adapters/gps_l1_ca_dll_pll_c_aid_tracking_fpga.cc @@ -63,6 +63,9 @@ GpsL1CaDllPllCAidTrackingFpga::GpsL1CaDllPllCAidTrackingFpga( float dll_bw_hz; float dll_bw_narrow_hz; float early_late_space_chips; + std::string device_name; + unsigned int device_base; + unsigned int device_range; item_type_ = configuration->property(role + ".item_type", default_item_type); fs_in = configuration->property("GNSS-SDR.internal_fs_hz", 2048000); f_if = configuration->property(role + ".if", 0); @@ -77,7 +80,11 @@ GpsL1CaDllPllCAidTrackingFpga::GpsL1CaDllPllCAidTrackingFpga( early_late_space_chips = configuration->property(role + ".early_late_space_chips", 0.5); std::string default_dump_filename = "./track_ch"; dump_filename = configuration->property(role + ".dump_filename", - default_dump_filename); //unused! + default_dump_filename); + std::string default_device_name = "/dev/uio"; + device_name = configuration->property(role + ".devicename", default_device_name); + device_base = configuration->property(role + ".device_base", 1); + device_range = configuration->property(role + ".device_range", 1); vector_length = std::round(fs_in / (GPS_L1_CA_CODE_RATE_HZ / GPS_L1_CA_CODE_LENGTH_CHIPS)); //################# MAKE TRACKING GNURadio object ################### @@ -96,7 +103,11 @@ GpsL1CaDllPllCAidTrackingFpga::GpsL1CaDllPllCAidTrackingFpga( pll_bw_narrow_hz, dll_bw_narrow_hz, extend_correlation_ms, - early_late_space_chips); + early_late_space_chips, + device_name, + device_base, + device_range + ); DLOG(INFO) << "tracking(" << tracking_fpga_sc->unique_id() << ")"; } else @@ -207,3 +218,11 @@ gr::basic_block_sptr GpsL1CaDllPllCAidTrackingFpga::get_right_block() return nullptr; } } + +void GpsL1CaDllPllCAidTrackingFpga::reset(void) +{ + + tracking_fpga_sc->reset(); + +} + diff --git a/src/algorithms/tracking/adapters/gps_l1_ca_dll_pll_c_aid_tracking_fpga.h b/src/algorithms/tracking/adapters/gps_l1_ca_dll_pll_c_aid_tracking_fpga.h index 8533220ff..bf7199967 100644 --- a/src/algorithms/tracking/adapters/gps_l1_ca_dll_pll_c_aid_tracking_fpga.h +++ b/src/algorithms/tracking/adapters/gps_l1_ca_dll_pll_c_aid_tracking_fpga.h @@ -95,6 +95,8 @@ public: void start_tracking(); + void reset(void); + private: gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc_sptr tracking_fpga_sc; size_t item_size_; diff --git a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc index eaa4237c7..9a3bb3f07 100644 --- a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc +++ b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc @@ -71,10 +71,14 @@ gps_l1_ca_dll_pll_c_aid_make_tracking_fpga_sc( float pll_bw_narrow_hz, float dll_bw_narrow_hz, int extend_correlation_ms, - float early_late_space_chips) + float early_late_space_chips, + std::string device_name, + unsigned int device_base, + unsigned int device_range) { return gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc_sptr(new gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc(if_freq, - fs_in, vector_length, dump, dump_filename, pll_bw_hz, dll_bw_hz, pll_bw_narrow_hz, dll_bw_narrow_hz, extend_correlation_ms, early_late_space_chips)); + fs_in, vector_length, dump, dump_filename, pll_bw_hz, dll_bw_hz, pll_bw_narrow_hz, dll_bw_narrow_hz, extend_correlation_ms, early_late_space_chips, + device_name, device_base, device_range)); } @@ -101,7 +105,10 @@ gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::gps_l1_ca_dll_pll_c_aid_tracking_fpga_ float pll_bw_narrow_hz, float dll_bw_narrow_hz, int extend_correlation_ms, - float early_late_space_chips) : + float early_late_space_chips, + std::string device_name, + unsigned int device_base, + unsigned int device_range) : gr::block("gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc", gr::io_signature::make(0, 0, sizeof(lv_16sc_t)), gr::io_signature::make(1, 1, sizeof(Gnss_Synchro))) @@ -151,7 +158,9 @@ gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::gps_l1_ca_dll_pll_c_aid_tracking_fpga_ d_local_code_shift_chips[1] = 0.0; d_local_code_shift_chips[2] = d_early_late_spc_chips; + //multicorrelator_fpga_8sc= std::make_shared(); multicorrelator_fpga_8sc.init(d_n_correlator_taps); + //multicorrelator_fpga_8sc->init(d_n_correlator_taps); //--- Perform initializations ------------------------------ // define initial code frequency basis of NCO @@ -259,6 +268,7 @@ void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::start_tracking() volk_gnsssdr_32fc_convert_16ic(d_ca_code_16sc, d_ca_code, static_cast(GPS_L1_CA_CODE_LENGTH_CHIPS)); multicorrelator_fpga_8sc.set_local_code_and_taps(static_cast(GPS_L1_CA_CODE_LENGTH_CHIPS), d_ca_code_16sc, d_local_code_shift_chips); + //multicorrelator_fpga_8sc->set_local_code_and_taps(static_cast(GPS_L1_CA_CODE_LENGTH_CHIPS), d_ca_code_16sc, d_local_code_shift_chips); for (int n = 0; n < d_n_correlator_taps; n++) { d_correlator_outs_16sc[n] = lv_16sc_t(0,0); @@ -285,6 +295,10 @@ void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::start_tracking() d_enable_extended_integration = false; d_preamble_synchronized = false; + // lock the channel + multicorrelator_fpga_8sc.lock_channel(); + + LOG(INFO) << "PULL-IN Doppler [Hz]=" << d_carrier_doppler_hz << " Code Phase correction [samples]=" << delay_correction_samples << " PULL-IN Code Phase [samples]=" << d_acq_code_phase_samples; @@ -302,6 +316,7 @@ gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::~gps_l1_ca_dll_pll_c_aid_tracking_fpga delete[] d_Prompt_buffer; multicorrelator_fpga_8sc.free(); + //multicorrelator_fpga_8sc->free(); } @@ -341,6 +356,7 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work (int noutput_items __ *out[0] = current_synchro_data; consume_each(samples_offset); // shift input to perform alignment with local replica multicorrelator_fpga_8sc.set_initial_sample(samples_offset); + //multicorrelator_fpga_8sc->set_initial_sample(samples_offset); return 1; } @@ -349,11 +365,17 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work (int noutput_items __ // perform carrier wipe-off and compute Early, Prompt and Late correlation //multicorrelator_fpga_8sc.set_input_output_vectors(d_correlator_outs_16sc, in); multicorrelator_fpga_8sc.set_output_vectors(d_correlator_outs_16sc); + //multicorrelator_fpga_8sc->set_output_vectors(d_correlator_outs_16sc); multicorrelator_fpga_8sc.Carrier_wipeoff_multicorrelator_resampler(d_rem_carrier_phase_rad, d_carrier_phase_step_rad, d_rem_code_phase_chips, d_code_phase_step_chips, d_correlation_length_samples); +// multicorrelator_fpga_8sc->Carrier_wipeoff_multicorrelator_resampler(d_rem_carrier_phase_rad, +// d_carrier_phase_step_rad, +// d_rem_code_phase_chips, +// d_code_phase_step_chips, +// d_correlation_length_samples); // ####### coherent intergration extension // keep the last symbols @@ -527,6 +549,7 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work (int noutput_items __ this->message_port_pub(pmt::mp("events"), pmt::from_long(3));//3 -> loss of lock d_carrier_lock_fail_counter = 0; d_enable_tracking = false; // TODO: check if disabling tracking is consistent with the channel state machine + multicorrelator_fpga_8sc.unlock_channel(); } } // ########### Output the tracking data to navigation and PVT ########## @@ -638,7 +661,7 @@ void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::set_channel(unsigned int channel) { d_channel = channel; multicorrelator_fpga_8sc.set_channel(d_channel); - + //multicorrelator_fpga_8sc->set_channel(d_channel); LOG(INFO) << "Tracking Channel set to " << d_channel; // ############# ENABLE DATA FILE LOG ################# if (d_dump == true) @@ -666,3 +689,8 @@ void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::set_gnss_synchro(Gnss_Synchro* p_ { d_acquisition_gnss_synchro = p_gnss_synchro; } + +void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::reset(void) +{ + multicorrelator_fpga_8sc.unlock_channel(); +} diff --git a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.h b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.h index f4f85404b..658209b5c 100644 --- a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.h +++ b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.h @@ -67,7 +67,10 @@ gps_l1_ca_dll_pll_c_aid_make_tracking_fpga_sc(long if_freq, float pll_bw_narrow_hz, float dll_bw_narrow_hz, int extend_correlation_ms, - float early_late_space_chips); + float early_late_space_chips, + std::string device_name, + unsigned int device_base, + unsigned int device_range); @@ -86,6 +89,8 @@ public: int general_work (int noutput_items, gr_vector_int &ninput_items, gr_vector_const_void_star &input_items, gr_vector_void_star &output_items); + void reset(void); + private: friend gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc_sptr gps_l1_ca_dll_pll_c_aid_make_tracking_fpga_sc(long if_freq, @@ -98,7 +103,10 @@ private: float pll_bw_narrow_hz, float dll_bw_narrow_hz, int extend_correlation_ms, - float early_late_space_chips); + float early_late_space_chips, + std::string device_name, + unsigned int device_base, + unsigned int device_range); gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc(long if_freq, long fs_in, unsigned @@ -110,7 +118,10 @@ private: float pll_bw_narrow_hz, float dll_bw_narrow_hz, int extend_correlation_ms, - float early_late_space_chips); + float early_late_space_chips, + std::string device_name, + unsigned int device_base, + unsigned int device_range); // tracking configuration vars unsigned int d_vector_length; @@ -131,6 +142,7 @@ private: //gr_complex* d_correlator_outs; lv_16sc_t* d_correlator_outs_16sc; fpga_multicorrelator_8sc multicorrelator_fpga_8sc; + //std::shared_ptr multicorrelator_fpga_8sc; // remaining code phase and carrier phase between tracking loops double d_rem_code_phase_samples; diff --git a/src/algorithms/tracking/libs/fpga_multicorrelator_8sc.cc b/src/algorithms/tracking/libs/fpga_multicorrelator_8sc.cc index 3ce33110e..e7019eb12 100644 --- a/src/algorithms/tracking/libs/fpga_multicorrelator_8sc.cc +++ b/src/algorithms/tracking/libs/fpga_multicorrelator_8sc.cc @@ -176,6 +176,7 @@ fpga_multicorrelator_8sc::~fpga_multicorrelator_8sc() bool fpga_multicorrelator_8sc::free() { // unlock the hardware + fpga_multicorrelator_8sc::unlock_channel(); // unlock the channel // free the FPGA dynamically created variables @@ -199,7 +200,7 @@ void fpga_multicorrelator_8sc::set_channel(unsigned int channel) { d_channel = channel; - snprintf(d_device_io_name, MAX_LENGTH_DEVICEIO_NAME, "/dev/uio%d",d_channel); + snprintf(d_device_io_name, MAX_LENGTH_DEVICEIO_NAME, "/dev/uio%d",d_channel + 1); printf("Opening Device Name : %s\n", d_device_io_name); if ((d_fd = open(d_device_io_name, O_RDWR | O_SYNC )) == -1) @@ -245,13 +246,13 @@ void fpga_multicorrelator_8sc::fpga_configure_tracking_gps_local_code(void) { int k,s; unsigned temp; - unsigned *ena_write_signals; - ena_write_signals = new unsigned[d_n_correlators]; - ena_write_signals[0] = 0x00000000; - ena_write_signals[1] = 0x20000000; + //unsigned *ena_write_signals; + d_ena_write_signals = new unsigned[d_n_correlators]; + d_ena_write_signals[0] = 0x00000000; + d_ena_write_signals[1] = 0x20000000; for (s = 2; s < d_n_correlators; s++) { - ena_write_signals[s]= ena_write_signals[s-1]*2; //0x40000000; + d_ena_write_signals[s]= d_ena_write_signals[s-1]*2; //0x40000000; } for (s = 0; s < d_n_correlators; s++) @@ -269,11 +270,11 @@ void fpga_multicorrelator_8sc::fpga_configure_tracking_gps_local_code(void) { temp = 0; } - d_map_base[11] = 0x0C000000 | (temp & 0xFFFF) | ena_write_signals[s]; + d_map_base[11] = 0x0C000000 | (temp & 0xFFFF) | d_ena_write_signals[s]; } } - delete [] ena_write_signals; + // delete [] ena_write_signals; } @@ -361,7 +362,8 @@ void fpga_multicorrelator_8sc::fpga_configure_signal_parameters_in_fpga(void) d_map_base[7] = d_correlator_length_samples - 1; d_map_base[9] = d_rem_carr_phase_rad_int; d_map_base[10] = d_phase_step_rad_int; - d_map_base[12] = 0; // lock the channel + //printf("locking the channel\n"); + //d_map_base[12] = 0; // lock the channel d_map_base[13] = d_initial_sample_counter; } @@ -383,6 +385,9 @@ void fpga_multicorrelator_8sc::read_tracking_gps_results(void) int k; readval_real = new int[d_n_correlators]; readval_imag = new int[d_n_correlators]; + //static int numtimes = 0; + //printf("read results numtimes = %d\n", numtimes); + //numtimes = numtimes + 1; for (k =0 ; k < d_n_correlators; k++) { @@ -416,6 +421,15 @@ void fpga_multicorrelator_8sc::read_tracking_gps_results(void) void fpga_multicorrelator_8sc::unlock_channel(void) { + //printf("unlock the channel\n"); // unlock the channel to let the next samples go through d_map_base[12] = 1; // unlock the channel } + +void fpga_multicorrelator_8sc::lock_channel(void) +{ + //printf("locking the channel\n"); + d_map_base[12] = 0; // lock the channel +} + + diff --git a/src/algorithms/tracking/libs/fpga_multicorrelator_8sc.h b/src/algorithms/tracking/libs/fpga_multicorrelator_8sc.h index 0655b26e0..94d6cadf9 100644 --- a/src/algorithms/tracking/libs/fpga_multicorrelator_8sc.h +++ b/src/algorithms/tracking/libs/fpga_multicorrelator_8sc.h @@ -59,6 +59,10 @@ public: void set_channel(unsigned int channel); void set_initial_sample(int samples_offset); + void lock_channel(void); + void unlock_channel(void); + + private: const lv_16sc_t *d_local_code_in; @@ -88,7 +92,7 @@ private: int d_rem_carr_phase_rad_int; int d_phase_step_rad_int; unsigned d_initial_sample_counter; - + unsigned *d_ena_write_signals; // FPGA private functions unsigned fpga_acquisition_test_register(unsigned writeval); void fpga_configure_tracking_gps_local_code(void); @@ -98,7 +102,9 @@ private: void fpga_configure_signal_parameters_in_fpga(void); void fpga_launch_multicorrelator_fpga(void); void read_tracking_gps_results(void); - void unlock_channel(void); + + //void unlock_channel(void); + }; diff --git a/src/tests/unit-tests/signal-processing-blocks/acquisition/gps_l1_ca_pcps_acquisition_test_fpga.cc b/src/tests/unit-tests/signal-processing-blocks/acquisition/gps_l1_ca_pcps_acquisition_test_fpga.cc index 17d905f98..538766510 100644 --- a/src/tests/unit-tests/signal-processing-blocks/acquisition/gps_l1_ca_pcps_acquisition_test_fpga.cc +++ b/src/tests/unit-tests/signal-processing-blocks/acquisition/gps_l1_ca_pcps_acquisition_test_fpga.cc @@ -137,7 +137,6 @@ void thread_acquisition_send_rx_samples(gr::top_block_sptr top_block, const char for (int k=0;kset_property("Acquisition.doppler_step", "500"); config->set_property("Acquisition.repeat_satellite", "false"); config->set_property("Acquisition.pfa", "0.0"); + // extra configuration properties for the FPGA config->set_property("Acquisition.select_queue_Fpga", "0"); + config->set_property("Acquisition.devicename", "/dev/uio0"); + } diff --git a/src/tests/unit-tests/signal-processing-blocks/tracking/gps_l1_ca_dll_pll_tracking_test_fpga.cc b/src/tests/unit-tests/signal-processing-blocks/tracking/gps_l1_ca_dll_pll_tracking_test_fpga.cc index 855115567..4f87dc410 100644 --- a/src/tests/unit-tests/signal-processing-blocks/tracking/gps_l1_ca_dll_pll_tracking_test_fpga.cc +++ b/src/tests/unit-tests/signal-processing-blocks/tracking/gps_l1_ca_dll_pll_tracking_test_fpga.cc @@ -97,8 +97,13 @@ void send_tracking_gps_input_samples(FILE *ptr_myfile, int num_remaining_samples fprintf(stderr, "Memory error!"); } + printf("now i will send the samples\n"); + while(num_remaining_samples > 0) { + + //printf("num_remaining_samples = %d\n", num_remaining_samples); + if (num_remaining_samples < MIN_SAMPLES_REMAINING) { if (flowgraph_stopped == 0) @@ -330,6 +335,9 @@ void GpsL1CADllPllTrackingTestFpga::configure_receiver() config->set_property("Tracking_1C.pll_bw_hz", "30.0"); config->set_property("Tracking_1C.dll_bw_hz", "2.0"); config->set_property("Tracking_1C.early_late_space_chips", "0.5"); + config->set_property("Tracking_GPS.devicename", "/dev/uio"); + config->set_property("Tracking_GPS.device_base", "0"); + config->set_property("Tracking_GPS.device_range", "0"); } From 0966ea9dcaf90ad4c75f689d5744f89112f9f4ce Mon Sep 17 00:00:00 2001 From: mmajoral Date: Tue, 23 May 2017 18:12:22 +0200 Subject: [PATCH 005/171] code refactoring --- .../gps_l1_ca_dll_pll_c_aid_tracking_fpga.cc | 11 ++- ...ps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc | 64 ++++++------ ...gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.h | 14 +-- .../tracking/libs/fpga_multicorrelator_8sc.cc | 97 +++++++++---------- .../tracking/libs/fpga_multicorrelator_8sc.h | 12 ++- .../gps_l1_ca_dll_pll_tracking_test_fpga.cc | 70 +++++++------ 6 files changed, 130 insertions(+), 138 deletions(-) diff --git a/src/algorithms/tracking/adapters/gps_l1_ca_dll_pll_c_aid_tracking_fpga.cc b/src/algorithms/tracking/adapters/gps_l1_ca_dll_pll_c_aid_tracking_fpga.cc index 960ea47d6..e55e62b97 100644 --- a/src/algorithms/tracking/adapters/gps_l1_ca_dll_pll_c_aid_tracking_fpga.cc +++ b/src/algorithms/tracking/adapters/gps_l1_ca_dll_pll_c_aid_tracking_fpga.cc @@ -65,7 +65,9 @@ GpsL1CaDllPllCAidTrackingFpga::GpsL1CaDllPllCAidTrackingFpga( float early_late_space_chips; std::string device_name; unsigned int device_base; - unsigned int device_range; + + + item_type_ = configuration->property(role + ".item_type", default_item_type); fs_in = configuration->property("GNSS-SDR.internal_fs_hz", 2048000); f_if = configuration->property(role + ".if", 0); @@ -84,7 +86,6 @@ GpsL1CaDllPllCAidTrackingFpga::GpsL1CaDllPllCAidTrackingFpga( std::string default_device_name = "/dev/uio"; device_name = configuration->property(role + ".devicename", default_device_name); device_base = configuration->property(role + ".device_base", 1); - device_range = configuration->property(role + ".device_range", 1); vector_length = std::round(fs_in / (GPS_L1_CA_CODE_RATE_HZ / GPS_L1_CA_CODE_LENGTH_CHIPS)); //################# MAKE TRACKING GNURadio object ################### @@ -105,8 +106,7 @@ GpsL1CaDllPllCAidTrackingFpga::GpsL1CaDllPllCAidTrackingFpga( extend_correlation_ms, early_late_space_chips, device_name, - device_base, - device_range + device_base ); DLOG(INFO) << "tracking(" << tracking_fpga_sc->unique_id() << ")"; } @@ -117,6 +117,9 @@ GpsL1CaDllPllCAidTrackingFpga::GpsL1CaDllPllCAidTrackingFpga( // LOG(WARNING) << item_type_ << " unknown tracking item type"; LOG(WARNING) << item_type_ << " the tracking item type for the FPGA tracking test has to be cshort"; } + + + channel_ = 0; } diff --git a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc index 9a3bb3f07..4268f40d0 100644 --- a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc +++ b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc @@ -73,18 +73,16 @@ gps_l1_ca_dll_pll_c_aid_make_tracking_fpga_sc( int extend_correlation_ms, float early_late_space_chips, std::string device_name, - unsigned int device_base, - unsigned int device_range) + unsigned int device_base) { return gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc_sptr(new gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc(if_freq, fs_in, vector_length, dump, dump_filename, pll_bw_hz, dll_bw_hz, pll_bw_narrow_hz, dll_bw_narrow_hz, extend_correlation_ms, early_late_space_chips, - device_name, device_base, device_range)); + device_name, device_base)); } void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::msg_handler_preamble_index(pmt::pmt_t msg) { - //pmt::print(msg); DLOG(INFO) << "Extended correlation enabled for Tracking CH " << d_channel << ": Satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN); if (d_enable_extended_integration == false) //avoid re-setting preamble indicator { @@ -107,12 +105,14 @@ gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::gps_l1_ca_dll_pll_c_aid_tracking_fpga_ int extend_correlation_ms, float early_late_space_chips, std::string device_name, - unsigned int device_base, - unsigned int device_range) : + unsigned int device_base) : gr::block("gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc", gr::io_signature::make(0, 0, sizeof(lv_16sc_t)), gr::io_signature::make(1, 1, sizeof(Gnss_Synchro))) { + + + // Telemetry bit synchronization message port input this->message_port_register_in(pmt::mp("preamble_timestamp_s")); this->set_msg_handler(pmt::mp("preamble_timestamp_s"), @@ -158,9 +158,8 @@ gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::gps_l1_ca_dll_pll_c_aid_tracking_fpga_ d_local_code_shift_chips[1] = 0.0; d_local_code_shift_chips[2] = d_early_late_spc_chips; - //multicorrelator_fpga_8sc= std::make_shared(); - multicorrelator_fpga_8sc.init(d_n_correlator_taps); - //multicorrelator_fpga_8sc->init(d_n_correlator_taps); + // create multicorrelator class + multicorrelator_fpga_8sc= std::make_shared(d_n_correlator_taps, device_name, device_base); //--- Perform initializations ------------------------------ // define initial code frequency basis of NCO @@ -209,6 +208,8 @@ gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::gps_l1_ca_dll_pll_c_aid_tracking_fpga_ d_preamble_timestamp_s = 0.0; d_carr_phase_error_secs_Ti = 0.0; //set_min_output_buffer((long int)300); + + } @@ -267,8 +268,7 @@ void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::start_tracking() gps_l1_ca_code_gen_complex(d_ca_code, d_acquisition_gnss_synchro->PRN, 0); volk_gnsssdr_32fc_convert_16ic(d_ca_code_16sc, d_ca_code, static_cast(GPS_L1_CA_CODE_LENGTH_CHIPS)); - multicorrelator_fpga_8sc.set_local_code_and_taps(static_cast(GPS_L1_CA_CODE_LENGTH_CHIPS), d_ca_code_16sc, d_local_code_shift_chips); - //multicorrelator_fpga_8sc->set_local_code_and_taps(static_cast(GPS_L1_CA_CODE_LENGTH_CHIPS), d_ca_code_16sc, d_local_code_shift_chips); + multicorrelator_fpga_8sc->set_local_code_and_taps(static_cast(GPS_L1_CA_CODE_LENGTH_CHIPS), d_ca_code_16sc, d_local_code_shift_chips); for (int n = 0; n < d_n_correlator_taps; n++) { d_correlator_outs_16sc[n] = lv_16sc_t(0,0); @@ -296,8 +296,7 @@ void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::start_tracking() d_preamble_synchronized = false; // lock the channel - multicorrelator_fpga_8sc.lock_channel(); - + multicorrelator_fpga_8sc->lock_channel(); LOG(INFO) << "PULL-IN Doppler [Hz]=" << d_carrier_doppler_hz << " Code Phase correction [samples]=" << delay_correction_samples @@ -315,8 +314,7 @@ gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::~gps_l1_ca_dll_pll_c_aid_tracking_fpga volk_gnsssdr_free(d_correlator_outs_16sc); delete[] d_Prompt_buffer; - multicorrelator_fpga_8sc.free(); - //multicorrelator_fpga_8sc->free(); + multicorrelator_fpga_8sc->free(); } @@ -324,6 +322,10 @@ gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::~gps_l1_ca_dll_pll_c_aid_tracking_fpga int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work (int noutput_items __attribute__((unused)), gr_vector_int &ninput_items __attribute__((unused)), gr_vector_const_void_star &input_items, gr_vector_void_star &output_items) { + + // samples offset + int samples_offset; + // Block input data and block output stream pointers Gnss_Synchro **out = (Gnss_Synchro **) &output_items[0]; @@ -341,7 +343,6 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work (int noutput_items __ // Receiver signal alignment if (d_pull_in == true) { - int samples_offset; double acq_trk_shif_correction_samples; int acq_to_trk_delay_samples; acq_to_trk_delay_samples = d_sample_counter - d_acq_sample_stamp; @@ -354,28 +355,20 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work (int noutput_items __ current_synchro_data.Carrier_phase_rads = d_acc_carrier_phase_cycles * GPS_TWO_PI; current_synchro_data.Carrier_Doppler_hz = d_carrier_doppler_hz; *out[0] = current_synchro_data; - consume_each(samples_offset); // shift input to perform alignment with local replica - multicorrelator_fpga_8sc.set_initial_sample(samples_offset); - //multicorrelator_fpga_8sc->set_initial_sample(samples_offset); + //consume_each(samples_offset); // shift input to perform alignment with local replica + multicorrelator_fpga_8sc->set_initial_sample(samples_offset); return 1; } // ################# CARRIER WIPEOFF AND CORRELATORS ############################## // perform carrier wipe-off and compute Early, Prompt and Late correlation - //multicorrelator_fpga_8sc.set_input_output_vectors(d_correlator_outs_16sc, in); - multicorrelator_fpga_8sc.set_output_vectors(d_correlator_outs_16sc); - //multicorrelator_fpga_8sc->set_output_vectors(d_correlator_outs_16sc); - multicorrelator_fpga_8sc.Carrier_wipeoff_multicorrelator_resampler(d_rem_carrier_phase_rad, + multicorrelator_fpga_8sc->set_output_vectors(d_correlator_outs_16sc); + multicorrelator_fpga_8sc->Carrier_wipeoff_multicorrelator_resampler(d_rem_carrier_phase_rad, d_carrier_phase_step_rad, d_rem_code_phase_chips, d_code_phase_step_chips, d_correlation_length_samples); -// multicorrelator_fpga_8sc->Carrier_wipeoff_multicorrelator_resampler(d_rem_carrier_phase_rad, -// d_carrier_phase_step_rad, -// d_rem_code_phase_chips, -// d_code_phase_step_chips, -// d_correlation_length_samples); // ####### coherent intergration extension // keep the last symbols @@ -383,6 +376,7 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work (int noutput_items __ d_P_history.push_back(d_correlator_outs_16sc[1]); // save prompt output d_L_history.push_back(d_correlator_outs_16sc[2]); // save late output + if (static_cast(d_P_history.size()) > d_extend_correlation_ms) { d_E_history.pop_front(); @@ -540,7 +534,10 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work (int noutput_items __ } else { - if (d_carrier_lock_fail_counter > 0) d_carrier_lock_fail_counter--; + if (d_carrier_lock_fail_counter > 0) + { + d_carrier_lock_fail_counter--; + } } if (d_carrier_lock_fail_counter > MAXIMUM_LOCK_FAIL_COUNTER) { @@ -549,7 +546,7 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work (int noutput_items __ this->message_port_pub(pmt::mp("events"), pmt::from_long(3));//3 -> loss of lock d_carrier_lock_fail_counter = 0; d_enable_tracking = false; // TODO: check if disabling tracking is consistent with the channel state machine - multicorrelator_fpga_8sc.unlock_channel(); + multicorrelator_fpga_8sc->unlock_channel(); } } // ########### Output the tracking data to navigation and PVT ########## @@ -650,7 +647,7 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work (int noutput_items __ } } - consume_each(d_correlation_length_samples); // this is necessary in gr::block derivates + //consume_each(d_correlation_length_samples); // this is necessary in gr::block derivates d_sample_counter += d_correlation_length_samples; //count for the processed samples return 1; //output tracking result ALWAYS even in the case of d_enable_tracking==false @@ -660,8 +657,7 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work (int noutput_items __ void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::set_channel(unsigned int channel) { d_channel = channel; - multicorrelator_fpga_8sc.set_channel(d_channel); - //multicorrelator_fpga_8sc->set_channel(d_channel); + multicorrelator_fpga_8sc->set_channel(d_channel); LOG(INFO) << "Tracking Channel set to " << d_channel; // ############# ENABLE DATA FILE LOG ################# if (d_dump == true) @@ -692,5 +688,5 @@ void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::set_gnss_synchro(Gnss_Synchro* p_ void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::reset(void) { - multicorrelator_fpga_8sc.unlock_channel(); + multicorrelator_fpga_8sc->unlock_channel(); } diff --git a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.h b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.h index 658209b5c..ecfd03b43 100644 --- a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.h +++ b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.h @@ -69,8 +69,7 @@ gps_l1_ca_dll_pll_c_aid_make_tracking_fpga_sc(long if_freq, int extend_correlation_ms, float early_late_space_chips, std::string device_name, - unsigned int device_base, - unsigned int device_range); + unsigned int device_base); @@ -105,8 +104,7 @@ private: int extend_correlation_ms, float early_late_space_chips, std::string device_name, - unsigned int device_base, - unsigned int device_range); + unsigned int device_base); gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc(long if_freq, long fs_in, unsigned @@ -120,8 +118,7 @@ private: int extend_correlation_ms, float early_late_space_chips, std::string device_name, - unsigned int device_base, - unsigned int device_range); + unsigned int device_base); // tracking configuration vars unsigned int d_vector_length; @@ -139,10 +136,9 @@ private: gr_complex* d_ca_code; lv_16sc_t* d_ca_code_16sc; float* d_local_code_shift_chips; - //gr_complex* d_correlator_outs; lv_16sc_t* d_correlator_outs_16sc; - fpga_multicorrelator_8sc multicorrelator_fpga_8sc; - //std::shared_ptr multicorrelator_fpga_8sc; + //fpga_multicorrelator_8sc multicorrelator_fpga_8sc; + std::shared_ptr multicorrelator_fpga_8sc; // remaining code phase and carrier phase between tracking loops double d_rem_code_phase_samples; diff --git a/src/algorithms/tracking/libs/fpga_multicorrelator_8sc.cc b/src/algorithms/tracking/libs/fpga_multicorrelator_8sc.cc index e7019eb12..bcc77d0e6 100644 --- a/src/algorithms/tracking/libs/fpga_multicorrelator_8sc.cc +++ b/src/algorithms/tracking/libs/fpga_multicorrelator_8sc.cc @@ -60,6 +60,9 @@ // logging #include +// string manipulation +#include + #define PAGE_SIZE 0x10000 #define MAX_LENGTH_DEVICEIO_NAME 50 #define CODE_RESAMPLER_NUM_BITS_PRECISION 20 @@ -72,18 +75,6 @@ -bool fpga_multicorrelator_8sc::init(int n_correlators) -{ - d_n_correlators = n_correlators; - - // instantiate variable length vectors - d_initial_index = static_cast(volk_gnsssdr_malloc(n_correlators * sizeof(unsigned), volk_gnsssdr_get_alignment())); - d_initial_interp_counter = static_cast(volk_gnsssdr_malloc(n_correlators * sizeof(unsigned), volk_gnsssdr_get_alignment())); - - return true; -} - - void fpga_multicorrelator_8sc::set_initial_sample(int samples_offset) { d_initial_sample_counter = samples_offset; @@ -157,19 +148,31 @@ bool fpga_multicorrelator_8sc::Carrier_wipeoff_multicorrelator_resampler( } -fpga_multicorrelator_8sc::fpga_multicorrelator_8sc() +fpga_multicorrelator_8sc::fpga_multicorrelator_8sc(int n_correlators, std::string device_name, unsigned int device_base) { + + d_n_correlators = n_correlators; + d_device_name = device_name; + d_device_base = device_base; + + // instantiate variable length vectors + d_initial_index = static_cast(volk_gnsssdr_malloc(n_correlators * sizeof(unsigned), volk_gnsssdr_get_alignment())); + d_initial_interp_counter = static_cast(volk_gnsssdr_malloc(n_correlators * sizeof(unsigned), volk_gnsssdr_get_alignment())); + d_local_code_in = nullptr; d_shifts_chips = nullptr; d_corr_out = nullptr; d_code_length_chips = 0; - d_n_correlators = 0; + + d_ena_write_signals = new unsigned[d_n_correlators]; + } fpga_multicorrelator_8sc::~fpga_multicorrelator_8sc() { close(d_fd); + delete [] d_ena_write_signals; } @@ -200,13 +203,20 @@ void fpga_multicorrelator_8sc::set_channel(unsigned int channel) { d_channel = channel; - snprintf(d_device_io_name, MAX_LENGTH_DEVICEIO_NAME, "/dev/uio%d",d_channel + 1); - printf("Opening Device Name : %s\n", d_device_io_name); + // open the device corresponding to the assigned channel + std::string mergedname; + std::stringstream devicebasetemp; + int numdevice = d_device_base + d_channel; + devicebasetemp << numdevice; + mergedname = d_device_name + devicebasetemp.str(); + strcpy(d_device_io_name, mergedname.c_str()); + printf("Opening Device Name : %s\n", d_device_io_name); if ((d_fd = open(d_device_io_name, O_RDWR | O_SYNC )) == -1) - { - LOG(WARNING) << "Cannot open deviceio" << d_device_io_name; - } + { + LOG(WARNING) << "Cannot open deviceio" << d_device_io_name; + } + d_map_base = (volatile unsigned *)mmap(NULL, PAGE_SIZE, PROT_READ | PROT_WRITE, MAP_SHARED, d_fd,0); if (d_map_base == (void *) -1) @@ -246,20 +256,18 @@ void fpga_multicorrelator_8sc::fpga_configure_tracking_gps_local_code(void) { int k,s; unsigned temp; - //unsigned *ena_write_signals; - d_ena_write_signals = new unsigned[d_n_correlators]; + d_ena_write_signals[0] = 0x00000000; d_ena_write_signals[1] = 0x20000000; for (s = 2; s < d_n_correlators; s++) { - d_ena_write_signals[s]= d_ena_write_signals[s-1]*2; //0x40000000; + d_ena_write_signals[s]= d_ena_write_signals[s-1]*2; } for (s = 0; s < d_n_correlators; s++) { // clear memory address counter d_map_base[11] = 0x10000000; - // write correlator 0 for (k = 0; k < d_code_length_chips; k++) { if (lv_creal(d_local_code_in[k]) == 1) @@ -274,7 +282,6 @@ void fpga_multicorrelator_8sc::fpga_configure_tracking_gps_local_code(void) } } - // delete [] ena_write_signals; } @@ -362,8 +369,6 @@ void fpga_multicorrelator_8sc::fpga_configure_signal_parameters_in_fpga(void) d_map_base[7] = d_correlator_length_samples - 1; d_map_base[9] = d_rem_carr_phase_rad_int; d_map_base[10] = d_phase_step_rad_int; - //printf("locking the channel\n"); - //d_map_base[12] = 0; // lock the channel d_map_base[13] = d_initial_sample_counter; } @@ -380,55 +385,41 @@ void fpga_multicorrelator_8sc::fpga_launch_multicorrelator_fpga(void) void fpga_multicorrelator_8sc::read_tracking_gps_results(void) { - int *readval_real; - int *readval_imag; + int readval_real; + int readval_imag; int k; - readval_real = new int[d_n_correlators]; - readval_imag = new int[d_n_correlators]; - //static int numtimes = 0; - //printf("read results numtimes = %d\n", numtimes); - //numtimes = numtimes + 1; for (k =0 ; k < d_n_correlators; k++) { - readval_real[k] = d_map_base[1 + k]; - if (readval_real[k] >= 1048576) // 0x100000 (21 bits two's complement) + readval_real = d_map_base[1 + k]; + if (readval_real >= 1048576) // 0x100000 (21 bits two's complement) { - readval_real[k] = -2097152 + readval_real[k]; + readval_real = -2097152 + readval_real; } - readval_real[k] = readval_real[k] * 2; // the results are shifted two bits to the left due to the complex multiplier in the FPGA + readval_real = readval_real * 2; // the results are shifted two bits to the left due to the complex multiplier in the FPGA - } - for (k = 0; k < d_n_correlators; k++) - { - readval_imag[k] = d_map_base[1 + d_n_correlators + k]; - if (readval_imag[k] >= 1048576) // 0x100000 (21 bits two's complement) + readval_imag = d_map_base[1 + d_n_correlators + k]; + if (readval_imag >= 1048576) // 0x100000 (21 bits two's complement) { - readval_imag[k] = -2097152 + readval_imag[k]; + readval_imag = -2097152 + readval_imag; } - readval_imag[k] = readval_imag[k] * 2; // the results are shifted two bits to the left due to the complex multiplier in the FPGA + readval_imag = readval_imag * 2; // the results are shifted two bits to the left due to the complex multiplier in the FPGA + + d_corr_out[k] = lv_cmake(readval_real, readval_imag); } - for (k = 0; k < d_n_correlators; k++) - { - d_corr_out[k] = lv_cmake(readval_real[k], readval_imag[k]); - } - - delete[] readval_real; - delete[] readval_imag; } void fpga_multicorrelator_8sc::unlock_channel(void) { - //printf("unlock the channel\n"); // unlock the channel to let the next samples go through d_map_base[12] = 1; // unlock the channel } void fpga_multicorrelator_8sc::lock_channel(void) { - //printf("locking the channel\n"); + // lock the channel for processing d_map_base[12] = 0; // lock the channel } diff --git a/src/algorithms/tracking/libs/fpga_multicorrelator_8sc.h b/src/algorithms/tracking/libs/fpga_multicorrelator_8sc.h index 94d6cadf9..a13d3995d 100644 --- a/src/algorithms/tracking/libs/fpga_multicorrelator_8sc.h +++ b/src/algorithms/tracking/libs/fpga_multicorrelator_8sc.h @@ -48,9 +48,8 @@ class fpga_multicorrelator_8sc { public: - fpga_multicorrelator_8sc(); + fpga_multicorrelator_8sc(int n_correlators, std::string device_name, unsigned int device_base); ~fpga_multicorrelator_8sc(); - bool init(int n_correlators); bool set_local_code_and_taps(int code_length_chips, const lv_16sc_t* local_code_in, float *shifts_chips); bool set_output_vectors(lv_16sc_t* corr_out); void update_local_code(float rem_code_phase_chips); @@ -93,6 +92,15 @@ private: int d_phase_step_rad_int; unsigned d_initial_sample_counter; unsigned *d_ena_write_signals; + + // driver + std::string d_device_name; + unsigned int d_device_base; + + + // results + //int *d_readval_real; + //int *d_readval_imag; // FPGA private functions unsigned fpga_acquisition_test_register(unsigned writeval); void fpga_configure_tracking_gps_local_code(void); diff --git a/src/tests/unit-tests/signal-processing-blocks/tracking/gps_l1_ca_dll_pll_tracking_test_fpga.cc b/src/tests/unit-tests/signal-processing-blocks/tracking/gps_l1_ca_dll_pll_tracking_test_fpga.cc index 4f87dc410..ff72a5c63 100644 --- a/src/tests/unit-tests/signal-processing-blocks/tracking/gps_l1_ca_dll_pll_tracking_test_fpga.cc +++ b/src/tests/unit-tests/signal-processing-blocks/tracking/gps_l1_ca_dll_pll_tracking_test_fpga.cc @@ -66,7 +66,7 @@ #define MAX_NUM_TEST_CASES 20 #define MAX_INPUT_SAMPLES_PER_TEST_CASE (8184) #define MAX_INPUT_SAMPLES_TOTAL MAX_INPUT_SAMPLES_PER_TEST_CASE*MAX_NUM_TEST_CASES -#define DMA_TRANSFER_SIZE 2046 +#define DMA_TRANSFER_SIZE 8000 //2046 #define MIN_SAMPLES_REMAINING 20000 // number of remaining samples in the DMA that causes the CPU to stop the flowgraph (it has to be a bit alrger than 2x max packet size) @@ -97,42 +97,40 @@ void send_tracking_gps_input_samples(FILE *ptr_myfile, int num_remaining_samples fprintf(stderr, "Memory error!"); } - printf("now i will send the samples\n"); - while(num_remaining_samples > 0) - { + { - //printf("num_remaining_samples = %d\n", num_remaining_samples); - if (num_remaining_samples < MIN_SAMPLES_REMAINING) - { - if (flowgraph_stopped == 0) - { - // stop top module - top_block->stop(); - flowgraph_stopped = 1; - } - } - if (num_remaining_samples > DMA_TRANSFER_SIZE) - { + if (num_remaining_samples < MIN_SAMPLES_REMAINING) + { + if (flowgraph_stopped == 0) + { + // stop top module + top_block->stop(); + flowgraph_stopped = 1; + } + } + if (num_remaining_samples > DMA_TRANSFER_SIZE) + { - fread(buffer, DMA_TRANSFER_SIZE, 1, ptr_myfile); + fread(buffer, DMA_TRANSFER_SIZE, 1, ptr_myfile); - assert( DMA_TRANSFER_SIZE == write(tx_fd, &buffer[0], DMA_TRANSFER_SIZE) ); - num_remaining_samples = num_remaining_samples - DMA_TRANSFER_SIZE; - num_samples_transferred = num_samples_transferred + DMA_TRANSFER_SIZE; - } - else - { - fread(buffer, num_remaining_samples, 1, ptr_myfile); + assert( DMA_TRANSFER_SIZE == write(tx_fd, &buffer[0], DMA_TRANSFER_SIZE) ); + num_remaining_samples = num_remaining_samples - DMA_TRANSFER_SIZE; + num_samples_transferred = num_samples_transferred + DMA_TRANSFER_SIZE; + } + else + { + fread(buffer, num_remaining_samples, 1, ptr_myfile); - assert( num_remaining_samples == write(tx_fd, &buffer[0], num_remaining_samples) ); - num_samples_transferred = num_samples_transferred + num_remaining_samples; - num_remaining_samples = 0; - } - } + assert( num_remaining_samples == write(tx_fd, &buffer[0], num_remaining_samples) ); + num_samples_transferred = num_samples_transferred + num_remaining_samples; + num_remaining_samples = 0; + } + } - free(buffer); + + free(buffer); close(tx_fd); } @@ -154,7 +152,7 @@ void thread(gr::top_block_sptr top_block, const char * file_name) fileLen = ftell(ptr_myfile); fseek(ptr_myfile, 0, SEEK_SET); - wait(20); // wait for some time to give time to the other thread to program the device + wait(5); // wait for some time to give time to the other thread to program the device //send_tracking_gps_input_samples(tx_fd, ptr_myfile, fileLen); send_tracking_gps_input_samples(ptr_myfile, fileLen, top_block); @@ -335,9 +333,9 @@ void GpsL1CADllPllTrackingTestFpga::configure_receiver() config->set_property("Tracking_1C.pll_bw_hz", "30.0"); config->set_property("Tracking_1C.dll_bw_hz", "2.0"); config->set_property("Tracking_1C.early_late_space_chips", "0.5"); - config->set_property("Tracking_GPS.devicename", "/dev/uio"); - config->set_property("Tracking_GPS.device_base", "0"); - config->set_property("Tracking_GPS.device_range", "0"); + config->set_property("Tracking_1C.devicename", "/dev/uio"); + config->set_property("Tracking_1C.device_base", "1"); + config->set_property("Tracking_1C.device_range", "10"); } @@ -462,7 +460,7 @@ TEST_F(GpsL1CADllPllTrackingTestFpga, ValidationOfResultsFpga) }) << "Failure opening true observables file" << std::endl; top_block = gr::make_top_block("Tracking test"); - std::shared_ptr tracking = std::make_shared(config.get(), "Tracking_1C", 1, 1); + std::shared_ptr tracking = std::make_shared(config.get(), "Tracking_1C", 1, 1); boost::shared_ptr msg_rx = GpsL1CADllPllTrackingTestFpga_msg_rx_make(); @@ -513,7 +511,7 @@ TEST_F(GpsL1CADllPllTrackingTestFpga, ValidationOfResultsFpga) gettimeofday(&tv, NULL); begin = tv.tv_sec * 1000000 + tv.tv_usec; top_block->run(); // Start threads and wait - tracking.reset(); + tracking->reset(); // unlock the channel gettimeofday(&tv, NULL); end = tv.tv_sec * 1000000 + tv.tv_usec; }) << "Failure running the top_block." << std::endl; From 90ac5938dcb2fc9bb550d6938985d16e48c71aeb Mon Sep 17 00:00:00 2001 From: mmajoral Date: Wed, 24 May 2017 10:03:58 +0200 Subject: [PATCH 006/171] all the class elements are initialized in the constructor --- .../libs/gps_fpga_acquisition_8sc.cc | 1 + .../tracking/libs/fpga_multicorrelator_8sc.cc | 21 +++++++++++++++---- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/src/algorithms/acquisition/libs/gps_fpga_acquisition_8sc.cc b/src/algorithms/acquisition/libs/gps_fpga_acquisition_8sc.cc index 1b0453288..fcc6c1c43 100644 --- a/src/algorithms/acquisition/libs/gps_fpga_acquisition_8sc.cc +++ b/src/algorithms/acquisition/libs/gps_fpga_acquisition_8sc.cc @@ -102,6 +102,7 @@ gps_fpga_acquisition_8sc::gps_fpga_acquisition_8sc(std::string device_name, unsi d_nsamples = nsamples; // number of samples not including padding d_select_queue = select_queue; + d_doppler_max = 0; d_doppler_step = 0; d_fd = 0; // driver descriptor d_map_base = nullptr; // driver memory map diff --git a/src/algorithms/tracking/libs/fpga_multicorrelator_8sc.cc b/src/algorithms/tracking/libs/fpga_multicorrelator_8sc.cc index bcc77d0e6..0b9dde66d 100644 --- a/src/algorithms/tracking/libs/fpga_multicorrelator_8sc.cc +++ b/src/algorithms/tracking/libs/fpga_multicorrelator_8sc.cc @@ -154,6 +154,8 @@ fpga_multicorrelator_8sc::fpga_multicorrelator_8sc(int n_correlators, std::strin d_n_correlators = n_correlators; d_device_name = device_name; d_device_base = device_base; + d_fd = 0; + d_map_base = nullptr; // instantiate variable length vectors d_initial_index = static_cast(volk_gnsssdr_malloc(n_correlators * sizeof(unsigned), volk_gnsssdr_get_alignment())); @@ -163,9 +165,18 @@ fpga_multicorrelator_8sc::fpga_multicorrelator_8sc(int n_correlators, std::strin d_shifts_chips = nullptr; d_corr_out = nullptr; d_code_length_chips = 0; + d_rem_code_phase_chips = 0; + d_code_phase_step_chips = 0; + d_rem_carrier_phase_in_rad = 0; + d_phase_step_rad = 0; + d_rem_carr_phase_rad_int = 0; + d_phase_step_rad_int = 0; + d_initial_sample_counter = 0; d_ena_write_signals = new unsigned[d_n_correlators]; + d_channel = 0; + d_correlator_length_samples = 0; } @@ -201,6 +212,8 @@ bool fpga_multicorrelator_8sc::free() void fpga_multicorrelator_8sc::set_channel(unsigned int channel) { + char device_io_name[MAX_LENGTH_DEVICEIO_NAME]; // driver io name + d_channel = channel; // open the device corresponding to the assigned channel @@ -210,11 +223,11 @@ void fpga_multicorrelator_8sc::set_channel(unsigned int channel) int numdevice = d_device_base + d_channel; devicebasetemp << numdevice; mergedname = d_device_name + devicebasetemp.str(); - strcpy(d_device_io_name, mergedname.c_str()); - printf("Opening Device Name : %s\n", d_device_io_name); - if ((d_fd = open(d_device_io_name, O_RDWR | O_SYNC )) == -1) + strcpy(device_io_name, mergedname.c_str()); + printf("Opening Device Name : %s\n", device_io_name); + if ((d_fd = open(device_io_name, O_RDWR | O_SYNC )) == -1) { - LOG(WARNING) << "Cannot open deviceio" << d_device_io_name; + LOG(WARNING) << "Cannot open deviceio" << device_io_name; } d_map_base = (volatile unsigned *)mmap(NULL, PAGE_SIZE, PROT_READ | PROT_WRITE, MAP_SHARED, d_fd,0); From 75056ba8af1cfa2727500851b40104f6fb61a677 Mon Sep 17 00:00:00 2001 From: mmajoral Date: Wed, 24 May 2017 10:40:00 +0200 Subject: [PATCH 007/171] removed non used variable --- src/algorithms/tracking/libs/fpga_multicorrelator_8sc.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/algorithms/tracking/libs/fpga_multicorrelator_8sc.h b/src/algorithms/tracking/libs/fpga_multicorrelator_8sc.h index a13d3995d..4e4bc6fa8 100644 --- a/src/algorithms/tracking/libs/fpga_multicorrelator_8sc.h +++ b/src/algorithms/tracking/libs/fpga_multicorrelator_8sc.h @@ -71,7 +71,6 @@ private: int d_n_correlators; // data related to the hardware module and the driver - char d_device_io_name[MAX_LENGTH_DEVICEIO_NAME]; // driver io name int d_fd; // driver descriptor volatile unsigned *d_map_base; // driver memory map From adde064ff49b3195459f18e1d702716b948ba682 Mon Sep 17 00:00:00 2001 From: mmajoral Date: Wed, 24 May 2017 11:11:58 +0200 Subject: [PATCH 008/171] removed non used configuration parameter --- .../tracking/gps_l1_ca_dll_pll_tracking_test_fpga.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/tests/unit-tests/signal-processing-blocks/tracking/gps_l1_ca_dll_pll_tracking_test_fpga.cc b/src/tests/unit-tests/signal-processing-blocks/tracking/gps_l1_ca_dll_pll_tracking_test_fpga.cc index ff72a5c63..ff2ac502c 100644 --- a/src/tests/unit-tests/signal-processing-blocks/tracking/gps_l1_ca_dll_pll_tracking_test_fpga.cc +++ b/src/tests/unit-tests/signal-processing-blocks/tracking/gps_l1_ca_dll_pll_tracking_test_fpga.cc @@ -335,7 +335,6 @@ void GpsL1CADllPllTrackingTestFpga::configure_receiver() config->set_property("Tracking_1C.early_late_space_chips", "0.5"); config->set_property("Tracking_1C.devicename", "/dev/uio"); config->set_property("Tracking_1C.device_base", "1"); - config->set_property("Tracking_1C.device_range", "10"); } From 2f9885c5bd839359adce1a5ae7c00e7702b08249 Mon Sep 17 00:00:00 2001 From: mmajoral Date: Wed, 24 May 2017 12:20:04 +0200 Subject: [PATCH 009/171] removed non used parameter Flag_preamble --- .../acquisition/gnuradio_blocks/gps_pcps_acquisition_fpga_sc.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/algorithms/acquisition/gnuradio_blocks/gps_pcps_acquisition_fpga_sc.cc b/src/algorithms/acquisition/gnuradio_blocks/gps_pcps_acquisition_fpga_sc.cc index 05b0282c8..727f5ed4a 100644 --- a/src/algorithms/acquisition/gnuradio_blocks/gps_pcps_acquisition_fpga_sc.cc +++ b/src/algorithms/acquisition/gnuradio_blocks/gps_pcps_acquisition_fpga_sc.cc @@ -130,8 +130,6 @@ void gps_pcps_acquisition_fpga_sc::init() d_gnss_synchro->Flag_valid_symbol_output = false; d_gnss_synchro->Flag_valid_pseudorange = false; d_gnss_synchro->Flag_valid_word = false; - d_gnss_synchro->Flag_preamble = false; - d_gnss_synchro->Acq_delay_samples = 0.0; d_gnss_synchro->Acq_doppler_hz = 0.0; d_gnss_synchro->Acq_samplestamp_samples = 0; From f668f415d66197f0989592be71c9c1f087f316a4 Mon Sep 17 00:00:00 2001 From: mmajoral Date: Wed, 24 May 2017 15:11:27 +0200 Subject: [PATCH 010/171] Revert "removed non used parameter Flag_preamble" This reverts commit 2f9885c5bd839359adce1a5ae7c00e7702b08249. --- .../acquisition/gnuradio_blocks/gps_pcps_acquisition_fpga_sc.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/algorithms/acquisition/gnuradio_blocks/gps_pcps_acquisition_fpga_sc.cc b/src/algorithms/acquisition/gnuradio_blocks/gps_pcps_acquisition_fpga_sc.cc index 727f5ed4a..05b0282c8 100644 --- a/src/algorithms/acquisition/gnuradio_blocks/gps_pcps_acquisition_fpga_sc.cc +++ b/src/algorithms/acquisition/gnuradio_blocks/gps_pcps_acquisition_fpga_sc.cc @@ -130,6 +130,8 @@ void gps_pcps_acquisition_fpga_sc::init() d_gnss_synchro->Flag_valid_symbol_output = false; d_gnss_synchro->Flag_valid_pseudorange = false; d_gnss_synchro->Flag_valid_word = false; + d_gnss_synchro->Flag_preamble = false; + d_gnss_synchro->Acq_delay_samples = 0.0; d_gnss_synchro->Acq_doppler_hz = 0.0; d_gnss_synchro->Acq_samplestamp_samples = 0; From 08c777968a7039d9d240bd267240129b7a2d99ac Mon Sep 17 00:00:00 2001 From: mmajoral Date: Wed, 24 May 2017 15:12:52 +0200 Subject: [PATCH 011/171] Revert "Revert "removed non used parameter Flag_preamble"" This reverts commit f668f415d66197f0989592be71c9c1f087f316a4. --- .../acquisition/gnuradio_blocks/gps_pcps_acquisition_fpga_sc.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/algorithms/acquisition/gnuradio_blocks/gps_pcps_acquisition_fpga_sc.cc b/src/algorithms/acquisition/gnuradio_blocks/gps_pcps_acquisition_fpga_sc.cc index 05b0282c8..727f5ed4a 100644 --- a/src/algorithms/acquisition/gnuradio_blocks/gps_pcps_acquisition_fpga_sc.cc +++ b/src/algorithms/acquisition/gnuradio_blocks/gps_pcps_acquisition_fpga_sc.cc @@ -130,8 +130,6 @@ void gps_pcps_acquisition_fpga_sc::init() d_gnss_synchro->Flag_valid_symbol_output = false; d_gnss_synchro->Flag_valid_pseudorange = false; d_gnss_synchro->Flag_valid_word = false; - d_gnss_synchro->Flag_preamble = false; - d_gnss_synchro->Acq_delay_samples = 0.0; d_gnss_synchro->Acq_doppler_hz = 0.0; d_gnss_synchro->Acq_samplestamp_samples = 0; From cc40f5c25cad8e1e72f26675500efdbc9d027d79 Mon Sep 17 00:00:00 2001 From: mmajoral Date: Fri, 26 May 2017 16:45:03 +0200 Subject: [PATCH 012/171] bug fix: removed call to set_local_code() from the init() function. This prevents the function set_local_code() from being called twice, with an invalid PRN during the first call --- .../adapters/galileo_e1_pcps_8ms_ambiguous_acquisition.cc | 2 +- .../adapters/galileo_e1_pcps_ambiguous_acquisition.cc | 2 +- .../adapters/galileo_e1_pcps_cccwsr_ambiguous_acquisition.cc | 2 +- .../adapters/galileo_e1_pcps_quicksync_ambiguous_acquisition.cc | 2 +- .../adapters/galileo_e1_pcps_tong_ambiguous_acquisition.cc | 2 +- .../adapters/galileo_e5a_noncoherent_iq_acquisition_caf.cc | 2 +- .../acquisition/adapters/gps_l1_ca_pcps_acquisition.cc | 2 +- .../adapters/gps_l1_ca_pcps_acquisition_fine_doppler.cc | 2 +- .../acquisition/adapters/gps_l1_ca_pcps_assisted_acquisition.cc | 2 +- .../adapters/gps_l1_ca_pcps_multithread_acquisition.cc | 2 +- .../acquisition/adapters/gps_l1_ca_pcps_opencl_acquisition.cc | 2 +- .../adapters/gps_l1_ca_pcps_quicksync_acquisition.cc | 2 +- .../acquisition/adapters/gps_l1_ca_pcps_tong_acquisition.cc | 2 +- .../acquisition/adapters/gps_l2_m_pcps_acquisition.cc | 2 +- 14 files changed, 14 insertions(+), 14 deletions(-) diff --git a/src/algorithms/acquisition/adapters/galileo_e1_pcps_8ms_ambiguous_acquisition.cc b/src/algorithms/acquisition/adapters/galileo_e1_pcps_8ms_ambiguous_acquisition.cc index d6859919c..ef86f55e7 100644 --- a/src/algorithms/acquisition/adapters/galileo_e1_pcps_8ms_ambiguous_acquisition.cc +++ b/src/algorithms/acquisition/adapters/galileo_e1_pcps_8ms_ambiguous_acquisition.cc @@ -198,7 +198,7 @@ signed int GalileoE1Pcps8msAmbiguousAcquisition::mag() void GalileoE1Pcps8msAmbiguousAcquisition::init() { acquisition_cc_->init(); - set_local_code(); + //set_local_code(); } diff --git a/src/algorithms/acquisition/adapters/galileo_e1_pcps_ambiguous_acquisition.cc b/src/algorithms/acquisition/adapters/galileo_e1_pcps_ambiguous_acquisition.cc index 6f184c25e..b3a57497c 100644 --- a/src/algorithms/acquisition/adapters/galileo_e1_pcps_ambiguous_acquisition.cc +++ b/src/algorithms/acquisition/adapters/galileo_e1_pcps_ambiguous_acquisition.cc @@ -234,7 +234,7 @@ void GalileoE1PcpsAmbiguousAcquisition::init() acquisition_cc_->init(); } - set_local_code(); + //set_local_code(); } diff --git a/src/algorithms/acquisition/adapters/galileo_e1_pcps_cccwsr_ambiguous_acquisition.cc b/src/algorithms/acquisition/adapters/galileo_e1_pcps_cccwsr_ambiguous_acquisition.cc index 690e3879d..167857d61 100644 --- a/src/algorithms/acquisition/adapters/galileo_e1_pcps_cccwsr_ambiguous_acquisition.cc +++ b/src/algorithms/acquisition/adapters/galileo_e1_pcps_cccwsr_ambiguous_acquisition.cc @@ -200,7 +200,7 @@ signed int GalileoE1PcpsCccwsrAmbiguousAcquisition::mag() void GalileoE1PcpsCccwsrAmbiguousAcquisition::init() { acquisition_cc_->init(); - set_local_code(); + //set_local_code(); } diff --git a/src/algorithms/acquisition/adapters/galileo_e1_pcps_quicksync_ambiguous_acquisition.cc b/src/algorithms/acquisition/adapters/galileo_e1_pcps_quicksync_ambiguous_acquisition.cc index e6be855d2..46faec6b4 100644 --- a/src/algorithms/acquisition/adapters/galileo_e1_pcps_quicksync_ambiguous_acquisition.cc +++ b/src/algorithms/acquisition/adapters/galileo_e1_pcps_quicksync_ambiguous_acquisition.cc @@ -240,7 +240,7 @@ void GalileoE1PcpsQuickSyncAmbiguousAcquisition::init() { acquisition_cc_->init(); - set_local_code(); + //set_local_code(); } diff --git a/src/algorithms/acquisition/adapters/galileo_e1_pcps_tong_ambiguous_acquisition.cc b/src/algorithms/acquisition/adapters/galileo_e1_pcps_tong_ambiguous_acquisition.cc index dae111573..476a4b2a9 100644 --- a/src/algorithms/acquisition/adapters/galileo_e1_pcps_tong_ambiguous_acquisition.cc +++ b/src/algorithms/acquisition/adapters/galileo_e1_pcps_tong_ambiguous_acquisition.cc @@ -204,7 +204,7 @@ signed int GalileoE1PcpsTongAmbiguousAcquisition::mag() void GalileoE1PcpsTongAmbiguousAcquisition::init() { acquisition_cc_->init(); - set_local_code(); + //set_local_code(); } diff --git a/src/algorithms/acquisition/adapters/galileo_e5a_noncoherent_iq_acquisition_caf.cc b/src/algorithms/acquisition/adapters/galileo_e5a_noncoherent_iq_acquisition_caf.cc index e7701a513..223e737f6 100644 --- a/src/algorithms/acquisition/adapters/galileo_e5a_noncoherent_iq_acquisition_caf.cc +++ b/src/algorithms/acquisition/adapters/galileo_e5a_noncoherent_iq_acquisition_caf.cc @@ -206,7 +206,7 @@ signed int GalileoE5aNoncoherentIQAcquisitionCaf::mag() void GalileoE5aNoncoherentIQAcquisitionCaf::init() { acquisition_cc_->init(); - set_local_code(); + //set_local_code(); } diff --git a/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_acquisition.cc b/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_acquisition.cc index 8ae477856..2531cb8d3 100644 --- a/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_acquisition.cc +++ b/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_acquisition.cc @@ -230,7 +230,7 @@ void GpsL1CaPcpsAcquisition::init() acquisition_cc_->init(); } - set_local_code(); + //set_local_code(); } diff --git a/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_acquisition_fine_doppler.cc b/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_acquisition_fine_doppler.cc index 254e71369..5f448e456 100644 --- a/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_acquisition_fine_doppler.cc +++ b/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_acquisition_fine_doppler.cc @@ -136,7 +136,7 @@ signed int GpsL1CaPcpsAcquisitionFineDoppler::mag() void GpsL1CaPcpsAcquisitionFineDoppler::init() { acquisition_cc_->init(); - set_local_code(); + //set_local_code(); } diff --git a/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_assisted_acquisition.cc b/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_assisted_acquisition.cc index beb45c323..71feb0088 100644 --- a/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_assisted_acquisition.cc +++ b/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_assisted_acquisition.cc @@ -137,7 +137,7 @@ signed int GpsL1CaPcpsAssistedAcquisition::mag() void GpsL1CaPcpsAssistedAcquisition::init() { acquisition_cc_->init(); - set_local_code(); + //set_local_code(); } void GpsL1CaPcpsAssistedAcquisition::set_local_code() diff --git a/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_multithread_acquisition.cc b/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_multithread_acquisition.cc index 9bd8f8b3e..61f350eaa 100644 --- a/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_multithread_acquisition.cc +++ b/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_multithread_acquisition.cc @@ -197,7 +197,7 @@ signed int GpsL1CaPcpsMultithreadAcquisition::mag() void GpsL1CaPcpsMultithreadAcquisition::init() { acquisition_cc_->init(); - set_local_code(); + //set_local_code(); } diff --git a/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_opencl_acquisition.cc b/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_opencl_acquisition.cc index ba2c6b68c..6dd529913 100644 --- a/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_opencl_acquisition.cc +++ b/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_opencl_acquisition.cc @@ -194,7 +194,7 @@ signed int GpsL1CaPcpsOpenClAcquisition::mag() void GpsL1CaPcpsOpenClAcquisition::init() { acquisition_cc_->init(); - set_local_code(); + //set_local_code(); } diff --git a/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_quicksync_acquisition.cc b/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_quicksync_acquisition.cc index f732b5aba..6ea3a8f9f 100644 --- a/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_quicksync_acquisition.cc +++ b/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_quicksync_acquisition.cc @@ -227,7 +227,7 @@ signed int GpsL1CaPcpsQuickSyncAcquisition::mag() void GpsL1CaPcpsQuickSyncAcquisition::init() { acquisition_cc_->init(); - set_local_code(); + //set_local_code(); } diff --git a/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_tong_acquisition.cc b/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_tong_acquisition.cc index e7a4bdb65..5fc39659b 100644 --- a/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_tong_acquisition.cc +++ b/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_tong_acquisition.cc @@ -186,7 +186,7 @@ signed int GpsL1CaPcpsTongAcquisition::mag() void GpsL1CaPcpsTongAcquisition::init() { acquisition_cc_->init(); - set_local_code(); + //set_local_code(); } void GpsL1CaPcpsTongAcquisition::set_local_code() diff --git a/src/algorithms/acquisition/adapters/gps_l2_m_pcps_acquisition.cc b/src/algorithms/acquisition/adapters/gps_l2_m_pcps_acquisition.cc index baf00ff1f..c77c86f54 100644 --- a/src/algorithms/acquisition/adapters/gps_l2_m_pcps_acquisition.cc +++ b/src/algorithms/acquisition/adapters/gps_l2_m_pcps_acquisition.cc @@ -233,7 +233,7 @@ void GpsL2MPcpsAcquisition::init() acquisition_cc_->init(); } - set_local_code(); + //set_local_code(); } From b89f718f20d40c2458de7c1ce8f1ff7b6b1f75a2 Mon Sep 17 00:00:00 2001 From: mmajoral Date: Wed, 31 May 2017 10:08:34 +0200 Subject: [PATCH 013/171] updated checklists and removed a debug printout --- src/algorithms/acquisition/CMakeLists.txt | 4 +++- src/algorithms/acquisition/gnuradio_blocks/CMakeLists.txt | 6 +++++- src/algorithms/acquisition/libs/gps_fpga_acquisition_8sc.cc | 3 --- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/src/algorithms/acquisition/CMakeLists.txt b/src/algorithms/acquisition/CMakeLists.txt index d91502f0f..579bf4ba0 100644 --- a/src/algorithms/acquisition/CMakeLists.txt +++ b/src/algorithms/acquisition/CMakeLists.txt @@ -18,5 +18,7 @@ add_subdirectory(adapters) add_subdirectory(gnuradio_blocks) -#add_subdirectory(libs) +if(ENABLE_FPGA) + add_subdirectory(libs) +endif(ENABLE_FPGA) diff --git a/src/algorithms/acquisition/gnuradio_blocks/CMakeLists.txt b/src/algorithms/acquisition/gnuradio_blocks/CMakeLists.txt index 134db4b19..667e6f70f 100644 --- a/src/algorithms/acquisition/gnuradio_blocks/CMakeLists.txt +++ b/src/algorithms/acquisition/gnuradio_blocks/CMakeLists.txt @@ -67,7 +67,11 @@ add_library(acq_gr_blocks ${ACQ_GR_BLOCKS_SOURCES} ${ACQ_GR_BLOCKS_HEADERS}) source_group(Headers FILES ${ACQ_GR_BLOCKS_HEADERS}) #target_link_libraries(acq_gr_blocks gnss_sp_libs gnss_system_parameters ${GNURADIO_RUNTIME_LIBRARIES} ${GNURADIO_FFT_LIBRARIES} #target_link_libraries(acq_gr_blocks acquisition_lib gnss_sp_libs gnss_system_parameters ${GNURADIO_RUNTIME_LIBRARIES} ${GNURADIO_FFT_LIBRARIES} ${VOLK_LIBRARIES} ${VOLK_GNSSSDR_LIBRARIES} ${OPT_LIBRARIES} ${OPT_ACQUISITION_LIBRARIES}) -target_link_libraries(acq_gr_blocks gnss_sp_libs gnss_system_parameters ${GNURADIO_RUNTIME_LIBRARIES} ${GNURADIO_FFT_LIBRARIES} ${VOLK_LIBRARIES} ${VOLK_GNSSSDR_LIBRARIES} ${OPT_LIBRARIES} ${OPT_ACQUISITION_LIBRARIES}) +if(ENABLE_FPGA) + target_link_libraries(acq_gr_blocks acquisition_lib gnss_sp_libs gnss_system_parameters ${GNURADIO_RUNTIME_LIBRARIES} ${GNURADIO_FFT_LIBRARIES} ${VOLK_LIBRARIES} ${VOLK_GNSSSDR_LIBRARIES} ${OPT_LIBRARIES} ${OPT_ACQUISITION_LIBRARIES}) +else(ENABLE_FPGA) + target_link_libraries(acq_gr_blocks gnss_sp_libs gnss_system_parameters ${GNURADIO_RUNTIME_LIBRARIES} ${GNURADIO_FFT_LIBRARIES} ${VOLK_LIBRARIES} ${VOLK_GNSSSDR_LIBRARIES} ${OPT_LIBRARIES} ${OPT_ACQUISITION_LIBRARIES}) +endif(ENABLE_FPGA) if(NOT VOLK_GNSSSDR_FOUND) add_dependencies(acq_gr_blocks volk_gnsssdr_module) endif(NOT VOLK_GNSSSDR_FOUND) diff --git a/src/algorithms/acquisition/libs/gps_fpga_acquisition_8sc.cc b/src/algorithms/acquisition/libs/gps_fpga_acquisition_8sc.cc index fcc6c1c43..39eb8f2cc 100644 --- a/src/algorithms/acquisition/libs/gps_fpga_acquisition_8sc.cc +++ b/src/algorithms/acquisition/libs/gps_fpga_acquisition_8sc.cc @@ -299,14 +299,12 @@ void gps_fpga_acquisition_8sc::open_device() if ((d_fd = open(d_device_name.c_str(), O_RDWR | O_SYNC )) == -1) { LOG(WARNING) << "Cannot open deviceio" << d_device_name; - printf("kk\n"); } d_map_base = (volatile unsigned *)mmap(NULL, PAGE_SIZE, PROT_READ | PROT_WRITE, MAP_SHARED, d_fd,0); if (d_map_base == (void *) -1) { LOG(WARNING) << "Cannot map the FPGA acquisition module into user memory"; - printf("kk^2\n"); } // sanity check : check test register @@ -331,7 +329,6 @@ void gps_fpga_acquisition_8sc::open_device() } void gps_fpga_acquisition_8sc::close_device() { - printf("CLOSE DEVICE\n"); if (munmap((void*)d_map_base, PAGE_SIZE) == -1) { printf("Failed to unmap memory uio\n"); From f69cc2491c7b1e576a8bd2303686b9fb76cebba3 Mon Sep 17 00:00:00 2001 From: Javier Date: Wed, 31 May 2017 11:45:26 +0200 Subject: [PATCH 014/171] Adding UHD device filter by serial number option --- src/algorithms/signal_source/adapters/uhd_signal_source.cc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/algorithms/signal_source/adapters/uhd_signal_source.cc b/src/algorithms/signal_source/adapters/uhd_signal_source.cc index 4728543d3..1c59b7113 100644 --- a/src/algorithms/signal_source/adapters/uhd_signal_source.cc +++ b/src/algorithms/signal_source/adapters/uhd_signal_source.cc @@ -62,7 +62,12 @@ UhdSignalSource::UhdSignalSource(ConfigurationInterface* configuration, { dev_addr["addr"] = device_address_; } - + //filter the device by serial number if required (useful for USB devices) + std::string device_serial = configuration->property(role + ".device_serial", empty); + if (empty.compare(device_serial) != 0) // if not empty + { + dev_addr["serial"] = device_serial; + } subdevice_ = configuration->property(role + ".subdevice", empty); clock_source_ = configuration->property(role + ".clock_source", std::string("internal")); RF_channels_ = configuration->property(role + ".RF_channels", 1); From caaaebc420a3a665107e1048e026fdb173fbe550 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Tue, 6 Jun 2017 12:32:24 +0200 Subject: [PATCH 015/171] Sort input files --- .../volk_gnsssdr/gen/volk_gnsssdr_kernel_defs.py | 2 +- .../volk_gnsssdr_modtool_generate.py | 11 +++-------- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/gen/volk_gnsssdr_kernel_defs.py b/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/gen/volk_gnsssdr_kernel_defs.py index 90ba0693c..3eb77d26f 100644 --- a/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/gen/volk_gnsssdr_kernel_defs.py +++ b/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/gen/volk_gnsssdr_kernel_defs.py @@ -204,7 +204,7 @@ class kernel_class: ######################################################################## __file__ = os.path.abspath(__file__) srcdir = os.path.dirname(os.path.dirname(__file__)) -kernel_files = glob.glob(os.path.join(srcdir, "kernels", "volk_gnsssdr", "*.h")) +kernel_files = sorted(glob.glob(os.path.join(srcdir, "kernels", "volk_gnsssdr", "*.h"))) kernels = list(map(kernel_class, kernel_files)) if __name__ == '__main__': diff --git a/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/python/volk_gnsssdr_modtool/volk_gnsssdr_modtool_generate.py b/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/python/volk_gnsssdr_modtool/volk_gnsssdr_modtool_generate.py index ee32d5192..340933018 100644 --- a/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/python/volk_gnsssdr_modtool/volk_gnsssdr_modtool_generate.py +++ b/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/python/volk_gnsssdr_modtool/volk_gnsssdr_modtool_generate.py @@ -58,10 +58,10 @@ class volk_gnsssdr_modtool: else: name = self.get_basename(base); if name == '': - hdr_files = glob.glob(os.path.join(base, "kernels/volk_gnsssdr/*.h")); + hdr_files = sorted(glob.glob(os.path.join(base, "kernels/volk_gnsssdr/*.h"))); begins = re.compile("(?<=volk_gnsssdr_).*") else: - hdr_files = glob.glob(os.path.join(base, "kernels/volk_gnsssdr_" + name + "/*.h")); + hdr_files = sorted(glob.glob(os.path.join(base, "kernels/volk_gnsssdr_" + name + "/*.h"))); begins = re.compile("(?<=volk_gnsssdr_" + name + "_).*") datatypes = []; @@ -166,7 +166,7 @@ class volk_gnsssdr_modtool: open(dest, 'w+').write(outstring); # copy orc proto-kernels if they exist - for orcfile in glob.glob(inpath + '/orc/' + top + name + '*.orc'): + for orcfile in sorted(glob.glob(inpath + '/kernels/volk_gnsssdr/asm/orc/' + top + name + '*.orc')): if os.path.isfile(orcfile): instring = open(orcfile, 'r').read(); outstring = re.sub(oldvolk_gnsssdr, 'volk_gnsssdr_' + self.my_dict['name'], instring); @@ -333,8 +333,3 @@ class volk_gnsssdr_modtool: write_okay = False if write_okay: open(dest, 'a').write(otherline); - - - - - From 646a0b0fd4abc8566b856d2d84cdb1190de5e741 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Tue, 6 Jun 2017 15:22:23 +0200 Subject: [PATCH 016/171] Remove unused class members --- src/algorithms/input_filter/adapters/pulse_blanking_filter.cc | 1 - src/algorithms/input_filter/adapters/pulse_blanking_filter.h | 2 -- 2 files changed, 3 deletions(-) diff --git a/src/algorithms/input_filter/adapters/pulse_blanking_filter.cc b/src/algorithms/input_filter/adapters/pulse_blanking_filter.cc index 4bca7a799..de0fc59f3 100644 --- a/src/algorithms/input_filter/adapters/pulse_blanking_filter.cc +++ b/src/algorithms/input_filter/adapters/pulse_blanking_filter.cc @@ -144,4 +144,3 @@ gr::basic_block_sptr PulseBlankingFilter::get_right_block() LOG(ERROR) << " Unknown input filter input/output item type conversion"; } } - diff --git a/src/algorithms/input_filter/adapters/pulse_blanking_filter.h b/src/algorithms/input_filter/adapters/pulse_blanking_filter.h index ce812556d..4382e4281 100644 --- a/src/algorithms/input_filter/adapters/pulse_blanking_filter.h +++ b/src/algorithms/input_filter/adapters/pulse_blanking_filter.h @@ -76,8 +76,6 @@ private: std::string input_item_type_; size_t input_size_; std::string output_item_type_; - double intermediate_freq_; - double sampling_freq_; std::string role_; unsigned int in_streams_; unsigned int out_streams_; From d8b0830b46106309d301d001c2d7cfaada367eb4 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Tue, 6 Jun 2017 15:29:32 +0200 Subject: [PATCH 017/171] Fix wrong comparison --- src/algorithms/PVT/adapters/rtklib_pvt.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/algorithms/PVT/adapters/rtklib_pvt.cc b/src/algorithms/PVT/adapters/rtklib_pvt.cc index 0de546abb..8c9d581be 100644 --- a/src/algorithms/PVT/adapters/rtklib_pvt.cc +++ b/src/algorithms/PVT/adapters/rtklib_pvt.cc @@ -194,7 +194,8 @@ RtklibPvt::RtklibPvt(ConfigurationInterface* configuration, int num_bands = 0; if ((gps_1C_count > 0) || (gal_1B_count > 0)) num_bands = 1; if (((gps_1C_count > 0) || (gal_1B_count > 0)) && (gps_2S_count > 0) ) num_bands = 2; - if (((gps_1C_count > 0) || (gal_1B_count > 0)) && (gps_2S_count > 0) && ((gal_E5a_count > 0) || (gal_E5a_count > 0))) num_bands = 3; + if (((gps_1C_count > 0) || (gal_1B_count > 0)) && ((gal_E5a_count > 0) || (gal_E5b_count > 0)) ) num_bands = 2; + if (((gps_1C_count > 0) || (gal_1B_count > 0)) && (gps_2S_count > 0) && ((gal_E5a_count > 0) || (gal_E5b_count > 0))) num_bands = 3; int number_of_frequencies = configuration->property(role + ".num_bands", num_bands); /* (1:L1, 2:L1+L2, 3:L1+L2+L5) */ if( (number_of_frequencies < 1) || (number_of_frequencies > 3) ) { @@ -382,7 +383,7 @@ RtklibPvt::RtklibPvt(ConfigurationInterface* configuration, iono_model, /* ionosphere option (IONOOPT_XXX) */ trop_model, /* troposphere option (TROPOPT_XXX) */ dynamics_model, /* dynamics model (0:none, 1:velocity, 2:accel) */ - earth_tide, /* earth tide correction (0:off,1:solid,2:solid+otl+pole) */ + earth_tide, /* earth tide correction (0:off,1:solid,2:solid+otl+pole) */ number_filter_iter, /* number of filter iteration */ 0, /* code smoothing window size (0:none) */ 0, /* interpolate reference obs (for post mission) */ From 4d34ccfd07064dc0346501c7625ffe075e050eb3 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Tue, 6 Jun 2017 15:32:57 +0200 Subject: [PATCH 018/171] Initialization of class member in the constructor --- src/core/system_parameters/gps_cnav_navigation_message.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/system_parameters/gps_cnav_navigation_message.cc b/src/core/system_parameters/gps_cnav_navigation_message.cc index 5b3652387..cf49bba50 100644 --- a/src/core/system_parameters/gps_cnav_navigation_message.cc +++ b/src/core/system_parameters/gps_cnav_navigation_message.cc @@ -68,6 +68,7 @@ Gps_CNAV_Navigation_Message::Gps_CNAV_Navigation_Message() satelliteBlock[prn_] = gnss_satellite_.what_block("GPS", prn_); } b_flag_iono_valid = false; + b_flag_utc_valid = false; } From 1f356ffcdf12a54c1f35372ebd5f87ec1b2aad07 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Tue, 6 Jun 2017 15:45:43 +0200 Subject: [PATCH 019/171] Fix computation of sample stamp --- .../gnuradio_blocks/sbas_l1_telemetry_decoder_cc.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/algorithms/telemetry_decoder/gnuradio_blocks/sbas_l1_telemetry_decoder_cc.cc b/src/algorithms/telemetry_decoder/gnuradio_blocks/sbas_l1_telemetry_decoder_cc.cc index d90135bb6..e12dac1f4 100644 --- a/src/algorithms/telemetry_decoder/gnuradio_blocks/sbas_l1_telemetry_decoder_cc.cc +++ b/src/algorithms/telemetry_decoder/gnuradio_blocks/sbas_l1_telemetry_decoder_cc.cc @@ -98,7 +98,7 @@ int sbas_l1_telemetry_decoder_cc::general_work (int noutput_items __attribute__( d_sample_buf.push_back(current_symbol.Prompt_I); //add new symbol to the symbol queue // store the time stamp of the first sample in the processed sample block - double sample_stamp = in[0].Tracking_sample_counter/in[0].fs; + double sample_stamp = static_cast(in[0].Tracking_sample_counter) / static_cast(in[0].fs); // decode only if enough samples in buffer if(d_sample_buf.size() >= d_block_size) @@ -498,4 +498,3 @@ void sbas_l1_telemetry_decoder_cc::crc_verifier::zerropad_front_and_convert_to_b << std::setfill('0') << std::hex << (unsigned int)byte << std::setfill(' ') << std::resetiosflags(std::ios::hex); } - From 14b242eafa116e9332632cb708e4d06ebdc19b10 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Tue, 6 Jun 2017 15:46:34 +0200 Subject: [PATCH 020/171] Initialization of class member in the constructor --- .../gnuradio_blocks/gps_l1_ca_telemetry_decoder_cc.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/algorithms/telemetry_decoder/gnuradio_blocks/gps_l1_ca_telemetry_decoder_cc.cc b/src/algorithms/telemetry_decoder/gnuradio_blocks/gps_l1_ca_telemetry_decoder_cc.cc index ddb39d229..10d3289a2 100644 --- a/src/algorithms/telemetry_decoder/gnuradio_blocks/gps_l1_ca_telemetry_decoder_cc.cc +++ b/src/algorithms/telemetry_decoder/gnuradio_blocks/gps_l1_ca_telemetry_decoder_cc.cc @@ -103,7 +103,7 @@ gps_l1_ca_telemetry_decoder_cc::gps_l1_ca_telemetry_decoder_cc( d_decimation_output_factor = 1; d_channel = 0; flag_PLL_180_deg_phase_locked = false; - + d_preamble_time_samples = 0; } From 5231c9e94b1e4dc5c4b37164ac6fa463fbedd81a Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Tue, 6 Jun 2017 17:49:40 +0200 Subject: [PATCH 021/171] Fix some defects detected by coverity scan --- src/algorithms/libs/rtklib/rtklib_rtkcmn.cc | 47 +++++++++++++-------- 1 file changed, 29 insertions(+), 18 deletions(-) diff --git a/src/algorithms/libs/rtklib/rtklib_rtkcmn.cc b/src/algorithms/libs/rtklib/rtklib_rtkcmn.cc index 252880b5b..ea6d31f5d 100644 --- a/src/algorithms/libs/rtklib/rtklib_rtkcmn.cc +++ b/src/algorithms/libs/rtklib/rtklib_rtkcmn.cc @@ -567,13 +567,20 @@ void setcodepri(int sys, int freq, const char *pri) trace(3, "setcodepri : sys=%d freq=%d pri=%s\n", sys, freq, pri); if (freq <= 0 || MAXFREQn; i++) { pcv = pcvs->pcv+i; @@ -2331,10 +2339,11 @@ pcv_t *searchpcv(int sat, const char *type, gtime_t time, if (pcv->te.time != 0 && timediff(pcv->te, time)<0.0) continue; return pcv; } - } + } else { - strcpy(buff, type); + if(strlen(type) < MAXANT +1 ) strcpy(buff, type); + else trace(1, "type array is too long"); for (p = strtok(buff, " "); p && n<2; p = strtok(NULL, " ")) types[n++] = p; if (n <= 0) return NULL; @@ -3013,7 +3022,8 @@ void traceopen(const char *file) reppath(file, path, time, "", ""); if (!*path || !(fp_trace = fopen(path, "w"))) fp_trace = stderr; - strcpy(file_trace, file); + if (strlen(file) < 1025) strcpy(file_trace, file); + else trace(1, "file array is too long"); tick_trace = tickget(); time_trace = time; initlock(&lock_trace); @@ -3228,7 +3238,8 @@ void createdir(const char *path) if (!(p = strrchr(buff, FILEPATHSEP))) return; *p = '\0'; - mkdir(buff, 0777); + if(mkdir(buff, 0777) == 0) {} + else trace(1, "Error creating folder"); } @@ -3966,10 +3977,10 @@ int rtk_uncompress(const char *file, char *uncfile) sprintf(cmd, "tar -C \"%s\" -xf \"%s\"", dir, tmpfile); if (execcmd(cmd)) { - if (stat) remove(tmpfile); + if (stat) if(remove(tmpfile) != 0) trace(1, "Error removing file"); return -1; } - if (stat) remove(tmpfile); + if (stat) if(remove(tmpfile) != 0) trace(1, "Error removing file"); stat = 1; } /* extract hatanaka-compressed file by cnx2rnx */ @@ -3983,10 +3994,10 @@ int rtk_uncompress(const char *file, char *uncfile) if (execcmd(cmd)) { remove(uncfile); - if (stat) remove(tmpfile); + if (stat) if(remove(tmpfile) != 0) trace(1, "Error removing file"); return -1; } - if (stat) remove(tmpfile); + if (stat) if(remove(tmpfile) != 0) trace(1, "Error removing file"); stat = 1; } trace(3, "rtk_uncompress: stat=%d\n", stat); @@ -4040,7 +4051,7 @@ int expath(const char *path, char *paths[], int nmax) { if (strcmp(paths[i], paths[j])>0) { - strcpy(tmp, paths[i]); + if(strlen(paths[i]) < 1025) strcpy(tmp, paths[i]); strcpy(paths[i], paths[j]); strcpy(paths[j], tmp); } From 0047595373e8b3e81768195dad4dcc4695bd310a Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Tue, 6 Jun 2017 18:27:54 +0200 Subject: [PATCH 022/171] Fix defects detected by coverity scan --- src/algorithms/libs/rtklib/rtklib_ephemeris.cc | 2 +- src/algorithms/libs/rtklib/rtklib_pntpos.cc | 3 ++- src/algorithms/libs/rtklib/rtklib_ppp.cc | 13 +++++++++++-- src/algorithms/libs/rtklib/rtklib_rtkcmn.cc | 13 ++++++++----- src/algorithms/libs/rtklib/rtklib_solution.cc | 2 +- 5 files changed, 23 insertions(+), 10 deletions(-) diff --git a/src/algorithms/libs/rtklib/rtklib_ephemeris.cc b/src/algorithms/libs/rtklib/rtklib_ephemeris.cc index 07954f822..7fb213366 100644 --- a/src/algorithms/libs/rtklib/rtklib_ephemeris.cc +++ b/src/algorithms/libs/rtklib/rtklib_ephemeris.cc @@ -92,7 +92,7 @@ double var_uraeph(int ura) 2.4, 3.4, 4.85, 6.85, 9.65, 13.65, 24.0, 48.0, 96.0, 192.0, 384.0, 768.0, 1536.0, 3072.0, 6144.0 }; - return ura < 0 || 15 < ura ? std::pow(6144.0, 2.0) : std::pow(ura_value[ura], 2.0); + return ura < 0 || 14 < ura ? std::pow(6144.0, 2.0) : std::pow(ura_value[ura], 2.0); } diff --git a/src/algorithms/libs/rtklib/rtklib_pntpos.cc b/src/algorithms/libs/rtklib/rtklib_pntpos.cc index 1f95ba32f..6bf14c19e 100644 --- a/src/algorithms/libs/rtklib/rtklib_pntpos.cc +++ b/src/algorithms/libs/rtklib/rtklib_pntpos.cc @@ -364,7 +364,8 @@ int valsol(const double *azel, const int *vsat, int n, const prcopt_t *opt, const double *v, int nv, int nx, char *msg) { - double azels[MAXOBS*2], dop[4], vv; + double azels[MAXOBS*2] = {0}; + double dop[4], vv; int i, ns; trace(3, "valsol : n=%d nv=%d\n", n, nv); diff --git a/src/algorithms/libs/rtklib/rtklib_ppp.cc b/src/algorithms/libs/rtklib/rtklib_ppp.cc index 5fe24ed68..2b606f07e 100644 --- a/src/algorithms/libs/rtklib/rtklib_ppp.cc +++ b/src/algorithms/libs/rtklib/rtklib_ppp.cc @@ -461,7 +461,11 @@ int fix_amb_ILS(rtk_t *rtk, int *sat1, int *sat2, int *NW, int n) sat2[m] = sat2[i]; NW[m++] = NW[i]; } - if (m<3) return 0; + if (m<3) + { + free(B1); free(N1); free(D); free(E); free(Q); free(NC); + return 0; + } /* covariance of narrow-lane ambiguities */ matmul("TN", m, rtk->nx, rtk->nx, 1.0, D, rtk->P, 0.0, E); @@ -471,9 +475,14 @@ int fix_amb_ILS(rtk_t *rtk, int *sat1, int *sat2, int *NW, int n) if ((info = lambda(m, 2, B1, Q, N1, s))) { trace(2, "lambda error: info=%d\n", info); + free(B1); free(N1); free(D); free(E); free(Q); free(NC); + return 0; + } + if (s[0] <= 0.0) + { + free(B1); free(N1); free(D); free(E); free(Q); free(NC); return 0; } - if (s[0] <= 0.0) return 0; rtk->sol.ratio = (float)(MIN_PPP(s[1]/s[0], 999.9)); diff --git a/src/algorithms/libs/rtklib/rtklib_rtkcmn.cc b/src/algorithms/libs/rtklib/rtklib_rtkcmn.cc index ea6d31f5d..d9eed2887 100644 --- a/src/algorithms/libs/rtklib/rtklib_rtkcmn.cc +++ b/src/algorithms/libs/rtklib/rtklib_rtkcmn.cc @@ -3234,12 +3234,12 @@ void createdir(const char *path) char buff[1024], *p; //tracet(3, "createdir: path=%s\n", path); - strcpy(buff, path); + if(strlen(path) < 1025) strcpy(buff, path); + else trace(1, "path is too long"); if (!(p = strrchr(buff, FILEPATHSEP))) return; *p = '\0'; - if(mkdir(buff, 0777) == 0) {} - else trace(1, "Error creating folder"); + if(mkdir(buff, 0777) != 0) trace(1, "Error creating folder"); } @@ -3257,7 +3257,9 @@ int repstr(char *str, const char *pat, const char *rep) r += sprintf(r, "%s", rep); } if (p <= str) return 0; - strcpy(r, p); + + if(strlen(p) < 1025 ) strcpy(r, p); + else trace(1, "pat array is too long"); strcpy(str, buff); return 1; } @@ -3945,7 +3947,8 @@ int rtk_uncompress(const char *file, char *uncfile) trace(3, "rtk_uncompress: file=%s\n", file); - strcpy(tmpfile, file); + if(strlen(file) < 1025) strcpy(tmpfile, file); + else trace(1, "file array is too long"); if (!(p = strrchr(tmpfile, '.'))) return 0; /* uncompress by gzip */ diff --git a/src/algorithms/libs/rtklib/rtklib_solution.cc b/src/algorithms/libs/rtklib/rtklib_solution.cc index 82f804305..d4bf306fc 100644 --- a/src/algorithms/libs/rtklib/rtklib_solution.cc +++ b/src/algorithms/libs/rtklib/rtklib_solution.cc @@ -271,7 +271,7 @@ int decode_nmeagga(char **val, int n, sol_t *sol) /* decode nmea ---------------------------------------------------------------*/ int decode_nmea(char *buff, sol_t *sol) { - char *p,*q,*val[MAXFIELD]; + char *p, *q, *val[MAXFIELD] = {0}; int n = 0; trace(4,"decode_nmea: buff=%s\n",buff); From efc6082722613176c7a9d454e84cf0e126a0fb05 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Wed, 7 Jun 2017 12:11:16 +0200 Subject: [PATCH 023/171] Fix defects detected by coverity scan --- src/algorithms/libs/rtklib/rtklib_ionex.cc | 16 ++++++++------- src/algorithms/libs/rtklib/rtklib_ppp.cc | 3 ++- src/algorithms/libs/rtklib/rtklib_preceph.cc | 6 +++++- src/algorithms/libs/rtklib/rtklib_rtkcmn.cc | 21 +++++++++++++------- src/algorithms/libs/rtklib/rtklib_rtkpos.cc | 3 ++- src/algorithms/libs/rtklib/rtklib_sbas.cc | 2 +- 6 files changed, 33 insertions(+), 18 deletions(-) diff --git a/src/algorithms/libs/rtklib/rtklib_ionex.cc b/src/algorithms/libs/rtklib/rtklib_ionex.cc index 404cd34f9..ced43801f 100644 --- a/src/algorithms/libs/rtklib/rtklib_ionex.cc +++ b/src/algorithms/libs/rtklib/rtklib_ionex.cc @@ -394,15 +394,17 @@ void readtec(const char *file, nav_t *nav, int opt) trace(2, "ionex file open error %s\n", efiles[i]); continue; } - /* read ionex header */ - if (readionexh(fp, lats, lons, hgts, &rb, &nexp, dcb, rms) <= 0.0) + else { - trace(2, "ionex file format error %s\n", efiles[i]); - continue; + /* read ionex header */ + if (readionexh(fp, lats, lons, hgts, &rb, &nexp, dcb, rms) <= 0.0) + { + trace(2, "ionex file format error %s\n", efiles[i]); + continue; + } + /* read ionex body */ + readionexb(fp, lats, lons, hgts, rb, nexp, nav); } - /* read ionex body */ - readionexb(fp, lats, lons, hgts, rb, nexp, nav); - fclose(fp); } for (i = 0; i < MAXEXFILE; i++) free(efiles[i]); diff --git a/src/algorithms/libs/rtklib/rtklib_ppp.cc b/src/algorithms/libs/rtklib/rtklib_ppp.cc index 2b606f07e..96ccb7237 100644 --- a/src/algorithms/libs/rtklib/rtklib_ppp.cc +++ b/src/algorithms/libs/rtklib/rtklib_ppp.cc @@ -490,6 +490,7 @@ int fix_amb_ILS(rtk_t *rtk, int *sat1, int *sat2, int *NW, int n) if (rtk->opt.thresar[0]>0.0 && rtk->sol.ratioopt.thresar[0]) { trace(2, "varidation error: n=%2d ratio=%8.3f\n", m, rtk->sol.ratio); + free(B1); free(N1); free(D); free(E); free(Q); free(NC); return 0; } trace(2, "varidation ok: %s n=%2d ratio=%8.3f\n", time_str(rtk->sol.time, 0), m, @@ -898,7 +899,7 @@ void testeclipse(const obsd_t *obs, int n, const nav_t *nav, double *rs) /* unit vector of sun direction (ecef) */ sunmoonpos(gpst2utc(obs[0].time), erpv, rsun, NULL, NULL); - normv3(rsun, esun); + if(normv3(rsun, esun) == 0) trace(1, "Error computing the norm"); for (i = 0;i0) { if(strlen(paths[i]) < 1025) strcpy(tmp, paths[i]); + else + { + trace(1, "Path is too long"); + } strcpy(paths[i], paths[j]); strcpy(paths[j], tmp); } diff --git a/src/algorithms/libs/rtklib/rtklib_rtkpos.cc b/src/algorithms/libs/rtklib/rtklib_rtkpos.cc index 437b75e1f..2ced73641 100644 --- a/src/algorithms/libs/rtklib/rtklib_rtkpos.cc +++ b/src/algorithms/libs/rtklib/rtklib_rtkpos.cc @@ -156,7 +156,8 @@ int rtkopenstat(const char *file, int level) trace(1, "rtkopenstat: file open error path=%s\n", path); return 0; } - strcpy(file_stat, file); + if(strlen(file) < 1025) strcpy(file_stat, file); + else trace(1, "File name is too long"); time_stat = time; statlevel = level; return 1; diff --git a/src/algorithms/libs/rtklib/rtklib_sbas.cc b/src/algorithms/libs/rtklib/rtklib_sbas.cc index ad081128f..6cddfce3c 100644 --- a/src/algorithms/libs/rtklib/rtklib_sbas.cc +++ b/src/algorithms/libs/rtklib/rtklib_sbas.cc @@ -536,7 +536,7 @@ void readmsgs(const char *file, int sel, gtime_t ts, gtime_t te, if (!(sbs_msgs = (sbsmsg_t *)realloc(sbs->msgs, sbs->nmax * sizeof(sbsmsg_t)))) { trace(1, "readsbsmsg malloc error: nmax=%d\n", sbs->nmax); - free(sbs->msgs); sbs->msgs = NULL; sbs->n = sbs->nmax = 0; + free(sbs->msgs); sbs->msgs = NULL; sbs->n = sbs->nmax = 0; fclose(fp); return; } sbs->msgs = sbs_msgs; From 2253b29bf173c226fdc34e43a0977208a8441ebc Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Wed, 7 Jun 2017 14:51:26 +0200 Subject: [PATCH 024/171] Fix defects detected by coverity scan --- src/algorithms/libs/rtklib/rtklib_stream.cc | 55 ++++++++++----------- 1 file changed, 27 insertions(+), 28 deletions(-) diff --git a/src/algorithms/libs/rtklib/rtklib_stream.cc b/src/algorithms/libs/rtklib/rtklib_stream.cc index 5decd4bcb..70c9ee552 100644 --- a/src/algorithms/libs/rtklib/rtklib_stream.cc +++ b/src/algorithms/libs/rtklib/rtklib_stream.cc @@ -104,10 +104,10 @@ serial_t *openserial(const char *path, int mode, char *msg) strncpy(port, path, p-path); port[p-path] = '\0'; sscanf(p, ":%d:%d:%c:%d:%s", &brate, &bsize, &parity, &stopb, fctr); } - else strcpy(port, path); + else if(strlen(path) < 128) strcpy(port, path); - for (i = 0;i < 11;i++) if (br[i] == brate) break; - if (i >= 12) + for (i = 0;i < 10; i++) if (br[i] == brate) break; + if (i >= 11) { sprintf(msg, "bitrate error (%d)", brate); tracet(1, "openserial: %s path=%s\n", msg, path); @@ -150,8 +150,8 @@ serial_t *openserial(const char *path, int mode, char *msg) /* close serial --------------------------------------------------------------*/ void closeserial(serial_t *serial) { - tracet(3, "closeserial: dev=%d\n", serial->dev); if (!serial) return; + tracet(3, "closeserial: dev=%d\n", serial->dev); close(serial->dev); free(serial); } @@ -161,8 +161,8 @@ void closeserial(serial_t *serial) int readserial(serial_t *serial, unsigned char *buff, int n, char *msg __attribute__((unused))) { int nr; - tracet(4, "readserial: dev=%d n=%d\n", serial->dev, n); if (!serial) return 0; + tracet(4, "readserial: dev=%d n=%d\n", serial->dev, n); if ((nr = read(serial->dev, buff, n)) < 0) return 0; tracet(5, "readserial: exit dev=%d nr=%d\n", serial->dev, nr); return nr; @@ -173,8 +173,8 @@ int readserial(serial_t *serial, unsigned char *buff, int n, char *msg __attribu int writeserial(serial_t *serial, unsigned char *buff, int n, char *msg __attribute__((unused))) { int ns; - tracet(3, "writeserial: dev=%d n=%d\n", serial->dev, n); if (!serial) return 0; + tracet(3, "writeserial: dev=%d n=%d\n", serial->dev, n); if ((ns = write(serial->dev, buff, n)) < 0) return 0; tracet(5, "writeserial: exit dev=%d ns=%d\n", serial->dev, ns); return ns; @@ -269,7 +269,7 @@ int openfile_(file_t *file, gtime_t time, char *msg) if ((fp = fopen(tagpath, "rb"))) { fclose(fp); - remove(tagpath); + if (remove(tagpath) != 0) trace(1, "Error removing file"); } } return 1; @@ -315,7 +315,7 @@ file_t *openfile(const char *path, int mode, char *msg) if (!(file = (file_t *)malloc(sizeof(file_t)))) return NULL; file->fp = file->fp_tag = file->fp_tmp = file->fp_tag_tmp = NULL; - strcpy(file->path, path); + if(strlen(path) < MAXSTRPATH) strcpy(file->path, path); if ((p = strstr(file->path, "::"))) *p = '\0'; file->openpath[0] = '\0'; file->mode = mode; @@ -344,8 +344,8 @@ file_t *openfile(const char *path, int mode, char *msg) /* close file ----------------------------------------------------------------*/ void closefile(file_t *file) { - tracet(3, "closefile: fp=%d\n", file->fp); if (!file) return; + tracet(3, "closefile: fp=%d\n", file->fp); closefile_(file); free(file); } @@ -404,9 +404,8 @@ int readfile(file_t *file, unsigned char *buff, int nmax, char *msg) int nr = 0; size_t fpos; - tracet(4, "readfile: fp=%d nmax=%d\n", file->fp, nmax); - if (!file) return 0; + tracet(4, "readfile: fp=%d nmax=%d\n", file->fp, nmax); if (file->fp == stdin) { @@ -431,7 +430,7 @@ int readfile(file_t *file, unsigned char *buff, int nmax, char *msg) if (fread(&tick, sizeof(tick), 1, file->fp_tag) < 1 || fread(&fpos, sizeof(fpos), 1, file->fp_tag) < 1) { - fseek(file->fp, 0, SEEK_END); + if(fseek(file->fp, 0, SEEK_END) != 0) trace(1, "fseek error"); sprintf(msg, "end"); break; } @@ -445,7 +444,7 @@ int readfile(file_t *file, unsigned char *buff, int nmax, char *msg) if ((int)(fpos-file->fpos) >= nmax) { - fseek(file->fp, fpos, SEEK_SET); + if(fseek(file->fp, fpos, SEEK_SET) != 0) trace(1, "Error fseek"); file->fpos = fpos; return 0; } @@ -453,7 +452,7 @@ int readfile(file_t *file, unsigned char *buff, int nmax, char *msg) if (file->repmode || file->speed>0.0) { - fseek(file->fp_tag, -(long)(sizeof(tick)+sizeof(fpos)), SEEK_CUR); + if(fseek(file->fp_tag, -(long)(sizeof(tick)+sizeof(fpos)), SEEK_CUR) !=0) trace(1, "Error fseek"); } break; } @@ -478,9 +477,8 @@ int writefile(file_t *file, unsigned char *buff, int n, char *msg) double tow1, tow2, intv; size_t fpos, fpos_tmp; - tracet(3, "writefile: fp=%d n=%d\n", file->fp, n); - if (!file) return 0; + tracet(3, "writefile: fp=%d n=%d\n", file->fp, n); wtime = utc2gpst(timeget()); /* write time in gpst */ @@ -560,7 +558,7 @@ void decodetcppath(const char *path, char *addr, char *port, char *user, if (mntpnt) *mntpnt = '\0'; if (str) *str = '\0'; - strcpy(buff, path); + if(strlen(path) < MAXSTRPATH) strcpy(buff, path); if (!(p = strrchr(buff, '@'))) p = buff; @@ -645,7 +643,7 @@ int connect_nb(socket_t sock, struct sockaddr *addr, socklen_t len) int err, flag; flag = fcntl(sock, F_GETFL, 0); - fcntl(sock, F_SETFL, flag|O_NONBLOCK); + if(fcntl(sock, F_SETFL, flag|O_NONBLOCK) == -1) trace(1, "fcntl error"); if (connect(sock, addr, len) == -1) { err = errsock(); @@ -761,7 +759,7 @@ tcpsvr_t *opentcpsvr(const char *path, char *msg) { tcpsvr_t *tcpsvr, tcpsvr0; // = {{0}}; char port[256] = ""; - + tcpsvr0 = { {0, {0}, 0, {0,0,0,{0}},0,0,0,0}, { 0, {0}, 0,{0,0,0,{0}},0,0,0,0} }; tracet(3, "opentcpsvr: path=%s\n", path); if (!(tcpsvr = (tcpsvr_t *)malloc(sizeof(tcpsvr_t)))) return NULL; @@ -985,6 +983,7 @@ tcpcli_t *opentcpcli(const char *path, char *msg) { tcpcli_t *tcpcli, tcpcli0; // = {{0}}; char port[256] = ""; + tcpcli0 = {{0, {0}, 0, {0,0,0,{0}},0,0,0,0}, 0, 0}; tracet(3, "opentcpcli: path=%s\n", path); @@ -1425,7 +1424,7 @@ void decodeftppath(const char *path, char *addr, char *file, char *user, topts[2] = 0; /* download time offset (s) */ topts[3] = 0; /* retry interval (s) (0: no retry) */ } - strcpy(buff, path); + if(strlen(path) < MAXSTRPATH) strcpy(buff, path); if ((p = strchr(buff, '/'))) { @@ -1550,13 +1549,13 @@ void *ftpthread(void *arg) /* execute download command */ if ((ret = execcmd(cmd))) { - remove(local); + if(remove(local) != 0) trace(1, "Error removing file"); tracet(1, "execcmd error: cmd=%s ret=%d\n", cmd, ret); ftp->error = ret; ftp->state = 3; return 0; } - remove(errfile); + if(remove(errfile) != 0) trace(1, "Error removing file"); /* uncompress downloaded file */ if ((p = strrchr(local, '.')) && @@ -1565,8 +1564,8 @@ void *ftpthread(void *arg) { if (rtk_uncompress(local, tmpfile)) { - remove(local); - strcpy(local, tmpfile); + if(remove(local) != 0) trace(1, "Error removing file"); + if(strlen(tmpfile) < 1024) strcpy(local, tmpfile); } else { @@ -1576,7 +1575,7 @@ void *ftpthread(void *arg) return 0; } } - strcpy(ftp->local, local); + if(strlen(local) < 1024 ) strcpy(ftp->local, local); ftp->state = 2; /* ftp completed */ tracet(3, "ftpthread: complete cmd=%s\n", cmd); @@ -1754,7 +1753,7 @@ int stropen(stream_t *stream, int type, int mode, const char *path) stream->type = type; stream->mode = mode; - strcpy(stream->path, path); + if(strlen(path) < MAXSTRPATH ) strcpy(stream->path, path); stream->inb = stream->inr = stream->outb = stream->outr = 0; stream->tick = tickget(); stream->inbt = stream->outbt = 0; @@ -2060,7 +2059,7 @@ void strsettimeout(stream_t *stream, int toinact, int tirecon) void strsetdir(const char *dir) { tracet(3, "strsetdir: dir=%s\n", dir); - strcpy(localdir, dir); + if (strlen(dir) < 1024) strcpy(localdir, dir); } @@ -2072,7 +2071,7 @@ void strsetdir(const char *dir) void strsetproxy(const char *addr) { tracet(3, "strsetproxy: addr=%s\n", addr); - strcpy(proxyaddr, addr); + if(strlen(addr) < 256) strcpy(proxyaddr, addr); } From 0b2b0fceac7eb5dd272928ae697eff1807a2a12c Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Wed, 7 Jun 2017 15:02:14 +0200 Subject: [PATCH 025/171] Fix defects detected by coverity scan --- src/algorithms/libs/rtklib/rtklib_ionex.cc | 2 ++ src/algorithms/libs/rtklib/rtklib_preceph.cc | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/algorithms/libs/rtklib/rtklib_ionex.cc b/src/algorithms/libs/rtklib/rtklib_ionex.cc index ced43801f..41ebce9ba 100644 --- a/src/algorithms/libs/rtklib/rtklib_ionex.cc +++ b/src/algorithms/libs/rtklib/rtklib_ionex.cc @@ -392,6 +392,7 @@ void readtec(const char *file, nav_t *nav, int opt) if (!(fp = fopen(efiles[i], "r"))) { trace(2, "ionex file open error %s\n", efiles[i]); + fclose(fp); continue; } else @@ -400,6 +401,7 @@ void readtec(const char *file, nav_t *nav, int opt) if (readionexh(fp, lats, lons, hgts, &rb, &nexp, dcb, rms) <= 0.0) { trace(2, "ionex file format error %s\n", efiles[i]); + fclose(fp); continue; } /* read ionex body */ diff --git a/src/algorithms/libs/rtklib/rtklib_preceph.cc b/src/algorithms/libs/rtklib/rtklib_preceph.cc index 4000084f6..c6dec6056 100644 --- a/src/algorithms/libs/rtklib/rtklib_preceph.cc +++ b/src/algorithms/libs/rtklib/rtklib_preceph.cc @@ -369,7 +369,7 @@ int readsap(const char *file, gtime_t time, nav_t *nav) pcv = searchpcv(i + 1, "", time, &pcvs); nav->pcvs[i] = pcv ? *pcv : pcv0; } - free(pcvs.pcv); + free(pcv); return 1; } From e1c0227bb9bdb1476520115cb3181ad84de049f2 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Wed, 7 Jun 2017 16:37:47 +0200 Subject: [PATCH 026/171] Avoid the use of rand() --- .../volk_gnsssdr/lib/qa_utils.cc | 15 ++++++++++++--- .../gnuradio_blocks/signal_generator_c.cc | 11 ++++++----- .../gnuradio_blocks/signal_generator_c.h | 6 +++++- 3 files changed, 23 insertions(+), 9 deletions(-) diff --git a/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/lib/qa_utils.cc b/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/lib/qa_utils.cc index c5b3f5262..18176f0e2 100644 --- a/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/lib/qa_utils.cc +++ b/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/lib/qa_utils.cc @@ -32,14 +32,20 @@ #include #include #include +#include #include #include #include #include -float uniform() { - return 2.0f * ((float) rand() / RAND_MAX - 0.5f); // uniformly (-1, 1) +float uniform() +{ + // Seed with a real random value, if available + std::random_device r; + std::default_random_engine e1(r()); + std::uniform_real_distribution<> uniform_dist(-1, 1); + return static_cast(uniform_dist(e1)); } template @@ -51,6 +57,9 @@ void random_floats (t *buf, unsigned n) void load_random_data(void *data, volk_gnsssdr_type_t type, unsigned int n) { + std::random_device r; + std::default_random_engine e1(r()); + std::uniform_int_distribution uniform_dist(-1, 1); if(type.is_complex) n *= 2; if(type.is_float) { @@ -63,7 +72,7 @@ void load_random_data(void *data, volk_gnsssdr_type_t type, unsigned int n) if(type.is_signed) int_max /= 2.0; for(unsigned int i = 0; i < n; i++) { - float scaled_rand = (((float) (rand() - (RAND_MAX/2))) / static_cast((RAND_MAX/2))) * int_max; + float scaled_rand = static_cast(uniform_dist(e1)) * int_max; //man i really don't know how to do this in a more clever way, you have to cast down at some point switch(type.size) { diff --git a/src/algorithms/signal_generator/gnuradio_blocks/signal_generator_c.cc b/src/algorithms/signal_generator/gnuradio_blocks/signal_generator_c.cc index 74a1cf9f2..4ce5e8daf 100644 --- a/src/algorithms/signal_generator/gnuradio_blocks/signal_generator_c.cc +++ b/src/algorithms/signal_generator/gnuradio_blocks/signal_generator_c.cc @@ -15,7 +15,7 @@ * GNSS-SDR is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. +* (at your option) any later version. * * GNSS-SDR is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -33,7 +33,6 @@ #include #include #include -//#include #include #include "gps_sdr_signal_processing.h" #include "galileo_e1_signal_processing.h" @@ -131,6 +130,8 @@ void signal_generator_c::init() } } random_ = new gr::random(); + std::default_random_engine e1(r()); + std::uniform_int_distribution uniform_dist(0, RAND_MAX); } @@ -295,7 +296,7 @@ int signal_generator_c::general_work (int noutput_items __attribute__((unused)), if (ms_counter_[sat] == 0 && data_flag_) { // New random data bit - current_data_bits_[sat] = gr_complex((rand() % 2) == 0 ? 1 : -1, 0); + current_data_bits_[sat] = gr_complex((uniform_dist(e1) % 2) == 0 ? 1 : -1, 0); } for (k = delay_samples; k < samples_per_code_[sat]; k++) @@ -330,7 +331,7 @@ int signal_generator_c::general_work (int noutput_items __attribute__((unused)), if (ms_counter_[sat]%data_bit_duration_ms_[sat] == 0 && data_flag_) { // New random data bit - current_data_bit_int_[sat] = (rand()%2) == 0 ? 1 : -1; + current_data_bit_int_[sat] = (uniform_dist(e1)%2) == 0 ? 1 : -1; } data_modulation_[sat] = current_data_bit_int_[sat] * (Galileo_E5a_I_SECONDARY_CODE.at((ms_counter_[sat]+delay_sec_[sat]) % 20) == '0' ? 1 : -1); pilot_modulation_[sat] = (Galileo_E5a_Q_SECONDARY_CODE[PRN_[sat] - 1].at((ms_counter_[sat] + delay_sec_[sat]) % 100) == '0' ? 1 : -1); @@ -362,7 +363,7 @@ int signal_generator_c::general_work (int noutput_items __attribute__((unused)), if (ms_counter_[sat] == 0 && data_flag_) { // New random data bit - current_data_bits_[sat] = gr_complex((rand() % 2) == 0 ? 1 : -1, 0); + current_data_bits_[sat] = gr_complex((uniform_dist(e1) % 2) == 0 ? 1 : -1, 0); } for (k = delay_samples; k < samples_per_code_[sat]; k++) diff --git a/src/algorithms/signal_generator/gnuradio_blocks/signal_generator_c.h b/src/algorithms/signal_generator/gnuradio_blocks/signal_generator_c.h index e35dd0229..3700f8af9 100644 --- a/src/algorithms/signal_generator/gnuradio_blocks/signal_generator_c.h +++ b/src/algorithms/signal_generator/gnuradio_blocks/signal_generator_c.h @@ -33,6 +33,8 @@ #include #include +#include +#include #include #include #include @@ -122,6 +124,9 @@ private: gr_complex* complex_phase_; unsigned int work_counter_; + std::random_device r; + std::default_random_engine e1; + std::uniform_int_distribution uniform_dist; public: ~signal_generator_c(); // public destructor @@ -135,4 +140,3 @@ public: }; #endif /* GNSS_SDR_SIGNAL_GENERATOR_C_H */ - From 21bf5291f9e49a30fb8829c449c06eaa4c1a9440 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Wed, 7 Jun 2017 16:39:27 +0200 Subject: [PATCH 027/171] Fix defects detected by coverity scan --- src/algorithms/libs/rtklib/rtklib_rtksvr.cc | 4 ++-- src/algorithms/libs/rtklib/rtklib_stream.cc | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/algorithms/libs/rtklib/rtklib_rtksvr.cc b/src/algorithms/libs/rtklib/rtklib_rtksvr.cc index c8ba20466..0c2aabedf 100644 --- a/src/algorithms/libs/rtklib/rtklib_rtksvr.cc +++ b/src/algorithms/libs/rtklib/rtklib_rtksvr.cc @@ -752,8 +752,8 @@ int rtksvrstart(rtksvr_t *svr, int cycle, int buffsize, int *strs, init_rtcm(svr->rtcm+i); /* set receiver and rtcm option */ - strcpy(svr->raw [i].opt, rcvopts[i]); - strcpy(svr->rtcm[i].opt, rcvopts[i]); + if(strlen(rcvopts[i]) < 256 ) strcpy(svr->raw [i].opt, rcvopts[i]); + if(strlen(rcvopts[i]) < 256 ) strcpy(svr->rtcm[i].opt, rcvopts[i]); /* connect dgps corrections */ svr->rtcm[i].dgps = svr->nav.dgps; diff --git a/src/algorithms/libs/rtklib/rtklib_stream.cc b/src/algorithms/libs/rtklib/rtklib_stream.cc index 70c9ee552..53d2bb8f4 100644 --- a/src/algorithms/libs/rtklib/rtklib_stream.cc +++ b/src/algorithms/libs/rtklib/rtklib_stream.cc @@ -861,7 +861,7 @@ int accsock(tcpsvr_t *tcpsvr, char *msg) tcpsvr->cli[i].sock = sock; if (!setsock(tcpsvr->cli[i].sock, msg)) return 0; memcpy(&tcpsvr->cli[i].addr, &addr, sizeof(addr)); - strcpy(tcpsvr->cli[i].saddr, inet_ntoa(addr.sin_addr)); + if(strlen(inet_ntoa(addr.sin_addr)) < 256) strcpy(tcpsvr->cli[i].saddr, inet_ntoa(addr.sin_addr)); sprintf(msg, "%s", tcpsvr->cli[i].saddr); tracet(2, "accsock: connected sock=%d addr=%s\n", tcpsvr->cli[i].sock, tcpsvr->cli[i].saddr); tcpsvr->cli[i].state = 2; From 8aa7140f19ecbdf13919ace409309a0e93b05cbf Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Wed, 7 Jun 2017 17:28:11 +0200 Subject: [PATCH 028/171] Avoid the use of rand() --- src/tests/system-tests/ttff_gps_l1.cc | 15 +++++++++------ .../tracking/cpu_multicorrelator_test.cc | 6 +++++- 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/src/tests/system-tests/ttff_gps_l1.cc b/src/tests/system-tests/ttff_gps_l1.cc index 2d2155e4a..37a21d9d2 100644 --- a/src/tests/system-tests/ttff_gps_l1.cc +++ b/src/tests/system-tests/ttff_gps_l1.cc @@ -37,6 +37,7 @@ #include #include #include +#include #include #include #include @@ -515,9 +516,10 @@ TEST_F(TTFF_GPS_L1_CA_Test, ColdStart) std::cout << "Just finished measurement " << num_measurements << ", which took " << ttff << " seconds." << std::endl; if(n < FLAGS_num_measurements - 1) { - std::srand(std::time(0)); // use current time as seed for random generator - int random_variable = std::rand(); - float random_variable_0_1 = static_cast(random_variable) / static_cast( RAND_MAX ); + std::random_device r; + std::default_random_engine e1(r()); + std::uniform_real_distribution uniform_dist(0, 1); + float random_variable_0_1 = uniform_dist(e1); int random_delay_s = static_cast(random_variable_0_1 * 25.0); std::cout << "Waiting a random amount of time (from 5 to 30 s) to start a new measurement... " << std::endl; std::cout << "This time will wait " << random_delay_s + 5 << " s." << std::endl << std::endl; @@ -599,9 +601,10 @@ TEST_F(TTFF_GPS_L1_CA_Test, HotStart) std::cout << "Just finished measurement " << num_measurements << ", which took " << ttff << " seconds." << std::endl; if(n < FLAGS_num_measurements - 1) { - std::srand(std::time(0)); // use current time as seed for random generator - int random_variable = std::rand(); - float random_variable_0_1 = static_cast(random_variable) / static_cast( RAND_MAX ); + std::random_device r; + std::default_random_engine e1(r()); + std::uniform_real_distribution uniform_dist(0, 1); + float random_variable_0_1 = uniform_dist(e1); int random_delay_s = static_cast(random_variable_0_1 * 25.0); std::cout << "Waiting a random amount of time (from 5 to 30 s) to start new measurement... " << std::endl; std::cout << "This time will wait " << random_delay_s + 5 << " s." << std::endl << std::endl; diff --git a/src/tests/unit-tests/signal-processing-blocks/tracking/cpu_multicorrelator_test.cc b/src/tests/unit-tests/signal-processing-blocks/tracking/cpu_multicorrelator_test.cc index e567953c5..5e65cf0db 100644 --- a/src/tests/unit-tests/signal-processing-blocks/tracking/cpu_multicorrelator_test.cc +++ b/src/tests/unit-tests/signal-processing-blocks/tracking/cpu_multicorrelator_test.cc @@ -31,6 +31,7 @@ #include #include +#include #include #include #include "cpu_multicorrelator.h" @@ -100,9 +101,12 @@ TEST(CPU_multicorrelator_test, MeasureExecutionTime) // generate local reference (1 sample per chip) gps_l1_ca_code_gen_complex(d_ca_code, 1, 0); // generate inut signal + std::random_device r; + std::default_random_engine e1(r()); + std::uniform_real_distribution uniform_dist(0, 1); for (int n=0;n<2*d_vector_length;n++) { - in_cpu[n]=std::complex(static_cast (rand())/static_cast(RAND_MAX),static_cast (rand())/static_cast(RAND_MAX)); + in_cpu[n]=std::complex(uniform_dist(e1), uniform_dist(e1)); } for (int n=0;n Date: Wed, 7 Jun 2017 17:32:37 +0200 Subject: [PATCH 029/171] Fix uncatched exception --- src/tests/single_test_main.cc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/tests/single_test_main.cc b/src/tests/single_test_main.cc index f9f91573b..9877e61f2 100644 --- a/src/tests/single_test_main.cc +++ b/src/tests/single_test_main.cc @@ -64,7 +64,11 @@ DECLARE_string(log_dir); int main(int argc, char **argv) { google::ParseCommandLineFlags(&argc, &argv, true); - testing::InitGoogleTest(&argc, argv); + try + { + testing::InitGoogleTest(&argc, argv); + } + catch(...) {} // catch the "testing::internal::::ClassUniqueToAlwaysTrue" from gtest google::InitGoogleLogging(argv[0]); int res = 0; try From 9e77789d8d4ae5eda0456171b05d692c5c4a4529 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Wed, 7 Jun 2017 17:33:59 +0200 Subject: [PATCH 030/171] Small fix --- src/tests/test_main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/test_main.cc b/src/tests/test_main.cc index dec6bf9f0..b78051a69 100644 --- a/src/tests/test_main.cc +++ b/src/tests/test_main.cc @@ -16,7 +16,7 @@ * GNSS-SDR is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. +* (at your option) any later version. * * GNSS-SDR is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of From ac9ceb7c53d1f622f4d25358300ee9d03cd946e8 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Wed, 7 Jun 2017 17:51:16 +0200 Subject: [PATCH 031/171] Fix random generator usage --- .../libs/volk_gnsssdr_module/volk_gnsssdr/lib/qa_utils.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/lib/qa_utils.cc b/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/lib/qa_utils.cc index 18176f0e2..d947ebd94 100644 --- a/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/lib/qa_utils.cc +++ b/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/lib/qa_utils.cc @@ -59,7 +59,7 @@ void load_random_data(void *data, volk_gnsssdr_type_t type, unsigned int n) { std::random_device r; std::default_random_engine e1(r()); - std::uniform_int_distribution uniform_dist(-1, 1); + std::uniform_real_distribution uniform_dist(-1, 1); if(type.is_complex) n *= 2; if(type.is_float) { From dfa11ab36400a56ebc4b12e5ce267bdc6143a328 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Wed, 7 Jun 2017 19:41:32 +0200 Subject: [PATCH 032/171] Fix out-of-bound access --- src/algorithms/libs/rtklib/rtklib_preceph.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/algorithms/libs/rtklib/rtklib_preceph.cc b/src/algorithms/libs/rtklib/rtklib_preceph.cc index c6dec6056..2e4d73911 100644 --- a/src/algorithms/libs/rtklib/rtklib_preceph.cc +++ b/src/algorithms/libs/rtklib/rtklib_preceph.cc @@ -355,8 +355,7 @@ void readsp3(const char *file, nav_t *nav, int opt) *-----------------------------------------------------------------------------*/ int readsap(const char *file, gtime_t time, nav_t *nav) { - pcv_t aux = { 0, {}, {}, {0,0}, {0,0}, {{},{}}, {{},{}} }; - pcvs_t pcvs = {0, 0, &aux }; + pcvs_t pcvs = {0, 0, (pcv_t*){ 0 } }; pcv_t pcv0 = { 0, {}, {}, {0,0}, {0,0}, {{},{}}, {{},{}} }, *pcv; int i; From 25508cf8338a989968b802918048c0ef197b5ff4 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Wed, 7 Jun 2017 19:42:38 +0200 Subject: [PATCH 033/171] Fix null pointer dereference --- src/algorithms/libs/rtklib/rtklib_ionex.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/algorithms/libs/rtklib/rtklib_ionex.cc b/src/algorithms/libs/rtklib/rtklib_ionex.cc index 41ebce9ba..c70a43fa6 100644 --- a/src/algorithms/libs/rtklib/rtklib_ionex.cc +++ b/src/algorithms/libs/rtklib/rtklib_ionex.cc @@ -392,7 +392,6 @@ void readtec(const char *file, nav_t *nav, int opt) if (!(fp = fopen(efiles[i], "r"))) { trace(2, "ionex file open error %s\n", efiles[i]); - fclose(fp); continue; } else From ed041c00b81b4f8dd1a4f424ca46f53c6dbfb75a Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Wed, 7 Jun 2017 20:12:49 +0200 Subject: [PATCH 034/171] Fix out-of-bound read --- src/algorithms/libs/rtklib/rtklib_sbas.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/algorithms/libs/rtklib/rtklib_sbas.cc b/src/algorithms/libs/rtklib/rtklib_sbas.cc index 6cddfce3c..577199268 100644 --- a/src/algorithms/libs/rtklib/rtklib_sbas.cc +++ b/src/algorithms/libs/rtklib/rtklib_sbas.cc @@ -185,9 +185,9 @@ int decode_sbstype6(const sbsmsg_t *msg, sbssat_t *sbssat) { iodf[i] = getbitu(msg->msg, 14+i*2, 2); } - for (i = 0;insat && insat && i < MAXSAT; i++) { - if (sbssat->sat[i].fcorr.iodf != iodf[i/13]) continue; + if (sbssat->sat[i].fcorr.iodf != iodf[i/22]) continue; udre = getbitu(msg->msg, 22+i*4, 4); sbssat->sat[i].fcorr.udre = udre+1; } From 937238b0a6cce3a58de79ff78276b4c8b519b828 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Wed, 7 Jun 2017 20:34:33 +0200 Subject: [PATCH 035/171] Fix uncaught exception --- src/utils/front-end-cal/main.cc | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/utils/front-end-cal/main.cc b/src/utils/front-end-cal/main.cc index ce249aa20..c6ec2ed40 100644 --- a/src/utils/front-end-cal/main.cc +++ b/src/utils/front-end-cal/main.cc @@ -372,8 +372,14 @@ int main(int argc, char** argv) gr::block_sptr source; source = gr::blocks::file_source::make(sizeof(gr_complex), "tmp_capture.dat"); - - boost::shared_ptr msg_rx = FrontEndCal_msg_rx_make(); + try + { + boost::shared_ptr msg_rx = FrontEndCal_msg_rx_make(); + } + catch(const std::exception & e) + { + std::cout << "Failure connecting the message port system: " << e.what() << std::endl; + } //gr_basic_block_sptr head = gr_make_head(sizeof(gr_complex), nsamples); //gr_head_sptr head_sptr = boost::dynamic_pointer_cast(head); From 9f70940114d10f4fcaa61b133f25a04c6dd9aaad Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Wed, 7 Jun 2017 20:41:56 +0200 Subject: [PATCH 036/171] Small fix --- src/utils/front-end-cal/main.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/utils/front-end-cal/main.cc b/src/utils/front-end-cal/main.cc index c6ec2ed40..5f22068bf 100644 --- a/src/utils/front-end-cal/main.cc +++ b/src/utils/front-end-cal/main.cc @@ -32,6 +32,7 @@ #define FRONT_END_CAL_VERSION "0.0.1" #endif +#include #include #include #include @@ -372,13 +373,14 @@ int main(int argc, char** argv) gr::block_sptr source; source = gr::blocks::file_source::make(sizeof(gr_complex), "tmp_capture.dat"); + boost::shared_ptr msg_rx; try { - boost::shared_ptr msg_rx = FrontEndCal_msg_rx_make(); + msg_rx = FrontEndCal_msg_rx_make(); } catch(const std::exception & e) { - std::cout << "Failure connecting the message port system: " << e.what() << std::endl; + std::cout << "Failure connecting the message port system: " << e.what() << std::endl; exit(0); } //gr_basic_block_sptr head = gr_make_head(sizeof(gr_complex), nsamples); From 9a7bd7ffb49b75da84f4683ccc4d21a8852e4c36 Mon Sep 17 00:00:00 2001 From: mmajoral Date: Thu, 8 Jun 2017 17:29:45 +0200 Subject: [PATCH 037/171] adopted code style + did some code refactoring --- .../gps_l1_ca_pcps_acquisition_fpga.cc | 131 ++-- .../gps_l1_ca_pcps_acquisition_fpga.h | 4 +- .../gps_pcps_acquisition_fpga_sc.cc | 291 +++++---- .../gps_pcps_acquisition_fpga_sc.h | 209 +++--- .../libs/gps_fpga_acquisition_8sc.cc | 184 +++--- .../libs/gps_fpga_acquisition_8sc.h | 36 +- .../volk_gnsssdr/lib/qa_utils.cc | 15 +- .../gps_l1_ca_dll_pll_c_aid_tracking_fpga.cc | 88 ++- .../gps_l1_ca_dll_pll_c_aid_tracking_fpga.h | 6 +- ...ps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc | 605 ++++++++++++------ ...gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.h | 78 +-- .../tracking/libs/fpga_multicorrelator_8sc.cc | 178 +++--- .../tracking/libs/fpga_multicorrelator_8sc.h | 38 +- .../gps_l1_ca_pcps_acquisition_test_fpga.cc | 339 +++++----- .../gps_l1_ca_dll_pll_tracking_test_fpga.cc | 405 ++++++------ 15 files changed, 1372 insertions(+), 1235 deletions(-) diff --git a/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_acquisition_fpga.cc b/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_acquisition_fpga.cc index be6ef08d4..441784851 100644 --- a/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_acquisition_fpga.cc +++ b/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_acquisition_fpga.cc @@ -37,25 +37,24 @@ #include "GPS_L1_CA.h" #include "configuration_interface.h" - using google::LogMessage; GpsL1CaPcpsAcquisitionFpga::GpsL1CaPcpsAcquisitionFpga( ConfigurationInterface* configuration, std::string role, unsigned int in_streams, unsigned int out_streams) : - role_(role), in_streams_(in_streams), out_streams_(out_streams) + role_(role), in_streams_(in_streams), out_streams_(out_streams) { - unsigned int code_length; - bool bit_transition_flag; - bool use_CFAR_algorithm_flag; - unsigned int sampled_ms; - long fs_in; - long ifreq; - bool dump; - std::string dump_filename; - unsigned int nsamples_total; - unsigned int select_queue_Fpga; - std::string device_name; + unsigned int code_length; + bool bit_transition_flag; + bool use_CFAR_algorithm_flag; + unsigned int sampled_ms; + long fs_in; + long ifreq; + bool dump; + std::string dump_filename; + unsigned int nsamples_total; + unsigned int select_queue_Fpga; + std::string device_name; configuration_ = configuration; @@ -64,64 +63,70 @@ GpsL1CaPcpsAcquisitionFpga::GpsL1CaPcpsAcquisitionFpga( DLOG(INFO) << "role " << role; - item_type_ = configuration_->property(role + ".item_type", default_item_type); + item_type_ = configuration_->property(role + ".item_type", + default_item_type); fs_in = configuration_->property("GNSS-SDR.internal_fs_hz", 2048000); ifreq = configuration_->property(role + ".if", 0); dump = configuration_->property(role + ".dump", false); doppler_max_ = configuration_->property(role + ".doppler_max", 5000); - sampled_ms = configuration_->property(role + ".coherent_integration_time_ms", 1); + sampled_ms = configuration_->property( + role + ".coherent_integration_time_ms", 1); // note : the FPGA is implemented according to bit transition flag = 0. Setting bit transition flag to 1 has no effect. - bit_transition_flag = configuration_->property(role + ".bit_transition_flag", false); + bit_transition_flag = configuration_->property( + role + ".bit_transition_flag", false); // note : the FPGA is implemented according to use_CFAR_algorithm = 0. Setting use_CFAR_algorithm to 1 has no effect. - use_CFAR_algorithm_flag=configuration_->property(role + ".use_CFAR_algorithm", false); + use_CFAR_algorithm_flag = configuration_->property( + role + ".use_CFAR_algorithm", false); // note : the FPGA does not use the max_dwells variable. max_dwells_ = configuration_->property(role + ".max_dwells", 1); - dump_filename = configuration_->property(role + ".dump_filename", default_dump_filename); + dump_filename = configuration_->property(role + ".dump_filename", + default_dump_filename); //--- Find number of samples per spreading code ------------------------- - code_length = round(fs_in / (GPS_L1_CA_CODE_RATE_HZ / GPS_L1_CA_CODE_LENGTH_CHIPS)); + code_length = round( + fs_in / (GPS_L1_CA_CODE_RATE_HZ / GPS_L1_CA_CODE_LENGTH_CHIPS)); // code length has the same value as d_fft_size - float nbits; - nbits = ceilf(log2f(code_length)); - nsamples_total = pow(2,nbits); + float nbits; + nbits = ceilf(log2f(code_length)); + nsamples_total = pow(2, nbits); //vector_length_ = code_length_ * sampled_ms_; vector_length_ = nsamples_total * sampled_ms; + // if( bit_transition_flag_ ) + // { + // vector_length_ *= 2; + // } -// if( bit_transition_flag_ ) -// { -// vector_length_ *= 2; -// } - - - - select_queue_Fpga = configuration_->property(role + ".select_queue_Fpga", 0); + select_queue_Fpga = configuration_->property(role + ".select_queue_Fpga", + 0); std::string default_device_name = "/dev/uio0"; - device_name = configuration_->property(role + ".devicename", default_device_name); + device_name = configuration_->property(role + ".devicename", + default_device_name); - if (item_type_.compare("cshort") == 0 ) + if (item_type_.compare("cshort") == 0) { item_size_ = sizeof(lv_16sc_t); - gps_acquisition_fpga_sc_ = gps_pcps_make_acquisition_fpga_sc(sampled_ms, max_dwells_, - doppler_max_, ifreq, fs_in, code_length, code_length, vector_length_, nsamples_total, - bit_transition_flag, use_CFAR_algorithm_flag, select_queue_Fpga, device_name, dump, dump_filename); - DLOG(INFO) << "acquisition(" << gps_acquisition_fpga_sc_->unique_id() << ")"; + gps_acquisition_fpga_sc_ = gps_pcps_make_acquisition_fpga_sc( + sampled_ms, max_dwells_, doppler_max_, ifreq, fs_in, + code_length, code_length, vector_length_, nsamples_total, + bit_transition_flag, use_CFAR_algorithm_flag, + select_queue_Fpga, device_name, dump, dump_filename); + DLOG(INFO) << "acquisition(" + << gps_acquisition_fpga_sc_->unique_id() << ")"; } - else{ - LOG(FATAL) << item_type_ << " FPGA only accepts chsort"; - } - - - + else + { + LOG(FATAL) << item_type_ << " FPGA only accepts chsort"; + } channel_ = 0; threshold_ = 0.0; @@ -129,13 +134,11 @@ GpsL1CaPcpsAcquisitionFpga::GpsL1CaPcpsAcquisitionFpga( gnss_synchro_ = 0; } - GpsL1CaPcpsAcquisitionFpga::~GpsL1CaPcpsAcquisitionFpga() { } - void GpsL1CaPcpsAcquisitionFpga::set_channel(unsigned int channel) { channel_ = channel; @@ -144,12 +147,11 @@ void GpsL1CaPcpsAcquisitionFpga::set_channel(unsigned int channel) } - void GpsL1CaPcpsAcquisitionFpga::set_threshold(float threshold) { float pfa = configuration_->property(role_ + ".pfa", 0.0); - if(pfa == 0.0) + if (pfa == 0.0) { threshold_ = threshold; } @@ -160,12 +162,10 @@ void GpsL1CaPcpsAcquisitionFpga::set_threshold(float threshold) DLOG(INFO) << "Channel " << channel_ << " Threshold = " << threshold_; - gps_acquisition_fpga_sc_->set_threshold(threshold_); } - void GpsL1CaPcpsAcquisitionFpga::set_doppler_max(unsigned int doppler_max) { doppler_max_ = doppler_max; @@ -174,7 +174,6 @@ void GpsL1CaPcpsAcquisitionFpga::set_doppler_max(unsigned int doppler_max) } - void GpsL1CaPcpsAcquisitionFpga::set_doppler_step(unsigned int doppler_step) { doppler_step_ = doppler_step; @@ -190,23 +189,20 @@ void GpsL1CaPcpsAcquisitionFpga::set_gnss_synchro(Gnss_Synchro* gnss_synchro) gps_acquisition_fpga_sc_->set_gnss_synchro(gnss_synchro_); } - signed int GpsL1CaPcpsAcquisitionFpga::mag() { - return gps_acquisition_fpga_sc_->mag(); + return gps_acquisition_fpga_sc_->mag(); } - void GpsL1CaPcpsAcquisitionFpga::init() { - gps_acquisition_fpga_sc_->init(); + gps_acquisition_fpga_sc_->init(); set_local_code(); } - void GpsL1CaPcpsAcquisitionFpga::set_local_code() { @@ -214,28 +210,25 @@ void GpsL1CaPcpsAcquisitionFpga::set_local_code() } - void GpsL1CaPcpsAcquisitionFpga::reset() { - gps_acquisition_fpga_sc_->set_active(true); + gps_acquisition_fpga_sc_->set_active(true); } - void GpsL1CaPcpsAcquisitionFpga::set_state(int state) { - gps_acquisition_fpga_sc_->set_state(state); + gps_acquisition_fpga_sc_->set_state(state); } - - float GpsL1CaPcpsAcquisitionFpga::calculate_threshold(float pfa) { //Calculate the threshold unsigned int frequency_bins = 0; - for (int doppler = (int)(-doppler_max_); doppler <= (int)doppler_max_; doppler += doppler_step_) + for (int doppler = (int) (-doppler_max_); doppler <= (int) doppler_max_; + doppler += doppler_step_) { frequency_bins++; } @@ -244,39 +237,35 @@ float GpsL1CaPcpsAcquisitionFpga::calculate_threshold(float pfa) double exponent = 1 / static_cast(ncells); double val = pow(1.0 - pfa, exponent); double lambda = double(vector_length_); - boost::math::exponential_distribution mydist (lambda); - float threshold = (float)quantile(mydist,val); + boost::math::exponential_distribution mydist(lambda); + float threshold = (float) quantile(mydist, val); return threshold; } - void GpsL1CaPcpsAcquisitionFpga::connect(gr::top_block_sptr top_block) { - //nothing to connect + //nothing to connect } - void GpsL1CaPcpsAcquisitionFpga::disconnect(gr::top_block_sptr top_block) { - //nothing to disconnect + //nothing to disconnect } - gr::basic_block_sptr GpsL1CaPcpsAcquisitionFpga::get_left_block() { - return gps_acquisition_fpga_sc_; + return gps_acquisition_fpga_sc_; } - gr::basic_block_sptr GpsL1CaPcpsAcquisitionFpga::get_right_block() { - return gps_acquisition_fpga_sc_; + return gps_acquisition_fpga_sc_; } diff --git a/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_acquisition_fpga.h b/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_acquisition_fpga.h index 9a7edbd7c..186d255e6 100644 --- a/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_acquisition_fpga.h +++ b/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_acquisition_fpga.h @@ -43,15 +43,13 @@ #include "complex_byte_to_float_x2.h" #include - - class ConfigurationInterface; /*! * \brief This class adapts a PCPS acquisition block to an AcquisitionInterface * for GPS L1 C/A signals */ -class GpsL1CaPcpsAcquisitionFpga: public AcquisitionInterface +class GpsL1CaPcpsAcquisitionFpga : public AcquisitionInterface { public: GpsL1CaPcpsAcquisitionFpga(ConfigurationInterface* configuration, diff --git a/src/algorithms/acquisition/gnuradio_blocks/gps_pcps_acquisition_fpga_sc.cc b/src/algorithms/acquisition/gnuradio_blocks/gps_pcps_acquisition_fpga_sc.cc index 727f5ed4a..9e6380121 100644 --- a/src/algorithms/acquisition/gnuradio_blocks/gps_pcps_acquisition_fpga_sc.cc +++ b/src/algorithms/acquisition/gnuradio_blocks/gps_pcps_acquisition_fpga_sc.cc @@ -40,54 +40,56 @@ #include #include "control_message_factory.h" #include "GPS_L1_CA.h" //GPS_TWO_PI - using google::LogMessage; void wait3(int seconds) { - boost::this_thread::sleep_for(boost::chrono::seconds{seconds}); + boost::this_thread::sleep_for(boost::chrono::seconds + { seconds }); } - gps_pcps_acquisition_fpga_sc_sptr gps_pcps_make_acquisition_fpga_sc( - unsigned int sampled_ms, unsigned int max_dwells, - unsigned int doppler_max, long freq, long fs_in, - int samples_per_ms, int samples_per_code, int vector_length, unsigned int nsamples_total, - bool bit_transition_flag, bool use_CFAR_algorithm_flag, - unsigned int select_queue_Fpga, std::string device_name, - bool dump, - std::string dump_filename) + unsigned int sampled_ms, unsigned int max_dwells, + unsigned int doppler_max, long freq, long fs_in, int samples_per_ms, + int samples_per_code, int vector_length, unsigned int nsamples_total, + bool bit_transition_flag, bool use_CFAR_algorithm_flag, + unsigned int select_queue_Fpga, std::string device_name, bool dump, + std::string dump_filename) { return gps_pcps_acquisition_fpga_sc_sptr( - new gps_pcps_acquisition_fpga_sc(sampled_ms, max_dwells, doppler_max, freq, fs_in, samples_per_ms, - samples_per_code, vector_length, nsamples_total, bit_transition_flag, use_CFAR_algorithm_flag, select_queue_Fpga, device_name, dump, dump_filename)); + new gps_pcps_acquisition_fpga_sc(sampled_ms, max_dwells, + doppler_max, freq, fs_in, samples_per_ms, samples_per_code, + vector_length, nsamples_total, bit_transition_flag, + use_CFAR_algorithm_flag, select_queue_Fpga, device_name, + dump, dump_filename)); } gps_pcps_acquisition_fpga_sc::gps_pcps_acquisition_fpga_sc( - unsigned int sampled_ms, unsigned int max_dwells, - unsigned int doppler_max, long freq, long fs_in, - int samples_per_ms, int samples_per_code, int vector_length, unsigned int nsamples_total, - bool bit_transition_flag, bool use_CFAR_algorithm_flag, - unsigned int select_queue_Fpga, std::string device_name, - bool dump, - std::string dump_filename) : + unsigned int sampled_ms, unsigned int max_dwells, + unsigned int doppler_max, long freq, long fs_in, int samples_per_ms, + int samples_per_code, int vector_length, unsigned int nsamples_total, + bool bit_transition_flag, bool use_CFAR_algorithm_flag, + unsigned int select_queue_Fpga, std::string device_name, bool dump, + std::string dump_filename) : - gr::block("pcps_acquisition_fpga_sc",gr::io_signature::make(0, 0, sizeof(lv_16sc_t)),gr::io_signature::make(0, 0, 0)) + gr::block("pcps_acquisition_fpga_sc", + gr::io_signature::make(0, 0, sizeof(lv_16sc_t)), + gr::io_signature::make(0, 0, 0)) { this->message_port_register_out(pmt::mp("events")); - d_sample_counter = 0; // SAMPLE COUNTER + d_sample_counter = 0; // SAMPLE COUNTER d_active = false; d_state = 0; d_samples_per_code = samples_per_code; - d_max_dwells = max_dwells; // Note : d_max_dwells is not used in the FPGA implementation + d_max_dwells = max_dwells; // Note : d_max_dwells is not used in the FPGA implementation d_well_count = 0; d_doppler_max = doppler_max; d_fft_size = sampled_ms * samples_per_ms; d_mag = 0; d_num_doppler_bins = 0; - d_bit_transition_flag = bit_transition_flag; // Note : bit transition flag is ignored and assumed 0 in the FPGA implementation - d_use_CFAR_algorithm_flag = use_CFAR_algorithm_flag; // Note : user CFAR algorithm flag is ignored and assumed 0 in the FPGA implementation + d_bit_transition_flag = bit_transition_flag; // Note : bit transition flag is ignored and assumed 0 in the FPGA implementation + d_use_CFAR_algorithm_flag = use_CFAR_algorithm_flag; // Note : user CFAR algorithm flag is ignored and assumed 0 in the FPGA implementation d_threshold = 0.0; d_doppler_step = 250; d_channel = 0; @@ -99,12 +101,12 @@ gps_pcps_acquisition_fpga_sc::gps_pcps_acquisition_fpga_sc( d_gnss_synchro = 0; // instantiate HW accelerator class - acquisition_fpga_8sc= std::make_shared(device_name, vector_length, d_fft_size, nsamples_total, fs_in, freq, sampled_ms, select_queue_Fpga); - + acquisition_fpga_8sc = + std::make_shared < gps_fpga_acquisition_8sc + > (device_name, vector_length, d_fft_size, nsamples_total, fs_in, freq, sampled_ms, select_queue_Fpga); } - gps_pcps_acquisition_fpga_sc::~gps_pcps_acquisition_fpga_sc() { @@ -116,7 +118,6 @@ gps_pcps_acquisition_fpga_sc::~gps_pcps_acquisition_fpga_sc() acquisition_fpga_8sc->free(); } - void gps_pcps_acquisition_fpga_sc::set_local_code() { @@ -135,20 +136,17 @@ void gps_pcps_acquisition_fpga_sc::init() d_gnss_synchro->Acq_samplestamp_samples = 0; d_mag = 0.0; - d_num_doppler_bins = ceil( static_cast(static_cast(d_doppler_max) - static_cast(-d_doppler_max)) / static_cast(d_doppler_step)); + d_num_doppler_bins = ceil( + static_cast(static_cast(d_doppler_max) + - static_cast(-d_doppler_max)) + / static_cast(d_doppler_step)); acquisition_fpga_8sc->open_device(); acquisition_fpga_8sc->init(); - - - - } - - void gps_pcps_acquisition_fpga_sc::set_state(int state) { d_state = state; @@ -161,156 +159,156 @@ void gps_pcps_acquisition_fpga_sc::set_state(int state) d_mag = 0.0; } else if (d_state == 0) - {} + { + } else { LOG(ERROR) << "State can only be set to 0 or 1"; } - - - - - } void gps_pcps_acquisition_fpga_sc::set_active(bool active) { - - float temp_peak_to_noise_level = 0.0; - float peak_to_noise_level = 0.0; - float input_power; - float test_statistics = 0.0; - acquisition_fpga_8sc->block_samples(); // block the samples to run the acquisition this is only necessary for the tests + float temp_peak_to_noise_level = 0.0; + float peak_to_noise_level = 0.0; + float input_power; + float test_statistics = 0.0; + acquisition_fpga_8sc->block_samples(); // block the samples to run the acquisition this is only necessary for the tests d_active = active; + int acquisition_message = -1; //0=STOP_CHANNEL 1=ACQ_SUCCEES 2=ACQ_FAIL - int acquisition_message = -1; //0=STOP_CHANNEL 1=ACQ_SUCCEES 2=ACQ_FAIL + d_state = 1; - d_state = 1; + // initialize acquisition algorithm + int doppler; + uint32_t indext = 0; + float magt = 0.0; + //int effective_fft_size = ( d_bit_transition_flag ? d_fft_size/2 : d_fft_size ); + int effective_fft_size = d_fft_size; + //float fft_normalization_factor = static_cast(d_fft_size) * static_cast(d_fft_size); - // initialize acquisition algorithm - int doppler; - uint32_t indext = 0; - float magt = 0.0; - //int effective_fft_size = ( d_bit_transition_flag ? d_fft_size/2 : d_fft_size ); - int effective_fft_size = d_fft_size; - //float fft_normalization_factor = static_cast(d_fft_size) * static_cast(d_fft_size); + d_mag = 0.0; - d_mag = 0.0; + unsigned int initial_sample; - unsigned int initial_sample; + d_well_count++; - d_well_count++; + DLOG(INFO) << "Channel: " << d_channel + << " , doing acquisition of satellite: " << d_gnss_synchro->System + << " " << d_gnss_synchro->PRN << " ,sample stamp: " + << d_sample_counter << ", threshold: " << ", threshold: " + << d_threshold << ", doppler_max: " << d_doppler_max + << ", doppler_step: " << d_doppler_step; - DLOG(INFO) << "Channel: " << d_channel - << " , doing acquisition of satellite: " << d_gnss_synchro->System << " "<< d_gnss_synchro->PRN - << " ,sample stamp: " << d_sample_counter << ", threshold: " - << ", threshold: " - << d_threshold << ", doppler_max: " << d_doppler_max - << ", doppler_step: " << d_doppler_step; + // Doppler frequency search loop + for (unsigned int doppler_index = 0; doppler_index < d_num_doppler_bins; + doppler_index++) + { - // Doppler frequency search loop - for (unsigned int doppler_index = 0; doppler_index < d_num_doppler_bins; doppler_index++) - { + doppler = -static_cast(d_doppler_max) + + d_doppler_step * doppler_index; + acquisition_fpga_8sc->set_phase_step(doppler_index); + acquisition_fpga_8sc->run_acquisition(); // runs acquisition and waits until it is finished - doppler = -static_cast(d_doppler_max) + d_doppler_step * doppler_index; + acquisition_fpga_8sc->read_acquisition_results(&indext, &magt, + &initial_sample, &input_power); - acquisition_fpga_8sc->set_phase_step(doppler_index); - acquisition_fpga_8sc->run_acquisition(); // runs acquisition and waits until it is finished + d_sample_counter = initial_sample; - acquisition_fpga_8sc->read_acquisition_results(&indext, &magt, &initial_sample, &input_power); + temp_peak_to_noise_level = (float) (magt / input_power); + if (peak_to_noise_level < temp_peak_to_noise_level) + { + peak_to_noise_level = temp_peak_to_noise_level; + d_mag = magt; - d_sample_counter = initial_sample; + input_power = (input_power - d_mag) + / (effective_fft_size - 1); - temp_peak_to_noise_level = (float) (magt / input_power); - if (peak_to_noise_level < temp_peak_to_noise_level) - { - peak_to_noise_level = temp_peak_to_noise_level; - d_mag = magt; + d_gnss_synchro->Acq_delay_samples = + static_cast(indext % d_samples_per_code); + d_gnss_synchro->Acq_doppler_hz = + static_cast(doppler); + d_gnss_synchro->Acq_samplestamp_samples = d_sample_counter; + test_statistics = d_mag / input_power; + } - input_power = (input_power - d_mag) / (effective_fft_size - 1); + // Record results to file if required + if (d_dump) + { + std::stringstream filename; + //std::streamsize n = 2 * sizeof(float) * (d_fft_size); // complex file write + filename.str(""); - d_gnss_synchro->Acq_delay_samples = static_cast(indext % d_samples_per_code); - d_gnss_synchro->Acq_doppler_hz = static_cast(doppler); - d_gnss_synchro->Acq_samplestamp_samples = d_sample_counter; - test_statistics = d_mag / input_power; - } + boost::filesystem::path p = d_dump_filename; + filename << p.parent_path().string() + << boost::filesystem::path::preferred_separator + << p.stem().string() << "_" + << d_gnss_synchro->System << "_" + << d_gnss_synchro->Signal << "_sat_" + << d_gnss_synchro->PRN << "_doppler_" << doppler + << p.extension().string(); - // Record results to file if required - if (d_dump) - { - std::stringstream filename; - //std::streamsize n = 2 * sizeof(float) * (d_fft_size); // complex file write - filename.str(""); + DLOG(INFO) << "Writing ACQ out to " << filename.str(); - boost::filesystem::path p = d_dump_filename; - filename << p.parent_path().string() - << boost::filesystem::path::preferred_separator - << p.stem().string() - << "_" << d_gnss_synchro->System - <<"_" << d_gnss_synchro->Signal << "_sat_" - << d_gnss_synchro->PRN << "_doppler_" - << doppler - << p.extension().string(); + d_dump_file.open(filename.str().c_str(), + std::ios::out | std::ios::binary); + d_dump_file.close(); + } + } - DLOG(INFO) << "Writing ACQ out to " << filename.str(); + if (test_statistics > d_threshold) + { + d_state = 2; // Positive acquisition - d_dump_file.open(filename.str().c_str(), std::ios::out | std::ios::binary); - d_dump_file.close(); - } - } + // 6.1- Declare positive acquisition using a message port + DLOG(INFO) << "positive acquisition"; + DLOG(INFO) << "satellite " << d_gnss_synchro->System << " " + << d_gnss_synchro->PRN; + DLOG(INFO) << "sample_stamp " << d_sample_counter; + DLOG(INFO) << "test statistics value " << test_statistics; + DLOG(INFO) << "test statistics threshold " << d_threshold; + DLOG(INFO) << "code phase " << d_gnss_synchro->Acq_delay_samples; + DLOG(INFO) << "doppler " << d_gnss_synchro->Acq_doppler_hz; + DLOG(INFO) << "magnitude " << d_mag; + DLOG(INFO) << "input signal power " << input_power; + d_active = false; + d_state = 0; - if (test_statistics > d_threshold) - { - d_state = 2; // Positive acquisition + acquisition_message = 1; + this->message_port_pub(pmt::mp("events"), + pmt::from_long(acquisition_message)); - // 6.1- Declare positive acquisition using a message port - DLOG(INFO) << "positive acquisition"; - DLOG(INFO) << "satellite " << d_gnss_synchro->System << " " << d_gnss_synchro->PRN; - DLOG(INFO) << "sample_stamp " << d_sample_counter; - DLOG(INFO) << "test statistics value " << test_statistics; - DLOG(INFO) << "test statistics threshold " << d_threshold; - DLOG(INFO) << "code phase " << d_gnss_synchro->Acq_delay_samples; - DLOG(INFO) << "doppler " << d_gnss_synchro->Acq_doppler_hz; - DLOG(INFO) << "magnitude " << d_mag; - DLOG(INFO) << "input signal power " << input_power; + } + else + { + d_state = 3; // Negative acquisition - d_active = false; - d_state = 0; + // 6.2- Declare negative acquisition using a message port + DLOG(INFO) << "negative acquisition"; + DLOG(INFO) << "satellite " << d_gnss_synchro->System << " " + << d_gnss_synchro->PRN; + DLOG(INFO) << "sample_stamp " << d_sample_counter; + DLOG(INFO) << "test statistics value " << test_statistics; + DLOG(INFO) << "test statistics threshold " << d_threshold; + DLOG(INFO) << "code phase " << d_gnss_synchro->Acq_delay_samples; + DLOG(INFO) << "doppler " << d_gnss_synchro->Acq_doppler_hz; + DLOG(INFO) << "magnitude " << d_mag; + DLOG(INFO) << "input signal power " << input_power; - acquisition_message = 1; - this->message_port_pub(pmt::mp("events"), pmt::from_long(acquisition_message)); + d_active = false; + d_state = 0; + acquisition_message = 2; + this->message_port_pub(pmt::mp("events"), + pmt::from_long(acquisition_message)); - } - else - { - d_state = 3; // Negative acquisition - - // 6.2- Declare negative acquisition using a message port - DLOG(INFO) << "negative acquisition"; - DLOG(INFO) << "satellite " << d_gnss_synchro->System << " " << d_gnss_synchro->PRN; - DLOG(INFO) << "sample_stamp " << d_sample_counter; - DLOG(INFO) << "test statistics value " << test_statistics; - DLOG(INFO) << "test statistics threshold " << d_threshold; - DLOG(INFO) << "code phase " << d_gnss_synchro->Acq_delay_samples; - DLOG(INFO) << "doppler " << d_gnss_synchro->Acq_doppler_hz; - DLOG(INFO) << "magnitude " << d_mag; - DLOG(INFO) << "input signal power " << input_power; - - d_active = false; - d_state = 0; - - acquisition_message = 2; - this->message_port_pub(pmt::mp("events"), pmt::from_long(acquisition_message)); - - } - + } acquisition_fpga_8sc->unblock_samples(); @@ -320,11 +318,10 @@ void gps_pcps_acquisition_fpga_sc::set_active(bool active) } - int gps_pcps_acquisition_fpga_sc::general_work(int noutput_items, gr_vector_int &ninput_items, gr_vector_const_void_star &input_items, gr_vector_void_star &output_items __attribute__((unused))) { - // general work not used with the acquisition + // general work not used with the acquisition return noutput_items; } diff --git a/src/algorithms/acquisition/gnuradio_blocks/gps_pcps_acquisition_fpga_sc.h b/src/algorithms/acquisition/gnuradio_blocks/gps_pcps_acquisition_fpga_sc.h index ff39a1cd8..8e60689fd 100644 --- a/src/algorithms/acquisition/gnuradio_blocks/gps_pcps_acquisition_fpga_sc.h +++ b/src/algorithms/acquisition/gnuradio_blocks/gps_pcps_acquisition_fpga_sc.h @@ -62,13 +62,13 @@ class gps_pcps_acquisition_fpga_sc; typedef boost::shared_ptr gps_pcps_acquisition_fpga_sc_sptr; gps_pcps_acquisition_fpga_sc_sptr -gps_pcps_make_acquisition_fpga_sc(unsigned int sampled_ms, unsigned int max_dwells, - unsigned int doppler_max, long freq, long fs_in, - int samples_per_ms, int samples_per_code, int vector_length_, unsigned int nsamples_total_, - bool bit_transition_flag, bool use_CFAR_algorithm_flag, - unsigned int select_queue_Fpga, std::string device_name, - bool dump, - std::string dump_filename); +gps_pcps_make_acquisition_fpga_sc(unsigned int sampled_ms, + unsigned int max_dwells, unsigned int doppler_max, long freq, + long fs_in, int samples_per_ms, int samples_per_code, + int vector_length_, unsigned int nsamples_total_, + bool bit_transition_flag, bool use_CFAR_algorithm_flag, + unsigned int select_queue_Fpga, std::string device_name, bool dump, + std::string dump_filename); /*! * \brief This class implements a Parallel Code Phase Search Acquisition. @@ -76,29 +76,26 @@ gps_pcps_make_acquisition_fpga_sc(unsigned int sampled_ms, unsigned int max_dwel * Check \ref Navitec2012 "An Open Source Galileo E1 Software Receiver", * Algorithm 1, for a pseudocode description of this implementation. */ -class gps_pcps_acquisition_fpga_sc: public gr::block +class gps_pcps_acquisition_fpga_sc : public gr::block { private: friend gps_pcps_acquisition_fpga_sc_sptr - gps_pcps_make_acquisition_fpga_sc(unsigned int sampled_ms, unsigned int max_dwells, - unsigned int doppler_max, long freq, long fs_in, - int samples_per_ms, int samples_per_code, int vector_length, unsigned int nsamples_total, + gps_pcps_make_acquisition_fpga_sc(unsigned int sampled_ms, + unsigned int max_dwells, unsigned int doppler_max, long freq, + long fs_in, int samples_per_ms, int samples_per_code, + int vector_length, unsigned int nsamples_total, bool bit_transition_flag, bool use_CFAR_algorithm_flag, - unsigned int select_queue_Fpga, - std::string device_name, - bool dump, + unsigned int select_queue_Fpga, std::string device_name, bool dump, std::string dump_filename); - gps_pcps_acquisition_fpga_sc(unsigned int sampled_ms, unsigned int max_dwells, - unsigned int doppler_max, long freq, long fs_in, - int samples_per_ms, int samples_per_code, int vector_length, unsigned int nsamples_total, + gps_pcps_acquisition_fpga_sc(unsigned int sampled_ms, + unsigned int max_dwells, unsigned int doppler_max, long freq, + long fs_in, int samples_per_ms, int samples_per_code, + int vector_length, unsigned int nsamples_total, bool bit_transition_flag, bool use_CFAR_algorithm_flag, - unsigned int select_queue_Fpga, - std::string device_name, - bool dump, + unsigned int select_queue_Fpga, std::string device_name, bool dump, std::string dump_filename); - int d_samples_per_code; float d_threshold; unsigned int d_doppler_max; @@ -110,114 +107,108 @@ private: unsigned int d_num_doppler_bins; Gnss_Synchro *d_gnss_synchro; - float d_mag; - bool d_bit_transition_flag; - bool d_use_CFAR_algorithm_flag; - std::ofstream d_dump_file; - bool d_active; - int d_state; - bool d_dump; + float d_mag;bool d_bit_transition_flag;bool d_use_CFAR_algorithm_flag; + std::ofstream d_dump_file;bool d_active; + int d_state;bool d_dump; unsigned int d_channel; std::string d_dump_filename; - std::shared_ptr acquisition_fpga_8sc; public: /*! * \brief Default destructor. */ - ~gps_pcps_acquisition_fpga_sc(); + ~gps_pcps_acquisition_fpga_sc(); - /*! - * \brief Set acquisition/tracking common Gnss_Synchro object pointer - * to exchange synchronization data between acquisition and tracking blocks. - * \param p_gnss_synchro Satellite information shared by the processing blocks. - */ - void set_gnss_synchro(Gnss_Synchro* p_gnss_synchro) - { - d_gnss_synchro = p_gnss_synchro; - } + /*! + * \brief Set acquisition/tracking common Gnss_Synchro object pointer + * to exchange synchronization data between acquisition and tracking blocks. + * \param p_gnss_synchro Satellite information shared by the processing blocks. + */ + void set_gnss_synchro(Gnss_Synchro* p_gnss_synchro) + { + d_gnss_synchro = p_gnss_synchro; + } - /*! - * \brief Returns the maximum peak of grid search. - */ - unsigned int mag() - { - return d_mag; - } + /*! + * \brief Returns the maximum peak of grid search. + */ + unsigned int mag() + { + return d_mag; + } - /*! - * \brief Initializes acquisition algorithm. - */ - void init(); + /*! + * \brief Initializes acquisition algorithm. + */ + void init(); - /*! - * \brief Sets local code for PCPS acquisition algorithm. - * \param code - Pointer to the PRN code. - */ - void set_local_code(); + /*! + * \brief Sets local code for PCPS acquisition algorithm. + * \param code - Pointer to the PRN code. + */ + void set_local_code(); - /*! - * \brief Starts acquisition algorithm, turning from standby mode to - * active mode - * \param active - bool that activates/deactivates the block. - */ - void set_active(bool active); + /*! + * \brief Starts acquisition algorithm, turning from standby mode to + * active mode + * \param active - bool that activates/deactivates the block. + */ + void set_active(bool active); - /*! - * \brief If set to 1, ensures that acquisition starts at the - * first available sample. - * \param state - int=1 forces start of acquisition - */ - void set_state(int state); + /*! + * \brief If set to 1, ensures that acquisition starts at the + * first available sample. + * \param state - int=1 forces start of acquisition + */ + void set_state(int state); - /*! - * \brief Set acquisition channel unique ID - * \param channel - receiver channel. - */ - void set_channel(unsigned int channel) - { - d_channel = channel; - } + /*! + * \brief Set acquisition channel unique ID + * \param channel - receiver channel. + */ + void set_channel(unsigned int channel) + { + d_channel = channel; + } - /*! - * \brief Set statistics threshold of PCPS algorithm. - * \param threshold - Threshold for signal detection (check \ref Navitec2012, - * Algorithm 1, for a definition of this threshold). - */ - void set_threshold(float threshold) - { - d_threshold = threshold; - } + /*! + * \brief Set statistics threshold of PCPS algorithm. + * \param threshold - Threshold for signal detection (check \ref Navitec2012, + * Algorithm 1, for a definition of this threshold). + */ + void set_threshold(float threshold) + { + d_threshold = threshold; + } - /*! - * \brief Set maximum Doppler grid search - * \param doppler_max - Maximum Doppler shift considered in the grid search [Hz]. - */ - void set_doppler_max(unsigned int doppler_max) - { - d_doppler_max = doppler_max; - acquisition_fpga_8sc->set_doppler_max(doppler_max); - } + /*! + * \brief Set maximum Doppler grid search + * \param doppler_max - Maximum Doppler shift considered in the grid search [Hz]. + */ + void set_doppler_max(unsigned int doppler_max) + { + d_doppler_max = doppler_max; + acquisition_fpga_8sc->set_doppler_max(doppler_max); + } - /*! - * \brief Set Doppler steps for the grid search - * \param doppler_step - Frequency bin of the search grid [Hz]. - */ - void set_doppler_step(unsigned int doppler_step) - { - d_doppler_step = doppler_step; - acquisition_fpga_8sc->set_doppler_step(doppler_step); - } + /*! + * \brief Set Doppler steps for the grid search + * \param doppler_step - Frequency bin of the search grid [Hz]. + */ + void set_doppler_step(unsigned int doppler_step) + { + d_doppler_step = doppler_step; + acquisition_fpga_8sc->set_doppler_step(doppler_step); + } - - /*! - * \brief Parallel Code Phase Search Acquisition signal processing. - */ - int general_work(int noutput_items, gr_vector_int &ninput_items, - gr_vector_const_void_star &input_items, - gr_vector_void_star &output_items); + /*! + * \brief Parallel Code Phase Search Acquisition signal processing. + */ + int general_work(int noutput_items, gr_vector_int &ninput_items, + gr_vector_const_void_star &input_items, + gr_vector_void_star &output_items); }; diff --git a/src/algorithms/acquisition/libs/gps_fpga_acquisition_8sc.cc b/src/algorithms/acquisition/libs/gps_fpga_acquisition_8sc.cc index 39eb8f2cc..8fad0c8b0 100644 --- a/src/algorithms/acquisition/libs/gps_fpga_acquisition_8sc.cc +++ b/src/algorithms/acquisition/libs/gps_fpga_acquisition_8sc.cc @@ -60,7 +60,6 @@ // logging #include - #include #include "GPS_L1_CA.h" @@ -68,8 +67,7 @@ #define PAGE_SIZE 0x10000 #define MAX_PHASE_STEP_RAD 0.999999999534339 // 1 - pow(2,-31); #define NUM_PRNs 32 -#define TEST_REGISTER_WRITEVAL 0x55AA - +#define TEST_REGISTER_ACQ_WRITEVAL 0x55AA bool gps_fpga_acquisition_8sc::init() { @@ -78,24 +76,24 @@ bool gps_fpga_acquisition_8sc::init() return true; } - - bool gps_fpga_acquisition_8sc::set_local_code(unsigned int PRN) { - // select the code with the chosen PRN - gps_fpga_acquisition_8sc::fpga_configure_acquisition_local_code(&d_all_fft_codes[d_vector_length*PRN]); + // select the code with the chosen PRN + gps_fpga_acquisition_8sc::fpga_configure_acquisition_local_code( + &d_all_fft_codes[d_vector_length * PRN]); return true; } - - -gps_fpga_acquisition_8sc::gps_fpga_acquisition_8sc(std::string device_name, unsigned int vector_length, unsigned int nsamples, unsigned int nsamples_total, long fs_in, long freq, unsigned int sampled_ms, unsigned select_queue) +gps_fpga_acquisition_8sc::gps_fpga_acquisition_8sc(std::string device_name, + unsigned int vector_length, unsigned int nsamples, + unsigned int nsamples_total, long fs_in, long freq, + unsigned int sampled_ms, unsigned select_queue) { - // initial values + // initial values - d_device_name = device_name; + d_device_name = device_name; d_freq = freq; d_fs_in = fs_in; d_vector_length = vector_length; @@ -104,9 +102,8 @@ gps_fpga_acquisition_8sc::gps_fpga_acquisition_8sc(std::string device_name, unsi d_doppler_max = 0; d_doppler_step = 0; - d_fd = 0; // driver descriptor - d_map_base = nullptr; // driver memory map - + d_fd = 0; // driver descriptor + d_map_base = nullptr; // driver memory map // compute all the possible code ffts @@ -115,64 +112,74 @@ gps_fpga_acquisition_8sc::gps_fpga_acquisition_8sc(std::string device_name, unsi // allocate memory to compute all the PRNs // and compute all the possible codes - std::complex* code = new std::complex[nsamples_total]; // buffer for the local code - std::complex * code_total = new gr_complex[vector_length]; // buffer for the local code repeate every number of ms + std::complex* code = new std::complex[nsamples_total]; // buffer for the local code + std::complex * code_total = new gr_complex[vector_length]; // buffer for the local code repeate every number of ms - gr_complex* d_fft_codes_padded = static_cast(volk_gnsssdr_malloc(vector_length * sizeof(gr_complex), volk_gnsssdr_get_alignment())); + gr_complex* d_fft_codes_padded = + static_cast(volk_gnsssdr_malloc( + vector_length * sizeof(gr_complex), + volk_gnsssdr_get_alignment())); - d_all_fft_codes = new lv_16sc_t[vector_length*NUM_PRNs]; // memory containing all the possible fft codes for PRN 0 to 32 + d_all_fft_codes = new lv_16sc_t[vector_length * NUM_PRNs]; // memory containing all the possible fft codes for PRN 0 to 32 - float max; // temporary maxima search + float max; // temporary maxima search - for (unsigned int PRN = 0; PRN < NUM_PRNs; PRN ++) - { - gps_l1_ca_code_gen_complex_sampled(code, PRN, fs_in , 0); // generate PRN code - - for (unsigned int i = 0; i < sampled_ms; i++) - { - memcpy(&(code_total[i*nsamples_total]), code, sizeof(gr_complex)*nsamples_total); // repeat for each ms - } - - int offset = 0; - - memcpy(d_fft_if->get_inbuf() + offset, code_total, sizeof(gr_complex) * vector_length); // copy to FFT buffer - - d_fft_if->execute(); // Run the FFT of local code - - volk_32fc_conjugate_32fc(d_fft_codes_padded, d_fft_if->get_outbuf(), vector_length); // conjugate values - - max = 0; // initialize maximum value - - for (unsigned int i=0;i max) - { - max = std::abs(d_fft_codes_padded[i].real()); - } - if(std::abs(d_fft_codes_padded[i].imag()) > max) - { - max = std::abs(d_fft_codes_padded[i].imag()); - } - } - - for (unsigned int i=0;iget_inbuf() + offset, code_total, + sizeof(gr_complex) * vector_length); // copy to FFT buffer + + d_fft_if->execute(); // Run the FFT of local code + + volk_32fc_conjugate_32fc(d_fft_codes_padded, d_fft_if->get_outbuf(), + vector_length); // conjugate values + + max = 0; // initialize maximum value + + for (unsigned int i = 0; i < vector_length; i++) // search for maxima + { + if (std::abs(d_fft_codes_padded[i].real()) > max) + { + max = std::abs(d_fft_codes_padded[i].real()); + } + if (std::abs(d_fft_codes_padded[i].imag()) > max) + { + max = std::abs(d_fft_codes_padded[i].imag()); + } + } + + for (unsigned int i = 0; i < vector_length; i++) // map the FFT to the dynamic range of the fixed point values an copy to buffer containing all FFTs + { + d_all_fft_codes[i + vector_length * PRN] = lv_16sc_t( + (int) (d_fft_codes_padded[i].real() + * (pow(2, 7) - 1) / max), + (int) (d_fft_codes_padded[i].imag() + * (pow(2, 7) - 1) / max)); + } + } - } - - // temporary buffers that we can delete - delete[] code; - delete[] code_total; - delete d_fft_if; - delete[] d_fft_codes_padded; + // temporary buffers that we can delete + delete[] code; + delete[] code_total; + delete d_fft_if; + delete[] d_fft_codes_padded; } gps_fpga_acquisition_8sc::~gps_fpga_acquisition_8sc() { - delete [] d_all_fft_codes; + delete[] d_all_fft_codes; } bool gps_fpga_acquisition_8sc::free() @@ -180,8 +187,8 @@ bool gps_fpga_acquisition_8sc::free() return true; } - -unsigned gps_fpga_acquisition_8sc::fpga_acquisition_test_register(unsigned writeval) +unsigned gps_fpga_acquisition_8sc::fpga_acquisition_test_register( + unsigned writeval) { unsigned readval; // write value to test register @@ -192,8 +199,8 @@ unsigned gps_fpga_acquisition_8sc::fpga_acquisition_test_register(unsigned write return readval; } - -void gps_fpga_acquisition_8sc::fpga_configure_acquisition_local_code(lv_16sc_t fft_local_code[]) +void gps_fpga_acquisition_8sc::fpga_configure_acquisition_local_code( + lv_16sc_t fft_local_code[]) { short int local_code; unsigned int k, tmp, tmp2; @@ -204,24 +211,23 @@ void gps_fpga_acquisition_8sc::fpga_configure_acquisition_local_code(lv_16sc_t f { tmp = fft_local_code[k].real(); tmp2 = fft_local_code[k].imag(); - local_code = (tmp & 0xFF) | ((tmp2*256) & 0xFF00); // put together the real part and the imaginary part + local_code = (tmp & 0xFF) | ((tmp2 * 256) & 0xFF00); // put together the real part and the imaginary part d_map_base[4] = 0x0C000000 | (local_code & 0xFFFF); } } - void gps_fpga_acquisition_8sc::run_acquisition(void) { // enable interrupts int reenable = 1; - write(d_fd, (void *)&reenable, sizeof(int)); + write(d_fd, (void *) &reenable, sizeof(int)); - d_map_base[5] = 0; // writing anything to reg 4 launches the acquisition process + d_map_base[5] = 0; // writing anything to reg 4 launches the acquisition process int irq_count; ssize_t nb; // wait for interrupt - nb=read(d_fd, &irq_count, sizeof(irq_count)); + nb = read(d_fd, &irq_count, sizeof(irq_count)); if (nb != sizeof(irq_count)) { printf("Tracking_module Read failed to retrieve 4 bytes!\n"); @@ -229,7 +235,6 @@ void gps_fpga_acquisition_8sc::run_acquisition(void) } } - void gps_fpga_acquisition_8sc::configure_acquisition() { d_map_base[0] = d_select_queue; @@ -237,15 +242,16 @@ void gps_fpga_acquisition_8sc::configure_acquisition() d_map_base[2] = d_nsamples; } - void gps_fpga_acquisition_8sc::set_phase_step(unsigned int doppler_index) { float phase_step_rad_real; float phase_step_rad_int_temp; int32_t phase_step_rad_int; - int doppler = -static_cast(d_doppler_max) + d_doppler_step * doppler_index; - float phase_step_rad = GPS_TWO_PI * (d_freq + doppler) / static_cast(d_fs_in); + int doppler = -static_cast(d_doppler_max) + + d_doppler_step * doppler_index; + float phase_step_rad = GPS_TWO_PI * (d_freq + doppler) + / static_cast(d_fs_in); // The doppler step can never be outside the range -pi to +pi, otherwise there would be aliasing // The FPGA expects phase_step_rad between -1 (-pi) to +1 (+pi) // The FPGA also expects the phase to be negative since it produces cos(x) -j*sin(x) @@ -255,16 +261,16 @@ void gps_fpga_acquisition_8sc::set_phase_step(unsigned int doppler_index) // (only the positive value can saturate due to the 2's complement representation) if (phase_step_rad_real == 1.0) { - phase_step_rad_real = MAX_PHASE_STEP_RAD; + phase_step_rad_real = MAX_PHASE_STEP_RAD; } - phase_step_rad_int_temp = phase_step_rad_real*4; // * 2^2 - phase_step_rad_int = (int32_t) (phase_step_rad_int_temp*(536870912)); // * 2^29 (in total it makes x2^31 in two steps to avoid the warnings + phase_step_rad_int_temp = phase_step_rad_real * 4; // * 2^2 + phase_step_rad_int = (int32_t) (phase_step_rad_int_temp * (536870912)); // * 2^29 (in total it makes x2^31 in two steps to avoid the warnings d_map_base[3] = phase_step_rad_int; } - -void gps_fpga_acquisition_8sc::read_acquisition_results(uint32_t* max_index, float* max_magnitude, unsigned *initial_sample, float *power_sum) +void gps_fpga_acquisition_8sc::read_acquisition_results(uint32_t* max_index, + float* max_magnitude, unsigned *initial_sample, float *power_sum) { unsigned readval = 0; readval = d_map_base[0]; @@ -277,34 +283,32 @@ void gps_fpga_acquisition_8sc::read_acquisition_results(uint32_t* max_index, flo readval = d_map_base[3]; *max_index = readval; - } - void gps_fpga_acquisition_8sc::block_samples() { d_map_base[14] = 1; // block the samples } - void gps_fpga_acquisition_8sc::unblock_samples() { d_map_base[14] = 0; // unblock the samples } - void gps_fpga_acquisition_8sc::open_device() { - if ((d_fd = open(d_device_name.c_str(), O_RDWR | O_SYNC )) == -1) + if ((d_fd = open(d_device_name.c_str(), O_RDWR | O_SYNC)) == -1) { LOG(WARNING) << "Cannot open deviceio" << d_device_name; } - d_map_base = (volatile unsigned *)mmap(NULL, PAGE_SIZE, PROT_READ | PROT_WRITE, MAP_SHARED, d_fd,0); + d_map_base = (volatile unsigned *) mmap(NULL, PAGE_SIZE, + PROT_READ | PROT_WRITE, MAP_SHARED, d_fd, 0); if (d_map_base == (void *) -1) { - LOG(WARNING) << "Cannot map the FPGA acquisition module into user memory"; + LOG(WARNING) + << "Cannot map the FPGA acquisition module into user memory"; } // sanity check : check test register @@ -313,9 +317,10 @@ void gps_fpga_acquisition_8sc::open_device() // because we need to open and close the device every time we run an acquisition // since the same device may be used by more than one class (gps acquisition, galileo // acquisition, etc ..) - unsigned writeval = TEST_REGISTER_WRITEVAL; + unsigned writeval = TEST_REGISTER_ACQ_WRITEVAL; unsigned readval; - readval = gps_fpga_acquisition_8sc::fpga_acquisition_test_register(writeval); + readval = gps_fpga_acquisition_8sc::fpga_acquisition_test_register( + writeval); if (writeval != readval) { LOG(WARNING) << "Acquisition test register sanity check failed"; @@ -325,11 +330,10 @@ void gps_fpga_acquisition_8sc::open_device() LOG(INFO) << "Acquisition test register sanity check success !"; } - } void gps_fpga_acquisition_8sc::close_device() { - if (munmap((void*)d_map_base, PAGE_SIZE) == -1) + if (munmap((void*) d_map_base, PAGE_SIZE) == -1) { printf("Failed to unmap memory uio\n"); } diff --git a/src/algorithms/acquisition/libs/gps_fpga_acquisition_8sc.h b/src/algorithms/acquisition/libs/gps_fpga_acquisition_8sc.h index 39b08eb95..4f48af3bc 100644 --- a/src/algorithms/acquisition/libs/gps_fpga_acquisition_8sc.h +++ b/src/algorithms/acquisition/libs/gps_fpga_acquisition_8sc.h @@ -47,14 +47,17 @@ class gps_fpga_acquisition_8sc { public: - gps_fpga_acquisition_8sc(std::string device_name, unsigned int vector_length, unsigned int nsamples, unsigned int nsamples_total, long fs_in, long freq, unsigned int sampled_ms, unsigned select_queue); - ~gps_fpga_acquisition_8sc(); - bool init(); - bool set_local_code(unsigned int PRN); //int code_length_chips, const lv_16sc_t* local_code_in, float *shifts_chips); + gps_fpga_acquisition_8sc(std::string device_name, + unsigned int vector_length, unsigned int nsamples, + unsigned int nsamples_total, long fs_in, long freq, + unsigned int sampled_ms, unsigned select_queue); + ~gps_fpga_acquisition_8sc();bool init();bool set_local_code( + unsigned int PRN); //int code_length_chips, const lv_16sc_t* local_code_in, float *shifts_chips); bool free(); void run_acquisition(void); void set_phase_step(unsigned int doppler_index); - void read_acquisition_results(uint32_t* max_index, float* max_magnitude, unsigned *initial_sample, float *power_sum); + void read_acquisition_results(uint32_t* max_index, float* max_magnitude, + unsigned *initial_sample, float *power_sum); void block_samples(); void unblock_samples(); void open_device(); @@ -78,24 +81,22 @@ public: d_doppler_step = doppler_step; } - private: long d_freq; long d_fs_in; - gr::fft::fft_complex* d_fft_if; // function used to run the fft of the local codes + gr::fft::fft_complex* d_fft_if; // function used to run the fft of the local codes // data related to the hardware module and the driver - int d_fd; // driver descriptor - volatile unsigned *d_map_base; // driver memory map - lv_16sc_t *d_all_fft_codes; // memory that contains all the code ffts - unsigned int d_vector_length; // number of samples incluing padding and number of ms - unsigned int d_nsamples; // number of samples not including padding - unsigned int d_select_queue; // queue selection - std::string d_device_name; // HW device name - unsigned int d_doppler_max; // max doppler - unsigned int d_doppler_step; // doppler step - + int d_fd; // driver descriptor + volatile unsigned *d_map_base; // driver memory map + lv_16sc_t *d_all_fft_codes; // memory that contains all the code ffts + unsigned int d_vector_length; // number of samples incluing padding and number of ms + unsigned int d_nsamples; // number of samples not including padding + unsigned int d_select_queue; // queue selection + std::string d_device_name; // HW device name + unsigned int d_doppler_max; // max doppler + unsigned int d_doppler_step; // doppler step // FPGA private functions unsigned fpga_acquisition_test_register(unsigned writeval); @@ -104,5 +105,4 @@ private: }; - #endif /* GNSS_SDR_FPGA_MULTICORRELATOR_H_ */ diff --git a/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/lib/qa_utils.cc b/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/lib/qa_utils.cc index d947ebd94..c5b3f5262 100644 --- a/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/lib/qa_utils.cc +++ b/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/lib/qa_utils.cc @@ -32,20 +32,14 @@ #include #include #include -#include #include #include #include #include -float uniform() -{ - // Seed with a real random value, if available - std::random_device r; - std::default_random_engine e1(r()); - std::uniform_real_distribution<> uniform_dist(-1, 1); - return static_cast(uniform_dist(e1)); +float uniform() { + return 2.0f * ((float) rand() / RAND_MAX - 0.5f); // uniformly (-1, 1) } template @@ -57,9 +51,6 @@ void random_floats (t *buf, unsigned n) void load_random_data(void *data, volk_gnsssdr_type_t type, unsigned int n) { - std::random_device r; - std::default_random_engine e1(r()); - std::uniform_real_distribution uniform_dist(-1, 1); if(type.is_complex) n *= 2; if(type.is_float) { @@ -72,7 +63,7 @@ void load_random_data(void *data, volk_gnsssdr_type_t type, unsigned int n) if(type.is_signed) int_max /= 2.0; for(unsigned int i = 0; i < n; i++) { - float scaled_rand = static_cast(uniform_dist(e1)) * int_max; + float scaled_rand = (((float) (rand() - (RAND_MAX/2))) / static_cast((RAND_MAX/2))) * int_max; //man i really don't know how to do this in a more clever way, you have to cast down at some point switch(type.size) { diff --git a/src/algorithms/tracking/adapters/gps_l1_ca_dll_pll_c_aid_tracking_fpga.cc b/src/algorithms/tracking/adapters/gps_l1_ca_dll_pll_c_aid_tracking_fpga.cc index e55e62b97..7723b373e 100644 --- a/src/algorithms/tracking/adapters/gps_l1_ca_dll_pll_c_aid_tracking_fpga.cc +++ b/src/algorithms/tracking/adapters/gps_l1_ca_dll_pll_c_aid_tracking_fpga.cc @@ -36,19 +36,17 @@ * ------------------------------------------------------------------------- */ - #include "gps_l1_ca_dll_pll_c_aid_tracking_fpga.h" #include #include "GPS_L1_CA.h" #include "configuration_interface.h" - using google::LogMessage; GpsL1CaDllPllCAidTrackingFpga::GpsL1CaDllPllCAidTrackingFpga( ConfigurationInterface* configuration, std::string role, unsigned int in_streams, unsigned int out_streams) : - role_(role), in_streams_(in_streams), out_streams_(out_streams) + role_(role), in_streams_(in_streams), out_streams_(out_streams) { DLOG(INFO) << "role " << role; //################# CONFIGURATION PARAMETERS ######################## @@ -66,70 +64,62 @@ GpsL1CaDllPllCAidTrackingFpga::GpsL1CaDllPllCAidTrackingFpga( std::string device_name; unsigned int device_base; - - - item_type_ = configuration->property(role + ".item_type", default_item_type); + item_type_ = configuration->property(role + ".item_type", + default_item_type); fs_in = configuration->property("GNSS-SDR.internal_fs_hz", 2048000); f_if = configuration->property(role + ".if", 0); dump = configuration->property(role + ".dump", false); pll_bw_hz = configuration->property(role + ".pll_bw_hz", 50.0); dll_bw_hz = configuration->property(role + ".dll_bw_hz", 2.0); - pll_bw_narrow_hz = configuration->property(role + ".pll_bw_narrow_hz", 20.0); + pll_bw_narrow_hz = configuration->property(role + ".pll_bw_narrow_hz", + 20.0); dll_bw_narrow_hz = configuration->property(role + ".dll_bw_narrow_hz", 2.0); int extend_correlation_ms; - extend_correlation_ms = configuration->property(role + ".extend_correlation_ms", 1); + extend_correlation_ms = configuration->property( + role + ".extend_correlation_ms", 1); - early_late_space_chips = configuration->property(role + ".early_late_space_chips", 0.5); + early_late_space_chips = configuration->property( + role + ".early_late_space_chips", 0.5); std::string default_dump_filename = "./track_ch"; dump_filename = configuration->property(role + ".dump_filename", default_dump_filename); std::string default_device_name = "/dev/uio"; - device_name = configuration->property(role + ".devicename", default_device_name); + device_name = configuration->property(role + ".devicename", + default_device_name); device_base = configuration->property(role + ".device_base", 1); - vector_length = std::round(fs_in / (GPS_L1_CA_CODE_RATE_HZ / GPS_L1_CA_CODE_LENGTH_CHIPS)); + vector_length = std::round( + fs_in / (GPS_L1_CA_CODE_RATE_HZ / GPS_L1_CA_CODE_LENGTH_CHIPS)); //################# MAKE TRACKING GNURadio object ################### - if(item_type_.compare("cshort") == 0) + if (item_type_.compare("cshort") == 0) { item_size_ = sizeof(lv_16sc_t); tracking_fpga_sc = gps_l1_ca_dll_pll_c_aid_make_tracking_fpga_sc( - f_if, - fs_in, - vector_length, - dump, - dump_filename, - pll_bw_hz, - dll_bw_hz, - pll_bw_narrow_hz, - dll_bw_narrow_hz, - extend_correlation_ms, - early_late_space_chips, - device_name, - device_base - ); - DLOG(INFO) << "tracking(" << tracking_fpga_sc->unique_id() << ")"; + f_if, fs_in, vector_length, dump, dump_filename, pll_bw_hz, + dll_bw_hz, pll_bw_narrow_hz, dll_bw_narrow_hz, + extend_correlation_ms, early_late_space_chips, device_name, + device_base); + DLOG(INFO) << "tracking(" << tracking_fpga_sc->unique_id() + << ")"; } else { item_size_ = sizeof(lv_16sc_t); // LOG(WARNING) << item_type_ << " unknown tracking item type"; - LOG(WARNING) << item_type_ << " the tracking item type for the FPGA tracking test has to be cshort"; + LOG(WARNING) << item_type_ + << " the tracking item type for the FPGA tracking test has to be cshort"; } - - channel_ = 0; } - GpsL1CaDllPllCAidTrackingFpga::~GpsL1CaDllPllCAidTrackingFpga() { LOG(INFO) << "gspl1cadllpllcaidtrackingfpga destructor called"; } - void GpsL1CaDllPllCAidTrackingFpga::start_tracking() { @@ -140,11 +130,11 @@ void GpsL1CaDllPllCAidTrackingFpga::start_tracking() else { // LOG(WARNING) << item_type_ << " unknown tracking item type"; - LOG(WARNING) << item_type_ << " the tracking item type for the FPGA tracking test has to be cshort"; + LOG(WARNING) << item_type_ + << " the tracking item type for the FPGA tracking test has to be cshort"; } } - /* * Set tracking channel unique ID */ @@ -159,12 +149,13 @@ void GpsL1CaDllPllCAidTrackingFpga::set_channel(unsigned int channel) else { // LOG(WARNING) << item_type_ << " unknown tracking item type"; - LOG(WARNING) << item_type_ << " the tracking item type for the FPGA tracking test has to be cshort"; + LOG(WARNING) << item_type_ + << " the tracking item type for the FPGA tracking test has to be cshort"; } } - -void GpsL1CaDllPllCAidTrackingFpga::set_gnss_synchro(Gnss_Synchro* p_gnss_synchro) +void GpsL1CaDllPllCAidTrackingFpga::set_gnss_synchro( + Gnss_Synchro* p_gnss_synchro) { if (item_type_.compare("cshort") == 0) { @@ -173,25 +164,27 @@ void GpsL1CaDllPllCAidTrackingFpga::set_gnss_synchro(Gnss_Synchro* p_gnss_synchr else { // LOG(WARNING) << item_type_ << " unknown tracking item type"; - LOG(WARNING) << item_type_ << " the tracking item type for the FPGA tracking test has to be cshort"; + LOG(WARNING) << item_type_ + << " the tracking item type for the FPGA tracking test has to be cshort"; } } - void GpsL1CaDllPllCAidTrackingFpga::connect(gr::top_block_sptr top_block) { - if(top_block) { /* top_block is not null */}; + if (top_block) + { /* top_block is not null */ + }; //nothing to connect, now the tracking uses gr_sync_decimator } - void GpsL1CaDllPllCAidTrackingFpga::disconnect(gr::top_block_sptr top_block) { - if(top_block) { /* top_block is not null */}; + if (top_block) + { /* top_block is not null */ + }; //nothing to disconnect, now the tracking uses gr_sync_decimator } - // CONVERT TO SOURCE gr::basic_block_sptr GpsL1CaDllPllCAidTrackingFpga::get_left_block() { @@ -202,12 +195,12 @@ gr::basic_block_sptr GpsL1CaDllPllCAidTrackingFpga::get_left_block() else { //LOG(WARNING) << item_type_ << " unknown tracking item type"; - LOG(WARNING) << item_type_ << " the tracking item type for the FPGA tracking test has to be cshort"; + LOG(WARNING) << item_type_ + << " the tracking item type for the FPGA tracking test has to be cshort"; return nullptr; } } - gr::basic_block_sptr GpsL1CaDllPllCAidTrackingFpga::get_right_block() { if (item_type_.compare("cshort") == 0) @@ -217,7 +210,8 @@ gr::basic_block_sptr GpsL1CaDllPllCAidTrackingFpga::get_right_block() else { //LOG(WARNING) << item_type_ << " unknown tracking item type"; - LOG(WARNING) << item_type_ << " the tracking item type for the FPGA tracking test has to be cshort"; + LOG(WARNING) << item_type_ + << " the tracking item type for the FPGA tracking test has to be cshort"; return nullptr; } } @@ -225,7 +219,7 @@ gr::basic_block_sptr GpsL1CaDllPllCAidTrackingFpga::get_right_block() void GpsL1CaDllPllCAidTrackingFpga::reset(void) { - tracking_fpga_sc->reset(); + tracking_fpga_sc->reset(); } diff --git a/src/algorithms/tracking/adapters/gps_l1_ca_dll_pll_c_aid_tracking_fpga.h b/src/algorithms/tracking/adapters/gps_l1_ca_dll_pll_c_aid_tracking_fpga.h index bf7199967..6394d1a2c 100644 --- a/src/algorithms/tracking/adapters/gps_l1_ca_dll_pll_c_aid_tracking_fpga.h +++ b/src/algorithms/tracking/adapters/gps_l1_ca_dll_pll_c_aid_tracking_fpga.h @@ -43,7 +43,6 @@ #include "tracking_interface.h" #include "gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.h" - class ConfigurationInterface; /*! @@ -53,8 +52,7 @@ class GpsL1CaDllPllCAidTrackingFpga : public TrackingInterface { public: GpsL1CaDllPllCAidTrackingFpga(ConfigurationInterface* configuration, - std::string role, - unsigned int in_streams, + std::string role, unsigned int in_streams, unsigned int out_streams); virtual ~GpsL1CaDllPllCAidTrackingFpga(); @@ -80,7 +78,6 @@ public: gr::basic_block_sptr get_left_block(); gr::basic_block_sptr get_right_block(); - /*! * \brief Set tracking channel unique ID */ @@ -92,7 +89,6 @@ public: */ void set_gnss_synchro(Gnss_Synchro* p_gnss_synchro); - void start_tracking(); void reset(void); diff --git a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc index 1b6ef7eba..deb8758cb 100644 --- a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc +++ b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc @@ -47,7 +47,6 @@ #include "GPS_L1_CA.h" #include "control_message_factory.h" - /*! * \todo Include in definition header file */ @@ -56,34 +55,28 @@ #define MAXIMUM_LOCK_FAIL_COUNTER 50 #define CARRIER_LOCK_THRESHOLD 0.85 - using google::LogMessage; -gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc_sptr -gps_l1_ca_dll_pll_c_aid_make_tracking_fpga_sc( - long if_freq, - long fs_in, - unsigned int vector_length, - bool dump, - std::string dump_filename, - float pll_bw_hz, - float dll_bw_hz, - float pll_bw_narrow_hz, - float dll_bw_narrow_hz, - int extend_correlation_ms, - float early_late_space_chips, - std::string device_name, - unsigned int device_base) +gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc_sptr gps_l1_ca_dll_pll_c_aid_make_tracking_fpga_sc( + long if_freq, long fs_in, unsigned int vector_length, bool dump, + std::string dump_filename, float pll_bw_hz, float dll_bw_hz, + float pll_bw_narrow_hz, float dll_bw_narrow_hz, + int extend_correlation_ms, float early_late_space_chips, + std::string device_name, unsigned int device_base) { - return gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc_sptr(new gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc(if_freq, - fs_in, vector_length, dump, dump_filename, pll_bw_hz, dll_bw_hz, pll_bw_narrow_hz, dll_bw_narrow_hz, extend_correlation_ms, early_late_space_chips, - device_name, device_base)); + return gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc_sptr( + new gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc(if_freq, fs_in, + vector_length, dump, dump_filename, pll_bw_hz, dll_bw_hz, + pll_bw_narrow_hz, dll_bw_narrow_hz, extend_correlation_ms, + early_late_space_chips, device_name, device_base)); } - -void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::msg_handler_preamble_index(pmt::pmt_t msg) +void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::msg_handler_preamble_index( + pmt::pmt_t msg) { - DLOG(INFO) << "Extended correlation enabled for Tracking CH " << d_channel << ": Satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN); + DLOG(INFO) << "Extended correlation enabled for Tracking CH " + << d_channel << ": Satellite " + << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN); if (d_enable_extended_integration == false) //avoid re-setting preamble indicator { d_preamble_timestamp_s = pmt::to_double(msg); @@ -93,30 +86,23 @@ void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::msg_handler_preamble_index(pmt::p } gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc( - long if_freq, - long fs_in, - unsigned int vector_length, - bool dump, - std::string dump_filename, - float pll_bw_hz, - float dll_bw_hz, - float pll_bw_narrow_hz, - float dll_bw_narrow_hz, - int extend_correlation_ms, - float early_late_space_chips, - std::string device_name, - unsigned int device_base) : - gr::block("gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc", gr::io_signature::make(0, 0, sizeof(lv_16sc_t)), + long if_freq, long fs_in, unsigned int vector_length, bool dump, + std::string dump_filename, float pll_bw_hz, float dll_bw_hz, + float pll_bw_narrow_hz, float dll_bw_narrow_hz, + int extend_correlation_ms, float early_late_space_chips, + std::string device_name, unsigned int device_base) : + gr::block("gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc", + gr::io_signature::make(0, 0, sizeof(lv_16sc_t)), gr::io_signature::make(1, 1, sizeof(Gnss_Synchro))) { - - // Telemetry bit synchronization message port input this->message_port_register_in(pmt::mp("preamble_timestamp_s")); this->set_msg_handler(pmt::mp("preamble_timestamp_s"), - boost::bind(&gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::msg_handler_preamble_index, this, _1)); + boost::bind( + &gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::msg_handler_preamble_index, + this, _1)); this->message_port_register_out(pmt::mp("events")); // initialize internal vars d_dump = dump; @@ -140,26 +126,34 @@ gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::gps_l1_ca_dll_pll_c_aid_tracking_fpga_ // Initialization of local code replica // Get space for a vector with the C/A code replica sampled 1x/chip - d_ca_code = static_cast(volk_gnsssdr_malloc(static_cast(GPS_L1_CA_CODE_LENGTH_CHIPS) * sizeof(gr_complex), volk_gnsssdr_get_alignment())); - d_ca_code_16sc = static_cast(volk_gnsssdr_malloc(static_cast(GPS_L1_CA_CODE_LENGTH_CHIPS) * sizeof(lv_16sc_t), volk_gnsssdr_get_alignment())); + d_ca_code = static_cast(volk_gnsssdr_malloc( + static_cast(GPS_L1_CA_CODE_LENGTH_CHIPS) * sizeof(gr_complex), + volk_gnsssdr_get_alignment())); + d_ca_code_16sc = static_cast(volk_gnsssdr_malloc( + static_cast(GPS_L1_CA_CODE_LENGTH_CHIPS) * sizeof(lv_16sc_t), + volk_gnsssdr_get_alignment())); // correlator outputs (scalar) d_n_correlator_taps = 3; // Early, Prompt, and Late - d_correlator_outs_16sc = static_cast(volk_gnsssdr_malloc(d_n_correlator_taps*sizeof(lv_16sc_t), volk_gnsssdr_get_alignment())); + d_correlator_outs_16sc = static_cast(volk_gnsssdr_malloc( + d_n_correlator_taps * sizeof(lv_16sc_t), + volk_gnsssdr_get_alignment())); for (int n = 0; n < d_n_correlator_taps; n++) { - d_correlator_outs_16sc[n] = lv_cmake(0,0); + d_correlator_outs_16sc[n] = lv_cmake(0, 0); } - d_local_code_shift_chips = static_cast(volk_gnsssdr_malloc(d_n_correlator_taps*sizeof(float), volk_gnsssdr_get_alignment())); + d_local_code_shift_chips = static_cast(volk_gnsssdr_malloc( + d_n_correlator_taps * sizeof(float), volk_gnsssdr_get_alignment())); // Set TAPs delay values [chips] - d_local_code_shift_chips[0] = - d_early_late_spc_chips; + d_local_code_shift_chips[0] = -d_early_late_spc_chips; d_local_code_shift_chips[1] = 0.0; d_local_code_shift_chips[2] = d_early_late_spc_chips; // create multicorrelator class - multicorrelator_fpga_8sc= std::make_shared(d_n_correlator_taps, device_name, device_base); + multicorrelator_fpga_8sc = std::make_shared < fpga_multicorrelator_8sc + > (d_n_correlator_taps, device_name, device_base); //--- Perform initializations ------------------------------ // define initial code frequency basis of NCO @@ -209,10 +203,8 @@ gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::gps_l1_ca_dll_pll_c_aid_tracking_fpga_ d_carr_phase_error_secs_Ti = 0.0; //set_min_output_buffer((long int)300); - } - void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::start_tracking() { /* @@ -224,54 +216,71 @@ void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::start_tracking() long int acq_trk_diff_samples; double acq_trk_diff_seconds; - acq_trk_diff_samples = static_cast(d_sample_counter) - static_cast(d_acq_sample_stamp);//-d_vector_length; - DLOG(INFO) << "Number of samples between Acquisition and Tracking =" << acq_trk_diff_samples; - acq_trk_diff_seconds = static_cast(acq_trk_diff_samples) / static_cast(d_fs_in); + acq_trk_diff_samples = static_cast(d_sample_counter) + - static_cast(d_acq_sample_stamp); //-d_vector_length; + DLOG(INFO) << "Number of samples between Acquisition and Tracking =" + << acq_trk_diff_samples; + acq_trk_diff_seconds = static_cast(acq_trk_diff_samples) + / static_cast(d_fs_in); // Doppler effect // Fd=(C/(C+Vr))*F - double radial_velocity = (GPS_L1_FREQ_HZ + d_acq_carrier_doppler_hz) / GPS_L1_FREQ_HZ; + double radial_velocity = (GPS_L1_FREQ_HZ + d_acq_carrier_doppler_hz) + / GPS_L1_FREQ_HZ; // new chip and prn sequence periods based on acq Doppler double T_chip_mod_seconds; double T_prn_mod_seconds; double T_prn_mod_samples; d_code_freq_chips = radial_velocity * GPS_L1_CA_CODE_RATE_HZ; - d_code_phase_step_chips = static_cast(d_code_freq_chips) / static_cast(d_fs_in); + d_code_phase_step_chips = static_cast(d_code_freq_chips) + / static_cast(d_fs_in); T_chip_mod_seconds = 1.0 / d_code_freq_chips; T_prn_mod_seconds = T_chip_mod_seconds * GPS_L1_CA_CODE_LENGTH_CHIPS; T_prn_mod_samples = T_prn_mod_seconds * static_cast(d_fs_in); d_correlation_length_samples = round(T_prn_mod_samples); - double T_prn_true_seconds = GPS_L1_CA_CODE_LENGTH_CHIPS / GPS_L1_CA_CODE_RATE_HZ; - double T_prn_true_samples = T_prn_true_seconds * static_cast(d_fs_in); + double T_prn_true_seconds = GPS_L1_CA_CODE_LENGTH_CHIPS + / GPS_L1_CA_CODE_RATE_HZ; + double T_prn_true_samples = T_prn_true_seconds + * static_cast(d_fs_in); double T_prn_diff_seconds = T_prn_true_seconds - T_prn_mod_seconds; double N_prn_diff = acq_trk_diff_seconds / T_prn_true_seconds; double corrected_acq_phase_samples, delay_correction_samples; - corrected_acq_phase_samples = fmod((d_acq_code_phase_samples + T_prn_diff_seconds * N_prn_diff * static_cast(d_fs_in)), T_prn_true_samples); + corrected_acq_phase_samples = fmod( + (d_acq_code_phase_samples + + T_prn_diff_seconds * N_prn_diff + * static_cast(d_fs_in)), + T_prn_true_samples); if (corrected_acq_phase_samples < 0) { - corrected_acq_phase_samples = T_prn_mod_samples + corrected_acq_phase_samples; + corrected_acq_phase_samples = T_prn_mod_samples + + corrected_acq_phase_samples; } - delay_correction_samples = d_acq_code_phase_samples - corrected_acq_phase_samples; + delay_correction_samples = d_acq_code_phase_samples + - corrected_acq_phase_samples; d_acq_code_phase_samples = corrected_acq_phase_samples; d_carrier_doppler_hz = d_acq_carrier_doppler_hz; - d_carrier_phase_step_rad = GPS_TWO_PI * d_carrier_doppler_hz / static_cast(d_fs_in); + d_carrier_phase_step_rad = GPS_TWO_PI * d_carrier_doppler_hz + / static_cast(d_fs_in); // DLL/PLL filter initialization d_carrier_loop_filter.initialize(d_acq_carrier_doppler_hz); // The carrier loop filter implements the Doppler accumulator - d_code_loop_filter.initialize(); // initialize the code filter + d_code_loop_filter.initialize(); // initialize the code filter // generate local reference ALWAYS starting at chip 1 (1 sample per chip) gps_l1_ca_code_gen_complex(d_ca_code, d_acquisition_gnss_synchro->PRN, 0); - volk_gnsssdr_32fc_convert_16ic(d_ca_code_16sc, d_ca_code, static_cast(GPS_L1_CA_CODE_LENGTH_CHIPS)); + volk_gnsssdr_32fc_convert_16ic(d_ca_code_16sc, d_ca_code, + static_cast(GPS_L1_CA_CODE_LENGTH_CHIPS)); - multicorrelator_fpga_8sc->set_local_code_and_taps(static_cast(GPS_L1_CA_CODE_LENGTH_CHIPS), d_ca_code_16sc, d_local_code_shift_chips); + multicorrelator_fpga_8sc->set_local_code_and_taps( + static_cast(GPS_L1_CA_CODE_LENGTH_CHIPS), d_ca_code_16sc, + d_local_code_shift_chips); for (int n = 0; n < d_n_correlator_taps; n++) { - d_correlator_outs_16sc[n] = lv_16sc_t(0,0); + d_correlator_outs_16sc[n] = lv_16sc_t(0, 0); } d_carrier_lock_fail_counter = 0; @@ -283,11 +292,15 @@ void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::start_tracking() d_code_phase_samples = d_acq_code_phase_samples; std::string sys_ = &d_acquisition_gnss_synchro->System; - sys = sys_.substr(0,1); + sys = sys_.substr(0, 1); // DEBUG OUTPUT - std::cout << "Tracking start on channel " << d_channel << " for satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) << std::endl; - LOG(INFO) << "Starting tracking of satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) << " on channel " << d_channel; + std::cout << "Tracking start on channel " << d_channel << " for satellite " + << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) + << std::endl; + LOG(INFO) << "Starting tracking of satellite " + << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) + << " on channel " << d_channel; // enable tracking d_pull_in = true; @@ -303,7 +316,6 @@ void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::start_tracking() << " PULL-IN Code Phase [samples]=" << d_acq_code_phase_samples; } - gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::~gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc() { d_dump_file.close(); @@ -317,10 +329,11 @@ gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::~gps_l1_ca_dll_pll_c_aid_tracking_fpga multicorrelator_fpga_8sc->free(); } - - -int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work (int noutput_items __attribute__((unused)), gr_vector_int &ninput_items __attribute__((unused)), - gr_vector_const_void_star &input_items, gr_vector_void_star &output_items) +int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work( + int noutput_items __attribute__((unused)), + gr_vector_int &ninput_items __attribute__((unused)), + gr_vector_const_void_star &input_items, + gr_vector_void_star &output_items) { // samples offset @@ -335,7 +348,7 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work (int noutput_items __ double code_error_filt_secs_Ti = 0.0; double CURRENT_INTEGRATION_TIME_S = 0.0; double CORRECTED_INTEGRATION_TIME_S = 0.0; - + if (d_enable_tracking == true) { // Fill the acquisition data @@ -345,31 +358,43 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work (int noutput_items __ { double acq_trk_shif_correction_samples; int acq_to_trk_delay_samples; - acq_to_trk_delay_samples = d_sample_counter - d_acq_sample_stamp; - acq_trk_shif_correction_samples = d_correlation_length_samples - fmod(static_cast(acq_to_trk_delay_samples), static_cast(d_correlation_length_samples)); - samples_offset = round(d_acq_code_phase_samples + acq_trk_shif_correction_samples); - current_synchro_data.Tracking_sample_counter = d_sample_counter + samples_offset; + acq_to_trk_delay_samples = d_sample_counter + - d_acq_sample_stamp; + acq_trk_shif_correction_samples = + d_correlation_length_samples + - fmod( + static_cast(acq_to_trk_delay_samples), + static_cast(d_correlation_length_samples)); + samples_offset = round( + d_acq_code_phase_samples + + acq_trk_shif_correction_samples); + current_synchro_data.Tracking_sample_counter = + d_sample_counter + samples_offset; d_sample_counter += samples_offset; // count for the processed samples d_pull_in = false; - d_acc_carrier_phase_cycles -= d_carrier_phase_step_rad * samples_offset / GPS_TWO_PI; - current_synchro_data.Carrier_phase_rads = d_acc_carrier_phase_cycles * GPS_TWO_PI; - current_synchro_data.Carrier_Doppler_hz = d_carrier_doppler_hz; - current_synchro_data.fs=d_fs_in; + d_acc_carrier_phase_cycles -= d_carrier_phase_step_rad + * samples_offset / GPS_TWO_PI; + current_synchro_data.Carrier_phase_rads = + d_acc_carrier_phase_cycles * GPS_TWO_PI; + current_synchro_data.Carrier_Doppler_hz = + d_carrier_doppler_hz; + current_synchro_data.fs = d_fs_in; *out[0] = current_synchro_data; //consume_each(samples_offset); // shift input to perform alignment with local replica - multicorrelator_fpga_8sc->set_initial_sample(samples_offset); + multicorrelator_fpga_8sc->set_initial_sample( + samples_offset); return 1; } // ################# CARRIER WIPEOFF AND CORRELATORS ############################## // perform carrier wipe-off and compute Early, Prompt and Late correlation - multicorrelator_fpga_8sc->set_output_vectors(d_correlator_outs_16sc); - multicorrelator_fpga_8sc->Carrier_wipeoff_multicorrelator_resampler(d_rem_carrier_phase_rad, - d_carrier_phase_step_rad, - d_rem_code_phase_chips, - d_code_phase_step_chips, - d_correlation_length_samples); + multicorrelator_fpga_8sc->set_output_vectors( + d_correlator_outs_16sc); + multicorrelator_fpga_8sc->Carrier_wipeoff_multicorrelator_resampler( + d_rem_carrier_phase_rad, d_carrier_phase_step_rad, + d_rem_code_phase_chips, d_code_phase_step_chips, + d_correlation_length_samples); // ####### coherent intergration extension // keep the last symbols @@ -377,7 +402,6 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work (int noutput_items __ d_P_history.push_back(d_correlator_outs_16sc[1]); // save prompt output d_L_history.push_back(d_correlator_outs_16sc[2]); // save late output - if (static_cast(d_P_history.size()) > d_extend_correlation_ms) { d_E_history.pop_front(); @@ -388,60 +412,108 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work (int noutput_items __ bool enable_dll_pll; if (d_enable_extended_integration == true) { - long int symbol_diff = round(1000.0 * ((static_cast(d_sample_counter) + d_rem_code_phase_samples) / static_cast(d_fs_in) - d_preamble_timestamp_s)); - if (symbol_diff > 0 and symbol_diff % d_extend_correlation_ms == 0) + long int symbol_diff = round( + 1000.0 + * ((static_cast(d_sample_counter) + + d_rem_code_phase_samples) + / static_cast(d_fs_in) + - d_preamble_timestamp_s)); + if (symbol_diff > 0 + and symbol_diff % d_extend_correlation_ms == 0) { // compute coherent integration and enable tracking loop // perform coherent integration using correlator output history // std::cout<<"##### RESET COHERENT INTEGRATION ####"<PRN) - << " pll_bw = " << d_pll_bw_hz << " [Hz], pll_narrow_bw = " << d_pll_bw_narrow_hz << " [Hz]" << std::endl - << " dll_bw = " << d_dll_bw_hz << " [Hz], dll_narrow_bw = " << d_dll_bw_narrow_hz << " [Hz]" << std::endl; + std::cout << "Enabled " + << d_extend_correlation_ms + << " [ms] extended correlator for CH " + << d_channel << " : Satellite " + << Gnss_Satellite(systemName[sys], + d_acquisition_gnss_synchro->PRN) + << " pll_bw = " << d_pll_bw_hz + << " [Hz], pll_narrow_bw = " + << d_pll_bw_narrow_hz << " [Hz]" + << std::endl << " dll_bw = " + << d_dll_bw_hz + << " [Hz], dll_narrow_bw = " + << d_dll_bw_narrow_hz << " [Hz]" + << std::endl; } // UPDATE INTEGRATION TIME - CURRENT_INTEGRATION_TIME_S = static_cast(d_extend_correlation_ms) * GPS_L1_CA_CODE_PERIOD; + CURRENT_INTEGRATION_TIME_S = + static_cast(d_extend_correlation_ms) + * GPS_L1_CA_CODE_PERIOD; enable_dll_pll = true; } else { - if(d_preamble_synchronized == true) + if (d_preamble_synchronized == true) { // continue extended coherent correlation // Compute the next buffer length based on the period of the PRN sequence and the code phase error estimation - double T_chip_seconds = 1.0 / d_code_freq_chips; - double T_prn_seconds = T_chip_seconds * GPS_L1_CA_CODE_LENGTH_CHIPS; - double T_prn_samples = T_prn_seconds * static_cast(d_fs_in); + double T_chip_seconds = 1.0 + / d_code_freq_chips; + double T_prn_seconds = T_chip_seconds + * GPS_L1_CA_CODE_LENGTH_CHIPS; + double T_prn_samples = T_prn_seconds + * static_cast(d_fs_in); int K_prn_samples = round(T_prn_samples); - double K_T_prn_error_samples = K_prn_samples - T_prn_samples; + double K_T_prn_error_samples = K_prn_samples + - T_prn_samples; - d_rem_code_phase_samples = d_rem_code_phase_samples - K_T_prn_error_samples; - d_rem_code_phase_integer_samples = round(d_rem_code_phase_samples); // round to a discrete number of samples - d_correlation_length_samples = K_prn_samples + d_rem_code_phase_integer_samples; - d_rem_code_phase_samples = d_rem_code_phase_samples - d_rem_code_phase_integer_samples; + d_rem_code_phase_samples = + d_rem_code_phase_samples + - K_T_prn_error_samples; + d_rem_code_phase_integer_samples = round( + d_rem_code_phase_samples); // round to a discrete number of samples + d_correlation_length_samples = K_prn_samples + + d_rem_code_phase_integer_samples; + d_rem_code_phase_samples = + d_rem_code_phase_samples + - d_rem_code_phase_integer_samples; // code phase step (Code resampler phase increment per sample) [chips/sample] - d_code_phase_step_chips = d_code_freq_chips / static_cast(d_fs_in); + d_code_phase_step_chips = d_code_freq_chips + / static_cast(d_fs_in); // remnant code phase [chips] - d_rem_code_phase_chips = d_rem_code_phase_samples * (d_code_freq_chips / static_cast(d_fs_in)); - d_rem_carrier_phase_rad = fmod(d_rem_carrier_phase_rad + d_carrier_phase_step_rad * static_cast(d_correlation_length_samples), GPS_TWO_PI); + d_rem_code_phase_chips = + d_rem_code_phase_samples + * (d_code_freq_chips + / static_cast(d_fs_in)); + d_rem_carrier_phase_rad = + fmod( + d_rem_carrier_phase_rad + + d_carrier_phase_step_rad + * static_cast(d_correlation_length_samples), + GPS_TWO_PI); // UPDATE ACCUMULATED CARRIER PHASE - CORRECTED_INTEGRATION_TIME_S = (static_cast(d_correlation_length_samples) / static_cast(d_fs_in)); - d_acc_carrier_phase_cycles -= d_carrier_phase_step_rad * d_correlation_length_samples / GPS_TWO_PI; + CORRECTED_INTEGRATION_TIME_S = + (static_cast(d_correlation_length_samples) + / static_cast(d_fs_in)); + d_acc_carrier_phase_cycles -= + d_carrier_phase_step_rad + * d_correlation_length_samples + / GPS_TWO_PI; // disable tracking loop and inform telemetry decoder enable_dll_pll = false; @@ -450,7 +522,9 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work (int noutput_items __ { // perform basic (1ms) correlation // UPDATE INTEGRATION TIME - CURRENT_INTEGRATION_TIME_S = static_cast(d_correlation_length_samples) / static_cast(d_fs_in); + CURRENT_INTEGRATION_TIME_S = + static_cast(d_correlation_length_samples) + / static_cast(d_fs_in); enable_dll_pll = true; } } @@ -458,7 +532,9 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work (int noutput_items __ else { // UPDATE INTEGRATION TIME - CURRENT_INTEGRATION_TIME_S = static_cast(d_correlation_length_samples) / static_cast(d_fs_in); + CURRENT_INTEGRATION_TIME_S = + static_cast(d_correlation_length_samples) + / static_cast(d_fs_in); enable_dll_pll = true; } @@ -466,102 +542,160 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work (int noutput_items __ { // ################## PLL ########################################################## // Update PLL discriminator [rads/Ti -> Secs/Ti] - d_carr_phase_error_secs_Ti = pll_cloop_two_quadrant_atan(std::complex(d_correlator_outs_16sc[1].real(),d_correlator_outs_16sc[1].imag())) / GPS_TWO_PI; //prompt output + d_carr_phase_error_secs_Ti = pll_cloop_two_quadrant_atan( + std::complex( + d_correlator_outs_16sc[1].real(), + d_correlator_outs_16sc[1].imag())) + / GPS_TWO_PI; //prompt output // Carrier discriminator filter // NOTICE: The carrier loop filter includes the Carrier Doppler accumulator, as described in Kaplan // Input [s/Ti] -> output [Hz] - d_carrier_doppler_hz = d_carrier_loop_filter.get_carrier_error(0.0, d_carr_phase_error_secs_Ti, CURRENT_INTEGRATION_TIME_S); + d_carrier_doppler_hz = + d_carrier_loop_filter.get_carrier_error(0.0, + d_carr_phase_error_secs_Ti, + CURRENT_INTEGRATION_TIME_S); // PLL to DLL assistance [Secs/Ti] - d_pll_to_dll_assist_secs_Ti = (d_carrier_doppler_hz * CURRENT_INTEGRATION_TIME_S) / GPS_L1_FREQ_HZ; + d_pll_to_dll_assist_secs_Ti = (d_carrier_doppler_hz + * CURRENT_INTEGRATION_TIME_S) / GPS_L1_FREQ_HZ; // code Doppler frequency update - d_code_freq_chips = GPS_L1_CA_CODE_RATE_HZ + ((d_carrier_doppler_hz * GPS_L1_CA_CODE_RATE_HZ) / GPS_L1_FREQ_HZ); + d_code_freq_chips = GPS_L1_CA_CODE_RATE_HZ + + ((d_carrier_doppler_hz * GPS_L1_CA_CODE_RATE_HZ) + / GPS_L1_FREQ_HZ); // ################## DLL ########################################################## // DLL discriminator - d_code_error_chips_Ti = dll_nc_e_minus_l_normalized(std::complex(d_correlator_outs_16sc[0].real(),d_correlator_outs_16sc[0].imag()), std::complex(d_correlator_outs_16sc[2].real(),d_correlator_outs_16sc[2].imag())); // [chips/Ti] //early and late + d_code_error_chips_Ti = dll_nc_e_minus_l_normalized( + std::complex( + d_correlator_outs_16sc[0].real(), + d_correlator_outs_16sc[0].imag()), + std::complex( + d_correlator_outs_16sc[2].real(), + d_correlator_outs_16sc[2].imag())); // [chips/Ti] //early and late // Code discriminator filter - d_code_error_filt_chips_s = d_code_loop_filter.get_code_nco(d_code_error_chips_Ti); // input [chips/Ti] -> output [chips/second] - d_code_error_filt_chips_Ti = d_code_error_filt_chips_s * CURRENT_INTEGRATION_TIME_S; - code_error_filt_secs_Ti = d_code_error_filt_chips_Ti / d_code_freq_chips; // [s/Ti] + d_code_error_filt_chips_s = d_code_loop_filter.get_code_nco( + d_code_error_chips_Ti); // input [chips/Ti] -> output [chips/second] + d_code_error_filt_chips_Ti = d_code_error_filt_chips_s + * CURRENT_INTEGRATION_TIME_S; + code_error_filt_secs_Ti = d_code_error_filt_chips_Ti + / d_code_freq_chips; // [s/Ti] // ################## CARRIER AND CODE NCO BUFFER ALIGNEMENT ####################### // keep alignment parameters for the next input buffer // Compute the next buffer length based in the new period of the PRN sequence and the code phase error estimation double T_chip_seconds = 1.0 / d_code_freq_chips; - double T_prn_seconds = T_chip_seconds * GPS_L1_CA_CODE_LENGTH_CHIPS; - double T_prn_samples = T_prn_seconds * static_cast(d_fs_in); + double T_prn_seconds = T_chip_seconds + * GPS_L1_CA_CODE_LENGTH_CHIPS; + double T_prn_samples = T_prn_seconds + * static_cast(d_fs_in); double K_prn_samples = round(T_prn_samples); - double K_T_prn_error_samples = K_prn_samples - T_prn_samples; + double K_T_prn_error_samples = K_prn_samples + - T_prn_samples; - d_rem_code_phase_samples = d_rem_code_phase_samples - K_T_prn_error_samples + code_error_filt_secs_Ti * static_cast(d_fs_in); //(code_error_filt_secs_Ti + d_pll_to_dll_assist_secs_Ti) * static_cast(d_fs_in); - d_rem_code_phase_integer_samples = round(d_rem_code_phase_samples); // round to a discrete number of samples - d_correlation_length_samples = K_prn_samples + d_rem_code_phase_integer_samples; - d_rem_code_phase_samples = d_rem_code_phase_samples - d_rem_code_phase_integer_samples; + d_rem_code_phase_samples = d_rem_code_phase_samples + - K_T_prn_error_samples + + code_error_filt_secs_Ti + * static_cast(d_fs_in); //(code_error_filt_secs_Ti + d_pll_to_dll_assist_secs_Ti) * static_cast(d_fs_in); + d_rem_code_phase_integer_samples = round( + d_rem_code_phase_samples); // round to a discrete number of samples + d_correlation_length_samples = K_prn_samples + + d_rem_code_phase_integer_samples; + d_rem_code_phase_samples = d_rem_code_phase_samples + - d_rem_code_phase_integer_samples; - //################### PLL COMMANDS ################################################# + //################### PLL COMMANDS ################################################# //carrier phase step (NCO phase increment per sample) [rads/sample] - d_carrier_phase_step_rad = GPS_TWO_PI * d_carrier_doppler_hz / static_cast(d_fs_in); - d_acc_carrier_phase_cycles -= d_carrier_phase_step_rad * d_correlation_length_samples / GPS_TWO_PI; + d_carrier_phase_step_rad = GPS_TWO_PI * d_carrier_doppler_hz + / static_cast(d_fs_in); + d_acc_carrier_phase_cycles -= d_carrier_phase_step_rad + * d_correlation_length_samples / GPS_TWO_PI; // UPDATE ACCUMULATED CARRIER PHASE - CORRECTED_INTEGRATION_TIME_S = (static_cast(d_correlation_length_samples) / static_cast(d_fs_in)); + CORRECTED_INTEGRATION_TIME_S = + (static_cast(d_correlation_length_samples) + / static_cast(d_fs_in)); //remnant carrier phase [rad] - d_rem_carrier_phase_rad = fmod(d_rem_carrier_phase_rad + GPS_TWO_PI * d_carrier_doppler_hz * CORRECTED_INTEGRATION_TIME_S, GPS_TWO_PI); + d_rem_carrier_phase_rad = fmod( + d_rem_carrier_phase_rad + + GPS_TWO_PI * d_carrier_doppler_hz + * CORRECTED_INTEGRATION_TIME_S, + GPS_TWO_PI); //################### DLL COMMANDS ################################################# //code phase step (Code resampler phase increment per sample) [chips/sample] - d_code_phase_step_chips = d_code_freq_chips / static_cast(d_fs_in); + d_code_phase_step_chips = d_code_freq_chips + / static_cast(d_fs_in); //remnant code phase [chips] - d_rem_code_phase_chips = d_rem_code_phase_samples * (d_code_freq_chips / static_cast(d_fs_in)); + d_rem_code_phase_chips = + d_rem_code_phase_samples + * (d_code_freq_chips + / static_cast(d_fs_in)); // ####### CN0 ESTIMATION AND LOCK DETECTORS ####################################### if (d_cn0_estimation_counter < CN0_ESTIMATION_SAMPLES) { // fill buffer with prompt correlator output values - d_Prompt_buffer[d_cn0_estimation_counter] = lv_cmake(static_cast(d_correlator_outs_16sc[1].real()), static_cast(d_correlator_outs_16sc[1].imag()) ); // prompt + d_Prompt_buffer[d_cn0_estimation_counter] = + lv_cmake( + static_cast(d_correlator_outs_16sc[1].real()), + static_cast(d_correlator_outs_16sc[1].imag())); // prompt d_cn0_estimation_counter++; } else { d_cn0_estimation_counter = 0; // Code lock indicator - d_CN0_SNV_dB_Hz = cn0_svn_estimator(d_Prompt_buffer, CN0_ESTIMATION_SAMPLES, d_fs_in, GPS_L1_CA_CODE_LENGTH_CHIPS); + d_CN0_SNV_dB_Hz = cn0_svn_estimator(d_Prompt_buffer, + CN0_ESTIMATION_SAMPLES, d_fs_in, + GPS_L1_CA_CODE_LENGTH_CHIPS); // Carrier lock indicator - d_carrier_lock_test = carrier_lock_detector(d_Prompt_buffer, CN0_ESTIMATION_SAMPLES); + d_carrier_lock_test = carrier_lock_detector( + d_Prompt_buffer, CN0_ESTIMATION_SAMPLES); // Loss of lock detection - if (d_carrier_lock_test < d_carrier_lock_threshold or d_CN0_SNV_dB_Hz < MINIMUM_VALID_CN0) + if (d_carrier_lock_test + < d_carrier_lock_threshold or d_CN0_SNV_dB_Hz < MINIMUM_VALID_CN0) { d_carrier_lock_fail_counter++; } else { if (d_carrier_lock_fail_counter > 0) - { - d_carrier_lock_fail_counter--; - } + { + d_carrier_lock_fail_counter--; + } } - if (d_carrier_lock_fail_counter > MAXIMUM_LOCK_FAIL_COUNTER) + if (d_carrier_lock_fail_counter + > MAXIMUM_LOCK_FAIL_COUNTER) { - std::cout << "Loss of lock in channel " << d_channel << "!" << std::endl; - LOG(INFO) << "Loss of lock in channel " << d_channel << "!"; - this->message_port_pub(pmt::mp("events"), pmt::from_long(3));//3 -> loss of lock + std::cout << "Loss of lock in channel " + << d_channel << "!" << std::endl; + LOG(INFO) << "Loss of lock in channel " + << d_channel << "!"; + this->message_port_pub(pmt::mp("events"), + pmt::from_long(3)); //3 -> loss of lock d_carrier_lock_fail_counter = 0; d_enable_tracking = false; // TODO: check if disabling tracking is consistent with the channel state machine multicorrelator_fpga_8sc->unlock_channel(); } } // ########### Output the tracking data to navigation and PVT ########## - current_synchro_data.Prompt_I = static_cast((d_correlator_outs_16sc[1]).real()); - current_synchro_data.Prompt_Q = static_cast((d_correlator_outs_16sc[1]).imag()); - current_synchro_data.Tracking_sample_counter = d_sample_counter + d_correlation_length_samples; - current_synchro_data.Code_phase_samples = d_rem_code_phase_samples; - current_synchro_data.Carrier_phase_rads = GPS_TWO_PI * d_acc_carrier_phase_cycles; - current_synchro_data.Carrier_Doppler_hz = d_carrier_doppler_hz; + current_synchro_data.Prompt_I = + static_cast((d_correlator_outs_16sc[1]).real()); + current_synchro_data.Prompt_Q = + static_cast((d_correlator_outs_16sc[1]).imag()); + current_synchro_data.Tracking_sample_counter = + d_sample_counter + d_correlation_length_samples; + current_synchro_data.Code_phase_samples = + d_rem_code_phase_samples; + current_synchro_data.Carrier_phase_rads = GPS_TWO_PI + * d_acc_carrier_phase_cycles; + current_synchro_data.Carrier_Doppler_hz = + d_carrier_doppler_hz; current_synchro_data.CN0_dB_hz = d_CN0_SNV_dB_Hz; current_synchro_data.Flag_valid_symbol_output = true; if (d_preamble_synchronized == true) { - current_synchro_data.correlation_length_ms = d_extend_correlation_ms; + current_synchro_data.correlation_length_ms = + d_extend_correlation_ms; } else { @@ -570,12 +704,18 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work (int noutput_items __ } else { - current_synchro_data.Prompt_I = static_cast((d_correlator_outs_16sc[1]).real()); - current_synchro_data.Prompt_Q = static_cast((d_correlator_outs_16sc[1]).imag()); - current_synchro_data.Tracking_sample_counter = d_sample_counter + d_correlation_length_samples; - current_synchro_data.Code_phase_samples = d_rem_code_phase_samples; - current_synchro_data.Carrier_phase_rads = GPS_TWO_PI * d_acc_carrier_phase_cycles; - current_synchro_data.Carrier_Doppler_hz = d_carrier_doppler_hz;// todo: project the carrier doppler + current_synchro_data.Prompt_I = + static_cast((d_correlator_outs_16sc[1]).real()); + current_synchro_data.Prompt_Q = + static_cast((d_correlator_outs_16sc[1]).imag()); + current_synchro_data.Tracking_sample_counter = + d_sample_counter + d_correlation_length_samples; + current_synchro_data.Code_phase_samples = + d_rem_code_phase_samples; + current_synchro_data.Carrier_phase_rads = GPS_TWO_PI + * d_acc_carrier_phase_cycles; + current_synchro_data.Carrier_Doppler_hz = + d_carrier_doppler_hz; // todo: project the carrier doppler current_synchro_data.CN0_dB_hz = d_CN0_SNV_dB_Hz; } } @@ -583,15 +723,17 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work (int noutput_items __ { for (int n = 0; n < d_n_correlator_taps; n++) { - d_correlator_outs_16sc[n] = lv_cmake(0,0); + d_correlator_outs_16sc[n] = lv_cmake(0, 0); } - current_synchro_data.System = {'G'}; - current_synchro_data.Tracking_sample_counter = d_sample_counter + d_correlation_length_samples; + current_synchro_data.System = + { 'G'}; + current_synchro_data.Tracking_sample_counter = d_sample_counter + + d_correlation_length_samples; } - current_synchro_data.fs=d_fs_in; + current_synchro_data.fs = d_fs_in; *out[0] = current_synchro_data; - if(d_dump) + if (d_dump) { // MULTIPLEXED FILE RECORDING - Record results to file float prompt_I; @@ -600,50 +742,85 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work (int noutput_items __ double tmp_double; prompt_I = d_correlator_outs_16sc[1].real(); prompt_Q = d_correlator_outs_16sc[1].imag(); - tmp_E = std::abs(std::complex(d_correlator_outs_16sc[0].real(),d_correlator_outs_16sc[0].imag())); - tmp_P = std::abs(std::complex(d_correlator_outs_16sc[1].real(),d_correlator_outs_16sc[1].imag())); - tmp_L = std::abs(std::complex(d_correlator_outs_16sc[2].real(),d_correlator_outs_16sc[2].imag())); + tmp_E = std::abs( + std::complex(d_correlator_outs_16sc[0].real(), + d_correlator_outs_16sc[0].imag())); + tmp_P = std::abs( + std::complex(d_correlator_outs_16sc[1].real(), + d_correlator_outs_16sc[1].imag())); + tmp_L = std::abs( + std::complex(d_correlator_outs_16sc[2].real(), + d_correlator_outs_16sc[2].imag())); try - { + { // EPR - d_dump_file.write(reinterpret_cast(&tmp_E), sizeof(float)); - d_dump_file.write(reinterpret_cast(&tmp_P), sizeof(float)); - d_dump_file.write(reinterpret_cast(&tmp_L), sizeof(float)); + d_dump_file.write(reinterpret_cast(&tmp_E), + sizeof(float)); + d_dump_file.write(reinterpret_cast(&tmp_P), + sizeof(float)); + d_dump_file.write(reinterpret_cast(&tmp_L), + sizeof(float)); // PROMPT I and Q (to analyze navigation symbols) - d_dump_file.write(reinterpret_cast(&prompt_I), sizeof(float)); - d_dump_file.write(reinterpret_cast(&prompt_Q), sizeof(float)); + d_dump_file.write(reinterpret_cast(&prompt_I), + sizeof(float)); + d_dump_file.write(reinterpret_cast(&prompt_Q), + sizeof(float)); // PRN start sample stamp //tmp_float=(float)d_sample_counter; - d_dump_file.write(reinterpret_cast(&d_sample_counter), sizeof(unsigned long int)); + d_dump_file.write( + reinterpret_cast(&d_sample_counter), + sizeof(unsigned long int)); // accumulated carrier phase - d_dump_file.write(reinterpret_cast(&d_acc_carrier_phase_cycles), sizeof(double)); + d_dump_file.write( + reinterpret_cast(&d_acc_carrier_phase_cycles), + sizeof(double)); // carrier and code frequency - d_dump_file.write(reinterpret_cast(&d_carrier_doppler_hz), sizeof(double)); - d_dump_file.write(reinterpret_cast(&d_code_freq_chips), sizeof(double)); + d_dump_file.write( + reinterpret_cast(&d_carrier_doppler_hz), + sizeof(double)); + d_dump_file.write( + reinterpret_cast(&d_code_freq_chips), + sizeof(double)); //PLL commands - d_dump_file.write(reinterpret_cast(&d_carr_phase_error_secs_Ti), sizeof(double)); - d_dump_file.write(reinterpret_cast(&d_carrier_doppler_hz), sizeof(double)); + d_dump_file.write( + reinterpret_cast(&d_carr_phase_error_secs_Ti), + sizeof(double)); + d_dump_file.write( + reinterpret_cast(&d_carrier_doppler_hz), + sizeof(double)); //DLL commands - d_dump_file.write(reinterpret_cast(&d_code_error_chips_Ti), sizeof(double)); - d_dump_file.write(reinterpret_cast(&d_code_error_filt_chips_Ti), sizeof(double)); + d_dump_file.write( + reinterpret_cast(&d_code_error_chips_Ti), + sizeof(double)); + d_dump_file.write( + reinterpret_cast(&d_code_error_filt_chips_Ti), + sizeof(double)); // CN0 and carrier lock test - d_dump_file.write(reinterpret_cast(&d_CN0_SNV_dB_Hz), sizeof(double)); - d_dump_file.write(reinterpret_cast(&d_carrier_lock_test), sizeof(double)); + d_dump_file.write(reinterpret_cast(&d_CN0_SNV_dB_Hz), + sizeof(double)); + d_dump_file.write( + reinterpret_cast(&d_carrier_lock_test), + sizeof(double)); // AUX vars (for debug purposes) - tmp_double = d_code_error_chips_Ti * CURRENT_INTEGRATION_TIME_S; - d_dump_file.write(reinterpret_cast(&tmp_double), sizeof(double)); - tmp_double = static_cast(d_sample_counter + d_correlation_length_samples); - d_dump_file.write(reinterpret_cast(&tmp_double), sizeof(double)); - } + tmp_double = d_code_error_chips_Ti + * CURRENT_INTEGRATION_TIME_S; + d_dump_file.write(reinterpret_cast(&tmp_double), + sizeof(double)); + tmp_double = static_cast(d_sample_counter + + d_correlation_length_samples); + d_dump_file.write(reinterpret_cast(&tmp_double), + sizeof(double)); + } catch (const std::ifstream::failure* e) - { - LOG(WARNING) << "Exception writing trk dump file " << e->what(); - } + { + LOG(WARNING) << "Exception writing trk dump file " + << e->what(); + } } //consume_each(d_correlation_length_samples); // this is necessary in gr::block derivates @@ -652,7 +829,6 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work (int noutput_items __ return 1; //output tracking result ALWAYS even in the case of d_enable_tracking==false } - void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::set_channel(unsigned int channel) { d_channel = channel; @@ -664,28 +840,37 @@ void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::set_channel(unsigned int channel) if (d_dump_file.is_open() == false) { try - { - d_dump_filename.append(boost::lexical_cast(d_channel)); + { + d_dump_filename.append( + boost::lexical_cast( + d_channel)); d_dump_filename.append(".dat"); - d_dump_file.exceptions (std::ifstream::failbit | std::ifstream::badbit); - d_dump_file.open(d_dump_filename.c_str(), std::ios::out | std::ios::binary); - LOG(INFO) << "Tracking dump enabled on channel " << d_channel << " Log file: " << d_dump_filename.c_str(); - } + d_dump_file.exceptions( + std::ifstream::failbit + | std::ifstream::badbit); + d_dump_file.open(d_dump_filename.c_str(), + std::ios::out | std::ios::binary); + LOG(INFO) << "Tracking dump enabled on channel " + << d_channel << " Log file: " + << d_dump_filename.c_str(); + } catch (const std::ifstream::failure* e) - { - LOG(WARNING) << "channel " << d_channel << " Exception opening trk dump file " << e->what(); - } + { + LOG(WARNING) << "channel " << d_channel + << " Exception opening trk dump file " + << e->what(); + } } } } - -void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::set_gnss_synchro(Gnss_Synchro* p_gnss_synchro) +void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::set_gnss_synchro( + Gnss_Synchro* p_gnss_synchro) { d_acquisition_gnss_synchro = p_gnss_synchro; } void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::reset(void) { - multicorrelator_fpga_8sc->unlock_channel(); + multicorrelator_fpga_8sc->unlock_channel(); } diff --git a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.h b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.h index ecfd03b43..444ffbc72 100644 --- a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.h +++ b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.h @@ -53,30 +53,19 @@ class gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc; -typedef boost::shared_ptr - gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc_sptr; +typedef boost::shared_ptr gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc_sptr; gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc_sptr -gps_l1_ca_dll_pll_c_aid_make_tracking_fpga_sc(long if_freq, - long fs_in, unsigned - int vector_length, - bool dump, - std::string dump_filename, - float pll_bw_hz, - float dll_bw_hz, - float pll_bw_narrow_hz, - float dll_bw_narrow_hz, - int extend_correlation_ms, - float early_late_space_chips, - std::string device_name, - unsigned int device_base); - - +gps_l1_ca_dll_pll_c_aid_make_tracking_fpga_sc(long if_freq, long fs_in, unsigned +int vector_length, bool dump, std::string dump_filename, float pll_bw_hz, + float dll_bw_hz, float pll_bw_narrow_hz, float dll_bw_narrow_hz, + int extend_correlation_ms, float early_late_space_chips, + std::string device_name, unsigned int device_base); /*! * \brief This class implements a DLL + PLL tracking loop block */ -class gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc: public gr::block +class gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc : public gr::block { public: ~gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc(); @@ -85,44 +74,30 @@ public: void set_gnss_synchro(Gnss_Synchro* p_gnss_synchro); void start_tracking(); - int general_work (int noutput_items, gr_vector_int &ninput_items, - gr_vector_const_void_star &input_items, gr_vector_void_star &output_items); + int general_work(int noutput_items, gr_vector_int &ninput_items, + gr_vector_const_void_star &input_items, + gr_vector_void_star &output_items); void reset(void); private: friend gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc_sptr - gps_l1_ca_dll_pll_c_aid_make_tracking_fpga_sc(long if_freq, - long fs_in, unsigned - int vector_length, - bool dump, - std::string dump_filename, - float pll_bw_hz, - float dll_bw_hz, - float pll_bw_narrow_hz, - float dll_bw_narrow_hz, - int extend_correlation_ms, - float early_late_space_chips, - std::string device_name, - unsigned int device_base); - - gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc(long if_freq, - long fs_in, unsigned - int vector_length, - bool dump, - std::string dump_filename, - float pll_bw_hz, - float dll_bw_hz, - float pll_bw_narrow_hz, - float dll_bw_narrow_hz, - int extend_correlation_ms, - float early_late_space_chips, - std::string device_name, + gps_l1_ca_dll_pll_c_aid_make_tracking_fpga_sc(long if_freq, long fs_in, + unsigned + int vector_length, bool dump, std::string dump_filename, + float pll_bw_hz, float dll_bw_hz, float pll_bw_narrow_hz, + float dll_bw_narrow_hz, int extend_correlation_ms, + float early_late_space_chips, std::string device_name, unsigned int device_base); + gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc(long if_freq, long fs_in, unsigned + int vector_length, bool dump, std::string dump_filename, float pll_bw_hz, + float dll_bw_hz, float pll_bw_narrow_hz, float dll_bw_narrow_hz, + int extend_correlation_ms, float early_late_space_chips, + std::string device_name, unsigned int device_base); + // tracking configuration vars - unsigned int d_vector_length; - bool d_dump; + unsigned int d_vector_length;bool d_dump; Gnss_Synchro* d_acquisition_gnss_synchro; unsigned int d_channel; @@ -169,9 +144,7 @@ private: double d_carr_phase_error_secs_Ti; double d_code_error_chips_Ti; double d_preamble_timestamp_s; - int d_extend_correlation_ms; - bool d_enable_extended_integration; - bool d_preamble_synchronized; + int d_extend_correlation_ms;bool d_enable_extended_integration;bool d_preamble_synchronized; double d_code_error_filt_chips_s; double d_code_error_filt_chips_Ti; void msg_handler_preamble_index(pmt::pmt_t msg); @@ -197,8 +170,7 @@ private: int d_carrier_lock_fail_counter; // control vars - bool d_enable_tracking; - bool d_pull_in; + bool d_enable_tracking;bool d_pull_in; // file dump std::string d_dump_filename; diff --git a/src/algorithms/tracking/libs/fpga_multicorrelator_8sc.cc b/src/algorithms/tracking/libs/fpga_multicorrelator_8sc.cc index 0b9dde66d..7d86f59e2 100644 --- a/src/algorithms/tracking/libs/fpga_multicorrelator_8sc.cc +++ b/src/algorithms/tracking/libs/fpga_multicorrelator_8sc.cc @@ -72,19 +72,18 @@ #define PHASE_CARR_NBITS 32 #define PHASE_CARR_NBITS_INT 1 #define PHASE_CARR_NBITS_FRAC PHASE_CARR_NBITS - PHASE_CARR_NBITS_INT - - +#define LOCAL_CODE_FPGA_CORRELATOR_SELECT_COUNT 0x20000000 +#define LOCAL_CODE_FPGA_CLEAR_ADDRESS_COUNTER 0x10000000 +#define LOCAL_CODE_FPGA_ENABLE_WRITE_MEMORY 0x0C000000 +#define TEST_REGISTER_TRACK_WRITEVAL 0x55AA void fpga_multicorrelator_8sc::set_initial_sample(int samples_offset) { d_initial_sample_counter = samples_offset; } - -bool fpga_multicorrelator_8sc::set_local_code_and_taps( - int code_length_chips, - const lv_16sc_t* local_code_in, - float *shifts_chips) +bool fpga_multicorrelator_8sc::set_local_code_and_taps(int code_length_chips, + const lv_16sc_t* local_code_in, float *shifts_chips) { d_local_code_in = local_code_in; d_shifts_chips = shifts_chips; @@ -95,7 +94,6 @@ bool fpga_multicorrelator_8sc::set_local_code_and_taps( return true; } - bool fpga_multicorrelator_8sc::set_output_vectors(lv_16sc_t* corr_out) { // Save CPU pointers @@ -104,7 +102,6 @@ bool fpga_multicorrelator_8sc::set_output_vectors(lv_16sc_t* corr_out) return true; } - void fpga_multicorrelator_8sc::update_local_code(float rem_code_phase_chips) { d_rem_code_phase_chips = rem_code_phase_chips; @@ -113,12 +110,9 @@ void fpga_multicorrelator_8sc::update_local_code(float rem_code_phase_chips) fpga_multicorrelator_8sc::fpga_configure_code_parameters_in_fpga(); } - bool fpga_multicorrelator_8sc::Carrier_wipeoff_multicorrelator_resampler( - float rem_carrier_phase_in_rad, - float phase_step_rad, - float rem_code_phase_chips, - float code_phase_step_chips, + float rem_carrier_phase_in_rad, float phase_step_rad, + float rem_code_phase_chips, float code_phase_step_chips, int signal_length_samples) { update_local_code(rem_code_phase_chips); @@ -135,7 +129,7 @@ bool fpga_multicorrelator_8sc::Carrier_wipeoff_multicorrelator_resampler( int irq_count; ssize_t nb; // wait for interrupt - nb=read(d_fd, &irq_count, sizeof(irq_count)); + nb = read(d_device_descriptor, &irq_count, sizeof(irq_count)); if (nb != sizeof(irq_count)) { printf("Tracking_module Read failed to retrive 4 bytes!\n"); @@ -147,19 +141,21 @@ bool fpga_multicorrelator_8sc::Carrier_wipeoff_multicorrelator_resampler( return true; } - -fpga_multicorrelator_8sc::fpga_multicorrelator_8sc(int n_correlators, std::string device_name, unsigned int device_base) +fpga_multicorrelator_8sc::fpga_multicorrelator_8sc(int n_correlators, + std::string device_name, unsigned int device_base) { d_n_correlators = n_correlators; d_device_name = device_name; d_device_base = device_base; - d_fd = 0; + d_device_descriptor = 0; d_map_base = nullptr; // instantiate variable length vectors - d_initial_index = static_cast(volk_gnsssdr_malloc(n_correlators * sizeof(unsigned), volk_gnsssdr_get_alignment())); - d_initial_interp_counter = static_cast(volk_gnsssdr_malloc(n_correlators * sizeof(unsigned), volk_gnsssdr_get_alignment())); + d_initial_index = static_cast(volk_gnsssdr_malloc( + n_correlators * sizeof(unsigned), volk_gnsssdr_get_alignment())); + d_initial_interp_counter = static_cast(volk_gnsssdr_malloc( + n_correlators * sizeof(unsigned), volk_gnsssdr_get_alignment())); d_local_code_in = nullptr; d_shifts_chips = nullptr; @@ -173,20 +169,15 @@ fpga_multicorrelator_8sc::fpga_multicorrelator_8sc(int n_correlators, std::strin d_phase_step_rad_int = 0; d_initial_sample_counter = 0; - d_ena_write_signals = new unsigned[d_n_correlators]; - d_channel = 0; d_correlator_length_samples = 0; } - fpga_multicorrelator_8sc::~fpga_multicorrelator_8sc() { - close(d_fd); - delete [] d_ena_write_signals; + close(d_device_descriptor); } - bool fpga_multicorrelator_8sc::free() { // unlock the hardware @@ -209,10 +200,9 @@ bool fpga_multicorrelator_8sc::free() return true; } - void fpga_multicorrelator_8sc::set_channel(unsigned int channel) { - char device_io_name[MAX_LENGTH_DEVICEIO_NAME]; // driver io name + char device_io_name[MAX_LENGTH_DEVICEIO_NAME]; // driver io name d_channel = channel; @@ -221,26 +211,29 @@ void fpga_multicorrelator_8sc::set_channel(unsigned int channel) std::stringstream devicebasetemp; int numdevice = d_device_base + d_channel; - devicebasetemp << numdevice; - mergedname = d_device_name + devicebasetemp.str(); - strcpy(device_io_name, mergedname.c_str()); - printf("Opening Device Name : %s\n", device_io_name); - if ((d_fd = open(device_io_name, O_RDWR | O_SYNC )) == -1) - { - LOG(WARNING) << "Cannot open deviceio" << device_io_name; - } + devicebasetemp << numdevice; + mergedname = d_device_name + devicebasetemp.str(); + strcpy(device_io_name, mergedname.c_str()); + printf("Opening Device Name : %s\n", device_io_name); + if ((d_device_descriptor = open(device_io_name, O_RDWR | O_SYNC)) == -1) + { + LOG(WARNING) << "Cannot open deviceio" << device_io_name; + } - d_map_base = (volatile unsigned *)mmap(NULL, PAGE_SIZE, PROT_READ | PROT_WRITE, MAP_SHARED, d_fd,0); + d_map_base = (volatile unsigned *) mmap(NULL, PAGE_SIZE, + PROT_READ | PROT_WRITE, MAP_SHARED, d_device_descriptor, 0); if (d_map_base == (void *) -1) { - LOG(WARNING) << "Cannot map the FPGA tracking module " << d_channel << "into user memory"; + LOG(WARNING) << "Cannot map the FPGA tracking module " + << d_channel << "into user memory"; } // sanity check : check test register - unsigned writeval = 0x55AA; + unsigned writeval = TEST_REGISTER_TRACK_WRITEVAL; unsigned readval; - readval = fpga_multicorrelator_8sc::fpga_acquisition_test_register(writeval); + readval = fpga_multicorrelator_8sc::fpga_acquisition_test_register( + writeval); if (writeval != readval) { LOG(WARNING) << "Test register sanity check failed"; @@ -252,8 +245,8 @@ void fpga_multicorrelator_8sc::set_channel(unsigned int channel) } - -unsigned fpga_multicorrelator_8sc::fpga_acquisition_test_register(unsigned writeval) +unsigned fpga_multicorrelator_8sc::fpga_acquisition_test_register( + unsigned writeval) { unsigned readval; // write value to test register @@ -264,110 +257,110 @@ unsigned fpga_multicorrelator_8sc::fpga_acquisition_test_register(unsigned write return readval; } - void fpga_multicorrelator_8sc::fpga_configure_tracking_gps_local_code(void) { - int k,s; - unsigned temp; - d_ena_write_signals[0] = 0x00000000; - d_ena_write_signals[1] = 0x20000000; - for (s = 2; s < d_n_correlators; s++) - { - d_ena_write_signals[s]= d_ena_write_signals[s-1]*2; - } + int k, s; + unsigned code_chip; + unsigned select_fpga_correlator; + + select_fpga_correlator = 0; for (s = 0; s < d_n_correlators; s++) { - // clear memory address counter - d_map_base[11] = 0x10000000; + + d_map_base[11] = LOCAL_CODE_FPGA_CLEAR_ADDRESS_COUNTER; for (k = 0; k < d_code_length_chips; k++) { if (lv_creal(d_local_code_in[k]) == 1) { - temp = 1; + code_chip = 1; } else { - temp = 0; + code_chip = 0; } - d_map_base[11] = 0x0C000000 | (temp & 0xFFFF) | d_ena_write_signals[s]; + // copy the local code to the FPGA memory one by one + d_map_base[11] = LOCAL_CODE_FPGA_ENABLE_WRITE_MEMORY + | code_chip | select_fpga_correlator; } + select_fpga_correlator = select_fpga_correlator + + LOCAL_CODE_FPGA_CORRELATOR_SELECT_COUNT; } - } - void fpga_multicorrelator_8sc::fpga_compute_code_shift_parameters(void) { - float tempvalues[3]; - float tempvalues2[3]; - float tempvalues3[3]; + float temp_calculation; int i; for (i = 0; i < d_n_correlators; i++) { // initial index calculation - tempvalues[i] = floor(d_shifts_chips[i] + d_rem_code_phase_chips); - if (tempvalues[i] < 0) + temp_calculation = floor( + d_shifts_chips[i] + d_rem_code_phase_chips); + if (temp_calculation < 0) { - tempvalues2[i] = tempvalues[i] + d_code_length_chips; // % operator does not work as in Matlab with negative numbers + temp_calculation = temp_calculation + d_code_length_chips; // % operator does not work as in Matlab with negative numbers } - else - { - tempvalues2[i] = tempvalues[i]; - } - d_initial_index[i] = (unsigned) ((int) tempvalues2[i]) % d_code_length_chips; + d_initial_index[i] = (unsigned) ((int) temp_calculation) + % d_code_length_chips; // initial interpolator counter calculation - tempvalues3[i] = fmod(d_shifts_chips[i]+ d_rem_code_phase_chips,1.0); - if (tempvalues3[i] < 0) + temp_calculation = fmod(d_shifts_chips[i] + d_rem_code_phase_chips, + 1.0); + if (temp_calculation < 0) { - tempvalues3[i] = tempvalues3[i] + 1.0; // fmod operator does not work as in Matlab with negative numbers + temp_calculation = temp_calculation + 1.0; // fmod operator does not work as in Matlab with negative numbers } - d_initial_interp_counter[i] = (unsigned) floor(MAX_CODE_RESAMPLER_COUNTER * tempvalues3[i]); + d_initial_interp_counter[i] = (unsigned) floor( + MAX_CODE_RESAMPLER_COUNTER * temp_calculation); } } - void fpga_multicorrelator_8sc::fpga_configure_code_parameters_in_fpga(void) { int i; for (i = 0; i < d_n_correlators; i++) { - d_map_base[1+i] = d_initial_index[i]; + d_map_base[1 + i] = d_initial_index[i]; d_map_base[1 + d_n_correlators + i] = d_initial_interp_counter[i]; } d_map_base[8] = d_code_length_chips - 1; // number of samples - 1 } - void fpga_multicorrelator_8sc::fpga_compute_signal_parameters_in_fpga(void) { float d_rem_carrier_phase_in_rad_temp; - d_code_phase_step_chips_num = (unsigned) roundf(MAX_CODE_RESAMPLER_COUNTER * d_code_phase_step_chips); + d_code_phase_step_chips_num = (unsigned) roundf( + MAX_CODE_RESAMPLER_COUNTER * d_code_phase_step_chips); if (d_rem_carrier_phase_in_rad > M_PI) { - d_rem_carrier_phase_in_rad_temp = -2*M_PI + d_rem_carrier_phase_in_rad; + d_rem_carrier_phase_in_rad_temp = -2 * M_PI + + d_rem_carrier_phase_in_rad; } - else if (d_rem_carrier_phase_in_rad < - M_PI) + else if (d_rem_carrier_phase_in_rad < -M_PI) { - d_rem_carrier_phase_in_rad_temp = 2*M_PI + d_rem_carrier_phase_in_rad; + d_rem_carrier_phase_in_rad_temp = 2 * M_PI + + d_rem_carrier_phase_in_rad; } else { d_rem_carrier_phase_in_rad_temp = d_rem_carrier_phase_in_rad; } - d_rem_carr_phase_rad_int = (int) roundf((fabs(d_rem_carrier_phase_in_rad_temp)/M_PI)*pow(2, PHASE_CARR_NBITS_FRAC)); + d_rem_carr_phase_rad_int = (int) roundf( + (fabs(d_rem_carrier_phase_in_rad_temp) / M_PI) + * pow(2, PHASE_CARR_NBITS_FRAC)); if (d_rem_carrier_phase_in_rad_temp < 0) { d_rem_carr_phase_rad_int = -d_rem_carr_phase_rad_int; } - d_phase_step_rad_int = (int) roundf((fabs(d_phase_step_rad)/M_PI)*pow(2, PHASE_CARR_NBITS_FRAC)); // the FPGA accepts a range for the phase step between -pi and +pi + d_phase_step_rad_int = (int) roundf( + (fabs(d_phase_step_rad) / M_PI) * pow(2, PHASE_CARR_NBITS_FRAC)); // the FPGA accepts a range for the phase step between -pi and +pi if (d_phase_step_rad < 0) { @@ -375,7 +368,6 @@ void fpga_multicorrelator_8sc::fpga_compute_signal_parameters_in_fpga(void) } } - void fpga_multicorrelator_8sc::fpga_configure_signal_parameters_in_fpga(void) { d_map_base[0] = d_code_phase_step_chips_num; @@ -385,36 +377,34 @@ void fpga_multicorrelator_8sc::fpga_configure_signal_parameters_in_fpga(void) d_map_base[13] = d_initial_sample_counter; } - void fpga_multicorrelator_8sc::fpga_launch_multicorrelator_fpga(void) { // enable interrupts int reenable = 1; - write(d_fd, (void *)&reenable, sizeof(int)); + write(d_device_descriptor, (void *) &reenable, sizeof(int)); d_map_base[14] = 0; // writing anything to reg 14 launches the tracking } - void fpga_multicorrelator_8sc::read_tracking_gps_results(void) { int readval_real; int readval_imag; int k; - for (k =0 ; k < d_n_correlators; k++) + for (k = 0; k < d_n_correlators; k++) { - readval_real = d_map_base[1 + k]; - if (readval_real >= 1048576) // 0x100000 (21 bits two's complement) + readval_real = d_map_base[1 + k]; + if (readval_real >= 1048576) // 0x100000 (21 bits two's complement) { - readval_real = -2097152 + readval_real; + readval_real = -2097152 + readval_real; } readval_real = readval_real * 2; // the results are shifted two bits to the left due to the complex multiplier in the FPGA readval_imag = d_map_base[1 + d_n_correlators + k]; if (readval_imag >= 1048576) // 0x100000 (21 bits two's complement) { - readval_imag = -2097152 + readval_imag; + readval_imag = -2097152 + readval_imag; } readval_imag = readval_imag * 2; // the results are shifted two bits to the left due to the complex multiplier in the FPGA @@ -423,7 +413,6 @@ void fpga_multicorrelator_8sc::read_tracking_gps_results(void) } - void fpga_multicorrelator_8sc::unlock_channel(void) { // unlock the channel to let the next samples go through @@ -432,8 +421,7 @@ void fpga_multicorrelator_8sc::unlock_channel(void) void fpga_multicorrelator_8sc::lock_channel(void) { - // lock the channel for processing - d_map_base[12] = 0; // lock the channel + // lock the channel for processing + d_map_base[12] = 0; // lock the channel } - diff --git a/src/algorithms/tracking/libs/fpga_multicorrelator_8sc.h b/src/algorithms/tracking/libs/fpga_multicorrelator_8sc.h index 4e4bc6fa8..801ae5332 100644 --- a/src/algorithms/tracking/libs/fpga_multicorrelator_8sc.h +++ b/src/algorithms/tracking/libs/fpga_multicorrelator_8sc.h @@ -39,7 +39,6 @@ #include - #define MAX_LENGTH_DEVICEIO_NAME 50 /*! @@ -48,21 +47,21 @@ class fpga_multicorrelator_8sc { public: - fpga_multicorrelator_8sc(int n_correlators, std::string device_name, unsigned int device_base); - ~fpga_multicorrelator_8sc(); - bool set_local_code_and_taps(int code_length_chips, const lv_16sc_t* local_code_in, float *shifts_chips); - bool set_output_vectors(lv_16sc_t* corr_out); - void update_local_code(float rem_code_phase_chips); - bool Carrier_wipeoff_multicorrelator_resampler(float rem_carrier_phase_in_rad, float phase_step_rad, float rem_code_phase_chips, float code_phase_step_chips, int signal_length_samples); - bool free(); + fpga_multicorrelator_8sc(int n_correlators, std::string device_name, + unsigned int device_base); + ~fpga_multicorrelator_8sc();bool set_local_code_and_taps( + int code_length_chips, const lv_16sc_t* local_code_in, + float *shifts_chips);bool set_output_vectors(lv_16sc_t* corr_out); + void update_local_code(float rem_code_phase_chips);bool Carrier_wipeoff_multicorrelator_resampler( + float rem_carrier_phase_in_rad, float phase_step_rad, + float rem_code_phase_chips, float code_phase_step_chips, + int signal_length_samples);bool free(); void set_channel(unsigned int channel); void set_initial_sample(int samples_offset); void lock_channel(void); void unlock_channel(void); - - private: const lv_16sc_t *d_local_code_in; lv_16sc_t *d_corr_out; @@ -71,38 +70,36 @@ private: int d_n_correlators; // data related to the hardware module and the driver - int d_fd; // driver descriptor - volatile unsigned *d_map_base; // driver memory map + int d_device_descriptor; // driver descriptor + volatile unsigned *d_map_base; // driver memory map // configuration data received from the interface - unsigned int d_channel; // channel number - unsigned d_ncorrelators; // number of correlators + unsigned int d_channel; // channel number + unsigned d_ncorrelators; // number of correlators unsigned d_correlator_length_samples; float d_rem_code_phase_chips; float d_code_phase_step_chips; float d_rem_carrier_phase_in_rad; float d_phase_step_rad; - + // configuration data computed in the format that the FPGA expects - unsigned *d_initial_index; - unsigned *d_initial_interp_counter; + unsigned *d_initial_index; + unsigned *d_initial_interp_counter; unsigned d_code_phase_step_chips_num; int d_rem_carr_phase_rad_int; int d_phase_step_rad_int; unsigned d_initial_sample_counter; - unsigned *d_ena_write_signals; // driver std::string d_device_name; unsigned int d_device_base; - // results //int *d_readval_real; //int *d_readval_imag; // FPGA private functions unsigned fpga_acquisition_test_register(unsigned writeval); - void fpga_configure_tracking_gps_local_code(void); + void fpga_configure_tracking_gps_local_code(void); void fpga_compute_code_shift_parameters(void); void fpga_configure_code_parameters_in_fpga(void); void fpga_compute_signal_parameters_in_fpga(void); @@ -114,5 +111,4 @@ private: }; - #endif /* GNSS_SDR_FPGA_MULTICORRELATOR_H_ */ diff --git a/src/tests/unit-tests/signal-processing-blocks/acquisition/gps_l1_ca_pcps_acquisition_test_fpga.cc b/src/tests/unit-tests/signal-processing-blocks/acquisition/gps_l1_ca_pcps_acquisition_test_fpga.cc index 538766510..c9e9e2e08 100644 --- a/src/tests/unit-tests/signal-processing-blocks/acquisition/gps_l1_ca_pcps_acquisition_test_fpga.cc +++ b/src/tests/unit-tests/signal-processing-blocks/acquisition/gps_l1_ca_pcps_acquisition_test_fpga.cc @@ -29,9 +29,6 @@ * ------------------------------------------------------------------------- */ - - - #include #include #include @@ -54,21 +51,21 @@ #include -#define DMA_ACQ_TRANSFER_SIZE 4000 +#define DMA_ACQ_TRANSFER_SIZE 2046 // DMA transfer size for the acquisition #define RX_SIGNAL_MAX_VALUE 127 // 2^7 - 1 for 8-bit signed values #define NTIMES_CYCLE_THROUGH_RX_SAMPLES_FILE 50 // number of times we cycle through the file containing the received samples #define ONE_SECOND 1000000 // one second in microseconds #define FLOAT_SIZE (sizeof(float)) // size of the float variable in characters - // thread that reads the file containing the received samples, scales the samples to the dynamic range of the fixed point values, sends // the samples to the DMA and finally it stops the top block -void thread_acquisition_send_rx_samples(gr::top_block_sptr top_block, const char * file_name) +void thread_acquisition_send_rx_samples(gr::top_block_sptr top_block, + const char * file_name) { - FILE *ptr_myfile; // file descriptor - int fileLen; // length of the file containing the received samples - int tx_fd; // DMA descriptor + FILE *rx_signal_file; // file descriptor + int file_length; // length of the file containing the received samples + int dma_descr; // DMA descriptor // sleep for 1 second to give some time to GNSS-SDR to activate the acquisition module. // the acquisition module does not block the RX buffer before activation. @@ -77,112 +74,112 @@ void thread_acquisition_send_rx_samples(gr::top_block_sptr top_block, const char // we want for the test usleep(ONE_SECOND); - char *buffer_temp; // temporary buffer to convert from binary char to float and from float to char - signed char *buffer_char; // temporary buffer to store the samples to be sent to the DMA - buffer_temp = (char *)malloc(FLOAT_SIZE); // allocate space for the temporary buffer - if (!buffer_temp) - { - fprintf(stderr, "Memory error!"); - } + char *buffer_float; // temporary buffer to convert from binary char to float and from float to char + signed char *buffer_DMA; // temporary buffer to store the samples to be sent to the DMA + buffer_float = (char *) malloc(FLOAT_SIZE); // allocate space for the temporary buffer + if (!buffer_float) + { + fprintf(stderr, "Memory error!"); + } - ptr_myfile = fopen(file_name,"rb"); // file containing the received signal - if (!ptr_myfile) - { - printf("Unable to open file!"); - } + rx_signal_file = fopen(file_name, "rb"); // file containing the received signal + if (!rx_signal_file) + { + printf("Unable to open file!"); + } - // determine the length of the file that contains the received signal - fseek(ptr_myfile, 0, SEEK_END); - fileLen = ftell(ptr_myfile); - fseek(ptr_myfile, 0, SEEK_SET); + // determine the length of the file that contains the received signal + fseek(rx_signal_file, 0, SEEK_END); + file_length = ftell(rx_signal_file); + fseek(rx_signal_file, 0, SEEK_SET); // first step: check for the maximum value of the received signal - float max = 0; - float *pointer_float; - pointer_float = (float *) &buffer_temp[0]; - for (int k=0;k max) - { - max = (pointer_float[0]); - } + if (fabs(pointer_float[0]) > max) + { + max = (pointer_float[0]); + } - } + } - // go back to the beginning of the file containing the received samples - fseek(ptr_myfile, 0, SEEK_SET); + // go back to the beginning of the file containing the received samples + fseek(rx_signal_file, 0, SEEK_SET); - // allocate memory for the samples to be transferred to the DMA + // allocate memory for the samples to be transferred to the DMA - buffer_char = (signed char *)malloc(DMA_ACQ_TRANSFER_SIZE); - if (!buffer_char) - { - fprintf(stderr, "Memory error!"); - } + buffer_DMA = (signed char *) malloc(DMA_ACQ_TRANSFER_SIZE); + if (!buffer_DMA) + { + fprintf(stderr, "Memory error!"); + } - // open the DMA descriptor - tx_fd = open("/dev/loop_tx", O_WRONLY); - if ( tx_fd < 0 ) - { - printf("can't open loop device\n"); - exit(1); - } + // open the DMA descriptor + dma_descr = open("/dev/loop_tx", O_WRONLY); + if (dma_descr < 0) + { + printf("can't open loop device\n"); + exit(1); + } + // cycle through the file containing the received samples - // cycle through the file containing the received samples + for (int k = 0; k < NTIMES_CYCLE_THROUGH_RX_SAMPLES_FILE; k++) + { - for (int k=0;k DMA_ACQ_TRANSFER_SIZE) + { - int transfer_size; - int num_transferred_samples = 0; - while (num_transferred_samples < (int) (fileLen/FLOAT_SIZE)) - { - if (((fileLen/FLOAT_SIZE) - num_transferred_samples) > DMA_ACQ_TRANSFER_SIZE) - { + transfer_size = DMA_ACQ_TRANSFER_SIZE; + num_transferred_samples = num_transferred_samples + + DMA_ACQ_TRANSFER_SIZE; + } + else + { + transfer_size = file_length / FLOAT_SIZE + - num_transferred_samples; + num_transferred_samples = file_length / FLOAT_SIZE; + } - transfer_size = DMA_ACQ_TRANSFER_SIZE; - num_transferred_samples = num_transferred_samples + DMA_ACQ_TRANSFER_SIZE; + for (int t = 0; t < transfer_size; t++) + { + fread(buffer_float, FLOAT_SIZE, 1, rx_signal_file); - } - else - { - transfer_size = fileLen/FLOAT_SIZE - num_transferred_samples; - num_transferred_samples = fileLen/FLOAT_SIZE; - } + // specify (float) (int) for a quantization maximizing the dynamic range + buffer_DMA[t] = (signed char) ((pointer_float[0] + * (RX_SIGNAL_MAX_VALUE - 1)) / max); + } - for (int t=0;tstop(); - - } // ######## GNURADIO BLOCK MESSAGE RECEVER ######### @@ -203,44 +200,44 @@ public: ~GpsL1CaPcpsAcquisitionTestFpga_msg_rx(); //!< Default destructor }; - GpsL1CaPcpsAcquisitionTest_msg_fpga_rx_sptr GpsL1CaPcpsAcquisitionTestFpga_msg_rx_make() { - return GpsL1CaPcpsAcquisitionTest_msg_fpga_rx_sptr(new GpsL1CaPcpsAcquisitionTestFpga_msg_rx()); + return GpsL1CaPcpsAcquisitionTest_msg_fpga_rx_sptr( + new GpsL1CaPcpsAcquisitionTestFpga_msg_rx()); } - void GpsL1CaPcpsAcquisitionTestFpga_msg_rx::msg_handler_events(pmt::pmt_t msg) { try - { + { long int message = pmt::to_long(msg); rx_message = message; - } - catch(boost::bad_any_cast& e) - { + } + catch (boost::bad_any_cast& e) + { LOG(WARNING) << "msg_handler_telemetry Bad any cast!"; rx_message = 0; - } + } } - GpsL1CaPcpsAcquisitionTestFpga_msg_rx::GpsL1CaPcpsAcquisitionTestFpga_msg_rx() : - gr::block("GpsL1CaPcpsAcquisitionTestFpga_msg_rx", gr::io_signature::make(0, 0, 0), gr::io_signature::make(0, 0, 0)) + gr::block("GpsL1CaPcpsAcquisitionTestFpga_msg_rx", + gr::io_signature::make(0, 0, 0), + gr::io_signature::make(0, 0, 0)) { this->message_port_register_in(pmt::mp("events")); - this->set_msg_handler(pmt::mp("events"), boost::bind(&GpsL1CaPcpsAcquisitionTestFpga_msg_rx::msg_handler_events, this, _1)); + this->set_msg_handler(pmt::mp("events"), + boost::bind( + &GpsL1CaPcpsAcquisitionTestFpga_msg_rx::msg_handler_events, + this, _1)); rx_message = 0; } - GpsL1CaPcpsAcquisitionTestFpga_msg_rx::~GpsL1CaPcpsAcquisitionTestFpga_msg_rx() -{} +{ +} - - - -class GpsL1CaPcpsAcquisitionTestFpga: public ::testing::Test +class GpsL1CaPcpsAcquisitionTestFpga : public ::testing::Test { protected: GpsL1CaPcpsAcquisitionTestFpga() @@ -252,7 +249,8 @@ protected: } ~GpsL1CaPcpsAcquisitionTestFpga() - {} + { + } void init(); @@ -263,7 +261,6 @@ protected: size_t item_size; }; - void GpsL1CaPcpsAcquisitionTestFpga::init() { gnss_synchro.Channel_ID = 0; @@ -276,24 +273,24 @@ void GpsL1CaPcpsAcquisitionTestFpga::init() config->set_property("Acquisition.if", "0"); config->set_property("Acquisition.coherent_integration_time_ms", "1"); config->set_property("Acquisition.dump", "false"); - config->set_property("Acquisition.implementation", "GPS_L1_CA_PCPS_Acquisition"); + config->set_property("Acquisition.implementation", + "GPS_L1_CA_PCPS_Acquisition"); config->set_property("Acquisition.threshold", "0.001"); config->set_property("Acquisition.doppler_max", "5000"); config->set_property("Acquisition.doppler_step", "500"); config->set_property("Acquisition.repeat_satellite", "false"); config->set_property("Acquisition.pfa", "0.0"); - // extra configuration properties for the FPGA config->set_property("Acquisition.select_queue_Fpga", "0"); config->set_property("Acquisition.devicename", "/dev/uio0"); } - - TEST_F(GpsL1CaPcpsAcquisitionTestFpga, Instantiate) { init(); - boost::shared_ptr acquisition = boost::make_shared(config.get(), "Acquisition", 0, 1); + boost::shared_ptr acquisition = + boost::make_shared(config.get(), + "Acquisition", 0, 1); } TEST_F(GpsL1CaPcpsAcquisitionTestFpga, ValidationOfResults) @@ -307,84 +304,102 @@ TEST_F(GpsL1CaPcpsAcquisitionTestFpga, ValidationOfResults) double expected_doppler_hz = 1680; init(); - std::shared_ptr acquisition = std::make_shared(config.get(), "Acquisition", 0, 1); + std::shared_ptr < GpsL1CaPcpsAcquisitionFpga > acquisition = + std::make_shared < GpsL1CaPcpsAcquisitionFpga + > (config.get(), "Acquisition", 0, 1); - boost::shared_ptr msg_rx = GpsL1CaPcpsAcquisitionTestFpga_msg_rx_make(); + boost::shared_ptr msg_rx = + GpsL1CaPcpsAcquisitionTestFpga_msg_rx_make(); - ASSERT_NO_THROW( { - acquisition->set_channel(1); - }) << "Failure setting channel." << std::endl; + ASSERT_NO_THROW( + { + acquisition->set_channel(1); + })<< "Failure setting channel." << std::endl; - ASSERT_NO_THROW( { - acquisition->set_gnss_synchro(&gnss_synchro); - }) << "Failure setting gnss_synchro." << std::endl; + ASSERT_NO_THROW( + { + acquisition->set_gnss_synchro(&gnss_synchro); + })<< "Failure setting gnss_synchro." << std::endl; - ASSERT_NO_THROW( { - acquisition->set_threshold(0.1); - }) << "Failure setting threshold." << std::endl; + ASSERT_NO_THROW( + { + acquisition->set_threshold(0.1); + })<< "Failure setting threshold." << std::endl; - ASSERT_NO_THROW( { - acquisition->set_doppler_max(10000); - }) << "Failure setting doppler_max." << std::endl; + ASSERT_NO_THROW( + { + acquisition->set_doppler_max(10000); + })<< "Failure setting doppler_max." << std::endl; - ASSERT_NO_THROW( { - acquisition->set_doppler_step(250); - }) << "Failure setting doppler_step." << std::endl; + ASSERT_NO_THROW( + { + acquisition->set_doppler_step(250); + })<< "Failure setting doppler_step." << std::endl; - ASSERT_NO_THROW( { - acquisition->connect(top_block); - }) << "Failure connecting acquisition to the top_block." << std::endl; + ASSERT_NO_THROW( + { + acquisition->connect(top_block); + })<< "Failure connecting acquisition to the top_block." << std::endl; // uncomment the next line to load the file from the current directory std::string file = "./GPS_L1_CA_ID_1_Fs_4Msps_2ms.dat"; - // uncomment the next two lines to load the file from the signal samples subdirectory + // uncomment the next two lines to load the file from the signal samples subdirectory //std::string path = std::string(TEST_PATH); //std::string file = path + "signal_samples/GPS_L1_CA_ID_1_Fs_4Msps_2ms.dat"; const char * file_name = file.c_str(); - ASSERT_NO_THROW( { - // for the unit test use dummy blocks to make the flowgraph work and allow the acquisition message to be sent. - // in the actual system there is a flowchart running in parallel so this is not needed + ASSERT_NO_THROW( + { + // for the unit test use dummy blocks to make the flowgraph work and allow the acquisition message to be sent. + // in the actual system there is a flowchart running in parallel so this is not needed - gr::blocks::file_source::sptr file_source = gr::blocks::file_source::make(sizeof(gr_complex), file_name, false); - gr::blocks::null_sink::sptr null_sink = gr::blocks::null_sink::make(sizeof(gr_complex)); - gr::blocks::throttle::sptr throttle_block = gr::blocks::throttle::make(sizeof(gr_complex),1000); + gr::blocks::file_source::sptr file_source = gr::blocks::file_source::make(sizeof(gr_complex), file_name, false); + gr::blocks::null_sink::sptr null_sink = gr::blocks::null_sink::make(sizeof(gr_complex)); + gr::blocks::throttle::sptr throttle_block = gr::blocks::throttle::make(sizeof(gr_complex),1000); - top_block->connect(file_source, 0, throttle_block, 0); - top_block->connect(throttle_block, 0, null_sink, 0); - top_block->msg_connect(acquisition->get_right_block(), pmt::mp("events"), msg_rx, pmt::mp("events")); - }) << "Failure connecting the blocks of acquisition test." << std::endl; + top_block->connect(file_source, 0, throttle_block, 0); + top_block->connect(throttle_block, 0, null_sink, 0); + top_block->msg_connect(acquisition->get_right_block(), pmt::mp("events"), msg_rx, pmt::mp("events")); + })<< "Failure connecting the blocks of acquisition test." << std::endl; - acquisition->set_state(1); // Ensure that acquisition starts at the first state + acquisition->set_state(1); // Ensure that acquisition starts at the first state acquisition->init(); - top_block->start(); // Start the top block + top_block->start(); // Start the top block // start thread that sends the DMA samples to the FPGA - boost::thread t3{thread_acquisition_send_rx_samples, top_block, file_name}; + boost::thread t3 + { thread_acquisition_send_rx_samples, top_block, file_name }; - EXPECT_NO_THROW( { - gettimeofday(&tv, NULL); - begin = tv.tv_sec * 1000000 + tv.tv_usec; - acquisition->reset(); // launch the tracking process - top_block->wait(); - gettimeofday(&tv, NULL); - end = tv.tv_sec * 1000000 + tv.tv_usec; - }) << "Failure running the top_block." << std::endl; + EXPECT_NO_THROW( + { + gettimeofday(&tv, NULL); + begin = tv.tv_sec * 1000000 + tv.tv_usec; + acquisition->reset(); // launch the tracking process + top_block->wait(); + gettimeofday(&tv, NULL); + end = tv.tv_sec * 1000000 + tv.tv_usec; + })<< "Failure running the top_block." << std::endl; t3.join(); - std::cout << "Ran GpsL1CaPcpsAcquisitionTestFpga in " << (end - begin) << " microseconds" << std::endl; + std::cout << "Ran GpsL1CaPcpsAcquisitionTestFpga in " << (end - begin) + << " microseconds" << std::endl; - ASSERT_EQ(1, msg_rx->rx_message) << "Acquisition failure. Expected message: 1=ACQ SUCCESS."; + ASSERT_EQ(1, msg_rx->rx_message) + << "Acquisition failure. Expected message: 1=ACQ SUCCESS."; - double delay_error_samples = std::abs(expected_delay_samples - gnss_synchro.Acq_delay_samples); - float delay_error_chips = (float)(delay_error_samples * 1023 / 4000); - double doppler_error_hz = std::abs(expected_doppler_hz - gnss_synchro.Acq_doppler_hz); + double delay_error_samples = std::abs( + expected_delay_samples - gnss_synchro.Acq_delay_samples); + float delay_error_chips = (float) (delay_error_samples * 1023 / 4000); + double doppler_error_hz = std::abs( + expected_doppler_hz - gnss_synchro.Acq_doppler_hz); - EXPECT_LE(doppler_error_hz, 666) << "Doppler error exceeds the expected value: 666 Hz = 2/(3*integration period)"; - EXPECT_LT(delay_error_chips, 0.5) << "Delay error exceeds the expected value: 0.5 chips"; + EXPECT_LE(doppler_error_hz, 666) + << "Doppler error exceeds the expected value: 666 Hz = 2/(3*integration period)"; + EXPECT_LT(delay_error_chips, 0.5) + << "Delay error exceeds the expected value: 0.5 chips"; } diff --git a/src/tests/unit-tests/signal-processing-blocks/tracking/gps_l1_ca_dll_pll_tracking_test_fpga.cc b/src/tests/unit-tests/signal-processing-blocks/tracking/gps_l1_ca_dll_pll_tracking_test_fpga.cc index ff2ac502c..b09c9933c 100644 --- a/src/tests/unit-tests/signal-processing-blocks/tracking/gps_l1_ca_dll_pll_tracking_test_fpga.cc +++ b/src/tests/unit-tests/signal-processing-blocks/tracking/gps_l1_ca_dll_pll_tracking_test_fpga.cc @@ -31,7 +31,6 @@ * ------------------------------------------------------------------------- */ - #include #include #include @@ -62,115 +61,103 @@ #include "signal_generator_flags.h" #include "interleaved_byte_to_complex_short.h" +#define DMA_TRACK_TRANSFER_SIZE 2046 // DMA transfer size for tracking +#define MIN_SAMPLES_REMAINING 20000 // number of remaining samples in the DMA that causes the CPU to stop the flowgraph (it has to be a bit alrger than 2x max packet size) +#define FIVE_SECONDS 5000000 // five seconds in microseconds -#define MAX_NUM_TEST_CASES 20 -#define MAX_INPUT_SAMPLES_PER_TEST_CASE (8184) -#define MAX_INPUT_SAMPLES_TOTAL MAX_INPUT_SAMPLES_PER_TEST_CASE*MAX_NUM_TEST_CASES -#define DMA_TRANSFER_SIZE 8000 //2046 -#define MIN_SAMPLES_REMAINING 20000 // number of remaining samples in the DMA that causes the CPU to stop the flowgraph (it has to be a bit alrger than 2x max packet size) - - -void wait(int seconds) +void send_tracking_gps_input_samples(FILE *rx_signal_file, + int num_remaining_samples, gr::top_block_sptr top_block) { - boost::this_thread::sleep_for(boost::chrono::seconds{seconds}); -} - -void send_tracking_gps_input_samples(FILE *ptr_myfile, int num_remaining_samples, gr::top_block_sptr top_block) -{ - int num_samples_transferred = 0; - static int flowgraph_stopped = 0; - - char *buffer; - - // DMA descriptor - int tx_fd; - tx_fd = open("/dev/loop_tx", O_WRONLY); - if ( tx_fd < 0 ) + int num_samples_transferred = 0; // number of samples that have been transferred to the DMA so far + static int flowgraph_stopped = 0; // flag to indicate if the flowgraph is stopped already + char *buffer_DMA; // temporary buffer to store the samples to be sent to the DMA + int dma_descr; // DMA descriptor + dma_descr = open("/dev/loop_tx", O_WRONLY); + if (dma_descr < 0) { printf("can't open loop device\n"); exit(1); } - buffer = (char *)malloc(DMA_TRANSFER_SIZE); - if (!buffer) + buffer_DMA = (char *) malloc(DMA_TRACK_TRANSFER_SIZE); + if (!buffer_DMA) { fprintf(stderr, "Memory error!"); } - while(num_remaining_samples > 0) - { + while (num_remaining_samples > 0) + { + if (num_remaining_samples < MIN_SAMPLES_REMAINING) + { + if (flowgraph_stopped == 0) + { + // stop top module + top_block->stop(); + flowgraph_stopped = 1; + } + } + if (num_remaining_samples > DMA_TRACK_TRANSFER_SIZE) + { - if (num_remaining_samples < MIN_SAMPLES_REMAINING) - { - if (flowgraph_stopped == 0) - { - // stop top module - top_block->stop(); - flowgraph_stopped = 1; - } - } - if (num_remaining_samples > DMA_TRANSFER_SIZE) - { + fread(buffer_DMA, DMA_TRACK_TRANSFER_SIZE, 1, + rx_signal_file); - fread(buffer, DMA_TRANSFER_SIZE, 1, ptr_myfile); + assert( + DMA_TRACK_TRANSFER_SIZE == write(dma_descr, &buffer_DMA[0], DMA_TRACK_TRANSFER_SIZE)); + num_remaining_samples = num_remaining_samples + - DMA_TRACK_TRANSFER_SIZE; + num_samples_transferred = num_samples_transferred + + DMA_TRACK_TRANSFER_SIZE; + } + else + { + fread(buffer_DMA, num_remaining_samples, 1, rx_signal_file); - assert( DMA_TRANSFER_SIZE == write(tx_fd, &buffer[0], DMA_TRANSFER_SIZE) ); - num_remaining_samples = num_remaining_samples - DMA_TRANSFER_SIZE; - num_samples_transferred = num_samples_transferred + DMA_TRANSFER_SIZE; - } - else - { - fread(buffer, num_remaining_samples, 1, ptr_myfile); + assert( + num_remaining_samples == write(dma_descr, &buffer_DMA[0], num_remaining_samples)); + num_samples_transferred = num_samples_transferred + + num_remaining_samples; + num_remaining_samples = 0; + } + } - assert( num_remaining_samples == write(tx_fd, &buffer[0], num_remaining_samples) ); - num_samples_transferred = num_samples_transferred + num_remaining_samples; - num_remaining_samples = 0; - } - } - - - free(buffer); - close(tx_fd); + free(buffer_DMA); + close(dma_descr); } - // thread that sends the samples to the FPGA void thread(gr::top_block_sptr top_block, const char * file_name) { // file descriptor - FILE *ptr_myfile; - int fileLen; + FILE *rx_signal_file; // file descriptor + int file_length; // length of the file containing the received samples - ptr_myfile = fopen(file_name,"rb"); - if (!ptr_myfile) + rx_signal_file = fopen(file_name, "rb"); + if (!rx_signal_file) { printf("Unable to open file!"); } - fseek(ptr_myfile, 0, SEEK_END); - fileLen = ftell(ptr_myfile); - fseek(ptr_myfile, 0, SEEK_SET); + fseek(rx_signal_file, 0, SEEK_END); + file_length = ftell(rx_signal_file); + fseek(rx_signal_file, 0, SEEK_SET); - wait(5); // wait for some time to give time to the other thread to program the device + usleep(FIVE_SECONDS); // wait for some time to give time to the other thread to program the device - //send_tracking_gps_input_samples(tx_fd, ptr_myfile, fileLen); - send_tracking_gps_input_samples(ptr_myfile, fileLen, top_block); + //send_tracking_gps_input_samples(dma_descr, rx_signal_file, file_length); + send_tracking_gps_input_samples(rx_signal_file, file_length, top_block); - fclose(ptr_myfile); + fclose(rx_signal_file); } - // ######## GNURADIO BLOCK MESSAGE RECEVER ######### class GpsL1CADllPllTrackingTestFpga_msg_rx; - typedef boost::shared_ptr GpsL1CADllPllTrackingTestFpga_msg_rx_sptr; - GpsL1CADllPllTrackingTestFpga_msg_rx_sptr GpsL1CADllPllTrackingTestFpga_msg_rx_make(); - class GpsL1CADllPllTrackingTestFpga_msg_rx : public gr::block { private: @@ -183,44 +170,46 @@ public: ~GpsL1CADllPllTrackingTestFpga_msg_rx(); //!< Default destructor }; - GpsL1CADllPllTrackingTestFpga_msg_rx_sptr GpsL1CADllPllTrackingTestFpga_msg_rx_make() { - return GpsL1CADllPllTrackingTestFpga_msg_rx_sptr(new GpsL1CADllPllTrackingTestFpga_msg_rx()); + return GpsL1CADllPllTrackingTestFpga_msg_rx_sptr( + new GpsL1CADllPllTrackingTestFpga_msg_rx()); } - void GpsL1CADllPllTrackingTestFpga_msg_rx::msg_handler_events(pmt::pmt_t msg) { try - { + { long int message = pmt::to_long(msg); rx_message = message; - } - catch(boost::bad_any_cast& e) - { + } + catch (boost::bad_any_cast& e) + { LOG(WARNING) << "msg_handler_telemetry Bad any cast!"; rx_message = 0; - } + } } - GpsL1CADllPllTrackingTestFpga_msg_rx::GpsL1CADllPllTrackingTestFpga_msg_rx() : - gr::block("GpsL1CADllPllTrackingTestFpga_msg_rx", gr::io_signature::make(0, 0, 0), gr::io_signature::make(0, 0, 0)) + gr::block("GpsL1CADllPllTrackingTestFpga_msg_rx", + gr::io_signature::make(0, 0, 0), + gr::io_signature::make(0, 0, 0)) { this->message_port_register_in(pmt::mp("events")); - this->set_msg_handler(pmt::mp("events"), boost::bind(&GpsL1CADllPllTrackingTestFpga_msg_rx::msg_handler_events, this, _1)); + this->set_msg_handler(pmt::mp("events"), + boost::bind( + &GpsL1CADllPllTrackingTestFpga_msg_rx::msg_handler_events, + this, _1)); rx_message = 0; } - GpsL1CADllPllTrackingTestFpga_msg_rx::~GpsL1CADllPllTrackingTestFpga_msg_rx() -{} +{ +} // ########################################################### - -class GpsL1CADllPllTrackingTestFpga: public ::testing::Test +class GpsL1CADllPllTrackingTestFpga : public ::testing::Test { public: std::string generator_binary; @@ -237,18 +226,12 @@ public: int configure_generator(); int generate_signal(); - void check_results_doppler(arma::vec true_time_s, - arma::vec true_value, - arma::vec meas_time_s, - arma::vec meas_value); + void check_results_doppler(arma::vec true_time_s, arma::vec true_value, + arma::vec meas_time_s, arma::vec meas_value); void check_results_acc_carrier_phase(arma::vec true_time_s, - arma::vec true_value, - arma::vec meas_time_s, - arma::vec meas_value); - void check_results_codephase(arma::vec true_time_s, - arma::vec true_value, - arma::vec meas_time_s, - arma::vec meas_value); + arma::vec true_value, arma::vec meas_time_s, arma::vec meas_value); + void check_results_codephase(arma::vec true_time_s, arma::vec true_value, + arma::vec meas_time_s, arma::vec meas_value); GpsL1CADllPllTrackingTestFpga() { @@ -259,7 +242,8 @@ public: } ~GpsL1CADllPllTrackingTestFpga() - {} + { + } void configure_receiver(); @@ -270,33 +254,36 @@ public: size_t item_size; }; - int GpsL1CADllPllTrackingTestFpga::configure_generator() { // Configure signal generator generator_binary = FLAGS_generator_binary; p1 = std::string("-rinex_nav_file=") + FLAGS_rinex_nav_file; - if(FLAGS_dynamic_position.empty()) + if (FLAGS_dynamic_position.empty()) { - p2 = std::string("-static_position=") + FLAGS_static_position + std::string(",") + std::to_string(FLAGS_duration * 10); + p2 = std::string("-static_position=") + FLAGS_static_position + + std::string(",") + std::to_string(FLAGS_duration * 10); } else { - p2 = std::string("-obs_pos_file=") + std::string(FLAGS_dynamic_position); + p2 = std::string("-obs_pos_file=") + + std::string(FLAGS_dynamic_position); } p3 = std::string("-rinex_obs_file=") + FLAGS_filename_rinex_obs; // RINEX 2.10 observation file output p4 = std::string("-sig_out_file=") + FLAGS_filename_raw_data; // Baseband signal output file. Will be stored in int8_t IQ multiplexed samples - p5 = std::string("-sampling_freq=") + std::to_string(baseband_sampling_freq); //Baseband sampling frequency [MSps] + p5 = std::string("-sampling_freq=") + + std::to_string(baseband_sampling_freq); //Baseband sampling frequency [MSps] return 0; } - int GpsL1CADllPllTrackingTestFpga::generate_signal() { int child_status; - char *const parmList[] = { &generator_binary[0], &generator_binary[0], &p1[0], &p2[0], &p3[0], &p4[0], &p5[0], NULL }; + char * const parmList[] = + { &generator_binary[0], &generator_binary[0], &p1[0], &p2[0], &p3[0], + &p4[0], &p5[0], NULL }; int pid; if ((pid = fork()) == -1) @@ -304,17 +291,18 @@ int GpsL1CADllPllTrackingTestFpga::generate_signal() else if (pid == 0) { execv(&generator_binary[0], parmList); - std::cout << "Return not expected. Must be an execv err." << std::endl; + std::cout << "Return not expected. Must be an execv err." + << std::endl; std::terminate(); } waitpid(pid, &child_status, 0); - std::cout << "Signal and Observables RINEX and RAW files created." << std::endl; + std::cout << "Signal and Observables RINEX and RAW files created." + << std::endl; return 0; } - void GpsL1CADllPllTrackingTestFpga::configure_receiver() { gnss_synchro.Channel_ID = 0; @@ -323,9 +311,11 @@ void GpsL1CADllPllTrackingTestFpga::configure_receiver() signal.copy(gnss_synchro.Signal, 2, 0); gnss_synchro.PRN = FLAGS_test_satellite_PRN; - config->set_property("GNSS-SDR.internal_fs_hz", std::to_string(baseband_sampling_freq)); + config->set_property("GNSS-SDR.internal_fs_hz", + std::to_string(baseband_sampling_freq)); // Set Tracking - config->set_property("Tracking_1C.implementation", "GPS_L1_CA_DLL_PLL_C_Aid_Tracking_Fpga"); + config->set_property("Tracking_1C.implementation", + "GPS_L1_CA_DLL_PLL_C_Aid_Tracking_Fpga"); config->set_property("Tracking_1C.item_type", "cshort"); config->set_property("Tracking_1C.if", "0"); config->set_property("Tracking_1C.dump", "true"); @@ -337,11 +327,8 @@ void GpsL1CADllPllTrackingTestFpga::configure_receiver() config->set_property("Tracking_1C.device_base", "1"); } - void GpsL1CADllPllTrackingTestFpga::check_results_doppler(arma::vec true_time_s, - arma::vec true_value, - arma::vec meas_time_s, - arma::vec meas_value) + arma::vec true_value, arma::vec meas_time_s, arma::vec meas_value) { //1. True value interpolation to match the measurement times arma::vec true_value_interp; @@ -364,14 +351,13 @@ void GpsL1CADllPllTrackingTestFpga::check_results_doppler(arma::vec true_time_s, //5. report std::cout << std::setprecision(10) << "TRK Doppler RMSE=" << rmse - << ", mean=" << error_mean - << ", stdev="<< sqrt(error_var) << " (max,min)=" << max_error << "," << min_error << " [Hz]" << std::endl; + << ", mean=" << error_mean << ", stdev=" << sqrt(error_var) + << " (max,min)=" << max_error << "," << min_error << " [Hz]" + << std::endl; } - -void GpsL1CADllPllTrackingTestFpga::check_results_acc_carrier_phase(arma::vec true_time_s, - arma::vec true_value, - arma::vec meas_time_s, +void GpsL1CADllPllTrackingTestFpga::check_results_acc_carrier_phase( + arma::vec true_time_s, arma::vec true_value, arma::vec meas_time_s, arma::vec meas_value) { //1. True value interpolation to match the measurement times @@ -395,15 +381,14 @@ void GpsL1CADllPllTrackingTestFpga::check_results_acc_carrier_phase(arma::vec tr //5. report std::cout << std::setprecision(10) << "TRK acc carrier phase RMSE=" << rmse - << ", mean=" << error_mean - << ", stdev=" << sqrt(error_var) << " (max,min)=" << max_error << "," << min_error << " [Hz]" << std::endl; + << ", mean=" << error_mean << ", stdev=" << sqrt(error_var) + << " (max,min)=" << max_error << "," << min_error << " [Hz]" + << std::endl; } - -void GpsL1CADllPllTrackingTestFpga::check_results_codephase(arma::vec true_time_s, - arma::vec true_value, - arma::vec meas_time_s, +void GpsL1CADllPllTrackingTestFpga::check_results_codephase( + arma::vec true_time_s, arma::vec true_value, arma::vec meas_time_s, arma::vec meas_value) { //1. True value interpolation to match the measurement times @@ -426,11 +411,11 @@ void GpsL1CADllPllTrackingTestFpga::check_results_codephase(arma::vec true_time_ //5. report std::cout << std::setprecision(10) << "TRK code phase RMSE=" << rmse - << ", mean=" << error_mean - << ", stdev=" << sqrt(error_var) << " (max,min)=" << max_error << "," << min_error << " [Chips]" << std::endl; + << ", mean=" << error_mean << ", stdev=" << sqrt(error_var) + << " (max,min)=" << max_error << "," << min_error << " [Chips]" + << std::endl; } - TEST_F(GpsL1CADllPllTrackingTestFpga, ValidationOfResultsFpga) { configure_generator(); @@ -451,69 +436,84 @@ TEST_F(GpsL1CADllPllTrackingTestFpga, ValidationOfResultsFpga) std::string true_obs_file = std::string("./gps_l1_ca_obs_prn"); true_obs_file.append(std::to_string(test_satellite_PRN)); true_obs_file.append(".dat"); - ASSERT_NO_THROW({ - if (true_obs_data.open_obs_file(true_obs_file) == false) - { - throw std::exception(); - }; - }) << "Failure opening true observables file" << std::endl; + ASSERT_NO_THROW( + { + if (true_obs_data.open_obs_file(true_obs_file) == false) + { + throw std::exception(); + }; + })<< "Failure opening true observables file" << std::endl; top_block = gr::make_top_block("Tracking test"); - std::shared_ptr tracking = std::make_shared(config.get(), "Tracking_1C", 1, 1); + std::shared_ptr tracking = std::make_shared + < GpsL1CaDllPllCAidTrackingFpga + > (config.get(), "Tracking_1C", 1, 1); - boost::shared_ptr msg_rx = GpsL1CADllPllTrackingTestFpga_msg_rx_make(); + boost::shared_ptr msg_rx = + GpsL1CADllPllTrackingTestFpga_msg_rx_make(); // load acquisition data based on the first epoch of the true observations - ASSERT_NO_THROW({ - if (true_obs_data.read_binary_obs() == false) - { - throw std::exception(); - }; - }) << "Failure reading true observables file" << std::endl; + ASSERT_NO_THROW( + { + if (true_obs_data.read_binary_obs() == false) + { + throw std::exception(); + }; + })<< "Failure reading true observables file" << std::endl; //restart the epoch counter true_obs_data.restart(); - std::cout << "Initial Doppler [Hz]=" << true_obs_data.doppler_l1_hz << " Initial code delay [Chips]=" << true_obs_data.prn_delay_chips << std::endl; - gnss_synchro.Acq_delay_samples = (GPS_L1_CA_CODE_LENGTH_CHIPS - true_obs_data.prn_delay_chips / GPS_L1_CA_CODE_LENGTH_CHIPS) * baseband_sampling_freq * GPS_L1_CA_CODE_PERIOD; + std::cout << "Initial Doppler [Hz]=" << true_obs_data.doppler_l1_hz + << " Initial code delay [Chips]=" << true_obs_data.prn_delay_chips + << std::endl; + gnss_synchro.Acq_delay_samples = (GPS_L1_CA_CODE_LENGTH_CHIPS + - true_obs_data.prn_delay_chips / GPS_L1_CA_CODE_LENGTH_CHIPS) + * baseband_sampling_freq * GPS_L1_CA_CODE_PERIOD; gnss_synchro.Acq_doppler_hz = true_obs_data.doppler_l1_hz; gnss_synchro.Acq_samplestamp_samples = 0; - ASSERT_NO_THROW( { - tracking->set_channel(gnss_synchro.Channel_ID); - }) << "Failure setting channel." << std::endl; + ASSERT_NO_THROW( + { + tracking->set_channel(gnss_synchro.Channel_ID); + })<< "Failure setting channel." << std::endl; - ASSERT_NO_THROW( { - tracking->set_gnss_synchro(&gnss_synchro); - }) << "Failure setting gnss_synchro." << std::endl; + ASSERT_NO_THROW( + { + tracking->set_gnss_synchro(&gnss_synchro); + })<< "Failure setting gnss_synchro." << std::endl; - ASSERT_NO_THROW( { - tracking->connect(top_block); - }) << "Failure connecting tracking to the top_block." << std::endl; + ASSERT_NO_THROW( + { + tracking->connect(top_block); + })<< "Failure connecting tracking to the top_block." << std::endl; - ASSERT_NO_THROW( { - gr::blocks::null_sink::sptr sink = gr::blocks::null_sink::make(sizeof(Gnss_Synchro)); - top_block->connect(tracking->get_right_block(), 0, sink, 0); - top_block->msg_connect(tracking->get_right_block(), pmt::mp("events"), msg_rx, pmt::mp("events")); - }) << "Failure connecting the blocks of tracking test." << std::endl; + ASSERT_NO_THROW( + { + gr::blocks::null_sink::sptr sink = gr::blocks::null_sink::make(sizeof(Gnss_Synchro)); + top_block->connect(tracking->get_right_block(), 0, sink, 0); + top_block->msg_connect(tracking->get_right_block(), pmt::mp("events"), msg_rx, pmt::mp("events")); + })<< "Failure connecting the blocks of tracking test." << std::endl; tracking->start_tracking(); // assemble again the file name in a null terminated string (not available by default in the main program flow) - std::string file = "./" + filename_raw_data; + std::string file = "./" + filename_raw_data; const char * file_name = file.c_str(); // start thread that sends the DMA samples to the FPGA - boost::thread t{thread, top_block, file_name}; + boost::thread t + { thread, top_block, file_name }; - EXPECT_NO_THROW( { - gettimeofday(&tv, NULL); - begin = tv.tv_sec * 1000000 + tv.tv_usec; - top_block->run(); // Start threads and wait - tracking->reset(); // unlock the channel - gettimeofday(&tv, NULL); - end = tv.tv_sec * 1000000 + tv.tv_usec; - }) << "Failure running the top_block." << std::endl; + EXPECT_NO_THROW( + { + gettimeofday(&tv, NULL); + begin = tv.tv_sec * 1000000 + tv.tv_usec; + top_block->run(); // Start threads and wait + tracking->reset();// unlock the channel + gettimeofday(&tv, NULL); + end = tv.tv_sec * 1000000 + tv.tv_usec; + })<< "Failure running the top_block." << std::endl; // wait until child thread terminates t.join(); @@ -530,10 +530,11 @@ TEST_F(GpsL1CADllPllTrackingTestFpga, ValidationOfResultsFpga) arma::vec true_tow_s = arma::zeros(nepoch, 1); long int epoch_counter = 0; - while(true_obs_data.read_binary_obs()) + while (true_obs_data.read_binary_obs()) { true_timestamp_s(epoch_counter) = true_obs_data.signal_timestamp_s; - true_acc_carrier_phase_cycles(epoch_counter) = true_obs_data.acc_carrier_phase_cycles; + true_acc_carrier_phase_cycles(epoch_counter) = + true_obs_data.acc_carrier_phase_cycles; true_Doppler_Hz(epoch_counter) = true_obs_data.doppler_l1_hz; true_prn_delay_chips(epoch_counter) = true_obs_data.prn_delay_chips; true_tow_s(epoch_counter) = true_obs_data.tow; @@ -542,12 +543,13 @@ TEST_F(GpsL1CADllPllTrackingTestFpga, ValidationOfResultsFpga) //load the measured values tracking_dump_reader trk_dump; - ASSERT_NO_THROW({ - if (trk_dump.open_obs_file(std::string("./tracking_ch_0.dat")) == false) - { - throw std::exception(); - }; - }) << "Failure opening tracking dump file" << std::endl; + ASSERT_NO_THROW( + { + if (trk_dump.open_obs_file(std::string("./tracking_ch_0.dat")) == false) + { + throw std::exception(); + }; + })<< "Failure opening tracking dump file" << std::endl; nepoch = trk_dump.num_epochs(); std::cout << "Measured observation epochs=" << nepoch << std::endl; @@ -558,15 +560,23 @@ TEST_F(GpsL1CADllPllTrackingTestFpga, ValidationOfResultsFpga) arma::vec trk_prn_delay_chips = arma::zeros(nepoch, 1); epoch_counter = 0; - while(trk_dump.read_binary_obs()) + while (trk_dump.read_binary_obs()) { - trk_timestamp_s(epoch_counter) = static_cast(trk_dump.PRN_start_sample_count) / static_cast(baseband_sampling_freq); - trk_acc_carrier_phase_cycles(epoch_counter) = trk_dump.acc_carrier_phase_rad / GPS_TWO_PI; + trk_timestamp_s(epoch_counter) = + static_cast(trk_dump.PRN_start_sample_count) + / static_cast(baseband_sampling_freq); + trk_acc_carrier_phase_cycles(epoch_counter) = + trk_dump.acc_carrier_phase_rad / GPS_TWO_PI; trk_Doppler_Hz(epoch_counter) = trk_dump.carrier_doppler_hz; - double delay_chips = GPS_L1_CA_CODE_LENGTH_CHIPS - - GPS_L1_CA_CODE_LENGTH_CHIPS - * (fmod((static_cast(trk_dump.PRN_start_sample_count) + trk_dump.aux1) / static_cast(baseband_sampling_freq), 1.0e-3) /1.0e-3); + double delay_chips = + GPS_L1_CA_CODE_LENGTH_CHIPS + - GPS_L1_CA_CODE_LENGTH_CHIPS + * (fmod( + (static_cast(trk_dump.PRN_start_sample_count) + + trk_dump.aux1) + / static_cast(baseband_sampling_freq), + 1.0e-3) / 1.0e-3); trk_prn_delay_chips(epoch_counter) = delay_chips; epoch_counter++; @@ -574,16 +584,27 @@ TEST_F(GpsL1CADllPllTrackingTestFpga, ValidationOfResultsFpga) //Align initial measurements and cut the tracking pull-in transitory double pull_in_offset_s = 1.0; - arma::uvec initial_meas_point = arma::find(trk_timestamp_s >= (true_timestamp_s(0) + pull_in_offset_s), 1, "first"); + arma::uvec initial_meas_point = arma::find( + trk_timestamp_s >= (true_timestamp_s(0) + pull_in_offset_s), 1, + "first"); - trk_timestamp_s = trk_timestamp_s.subvec(initial_meas_point(0), trk_timestamp_s.size() - 1); - trk_acc_carrier_phase_cycles = trk_acc_carrier_phase_cycles.subvec(initial_meas_point(0), trk_acc_carrier_phase_cycles.size() - 1); - trk_Doppler_Hz = trk_Doppler_Hz.subvec(initial_meas_point(0), trk_Doppler_Hz.size() - 1); - trk_prn_delay_chips = trk_prn_delay_chips.subvec(initial_meas_point(0), trk_prn_delay_chips.size() - 1); + trk_timestamp_s = trk_timestamp_s.subvec(initial_meas_point(0), + trk_timestamp_s.size() - 1); + trk_acc_carrier_phase_cycles = trk_acc_carrier_phase_cycles.subvec( + initial_meas_point(0), trk_acc_carrier_phase_cycles.size() - 1); + trk_Doppler_Hz = trk_Doppler_Hz.subvec(initial_meas_point(0), + trk_Doppler_Hz.size() - 1); + trk_prn_delay_chips = trk_prn_delay_chips.subvec(initial_meas_point(0), + trk_prn_delay_chips.size() - 1); - check_results_doppler(true_timestamp_s, true_Doppler_Hz, trk_timestamp_s, trk_Doppler_Hz); - check_results_codephase(true_timestamp_s, true_prn_delay_chips, trk_timestamp_s, trk_prn_delay_chips); - check_results_acc_carrier_phase(true_timestamp_s, true_acc_carrier_phase_cycles, trk_timestamp_s, trk_acc_carrier_phase_cycles); + check_results_doppler(true_timestamp_s, true_Doppler_Hz, trk_timestamp_s, + trk_Doppler_Hz); + check_results_codephase(true_timestamp_s, true_prn_delay_chips, + trk_timestamp_s, trk_prn_delay_chips); + check_results_acc_carrier_phase(true_timestamp_s, + true_acc_carrier_phase_cycles, trk_timestamp_s, + trk_acc_carrier_phase_cycles); - std::cout << "Signal tracking completed in " << (end - begin) << " microseconds" << std::endl; + std::cout << "Signal tracking completed in " << (end - begin) + << " microseconds" << std::endl; } From d80e436fc2dbcf9f3c87dd5cf6dff515e9fe9561 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Mon, 12 Jun 2017 17:47:20 +0200 Subject: [PATCH 038/171] Add missing include (for O_WRONLY) --- .../tracking/gps_l1_ca_dll_pll_tracking_test_fpga.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tests/unit-tests/signal-processing-blocks/tracking/gps_l1_ca_dll_pll_tracking_test_fpga.cc b/src/tests/unit-tests/signal-processing-blocks/tracking/gps_l1_ca_dll_pll_tracking_test_fpga.cc index 855115567..64d02fb40 100644 --- a/src/tests/unit-tests/signal-processing-blocks/tracking/gps_l1_ca_dll_pll_tracking_test_fpga.cc +++ b/src/tests/unit-tests/signal-processing-blocks/tracking/gps_l1_ca_dll_pll_tracking_test_fpga.cc @@ -33,6 +33,7 @@ #include +#include #include #include #include From 0b3a8a081d996c9f72c1bb4f98cdba7781da0d01 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Mon, 12 Jun 2017 17:49:08 +0200 Subject: [PATCH 039/171] Add consistency on messages from different tracking blocks --- .../galileo_e1_dll_pll_veml_tracking_cc.cc | 6 +++--- .../galileo_e1_tcp_connector_tracking_cc.cc | 8 ++++---- .../gnuradio_blocks/galileo_e5a_dll_pll_tracking_cc.cc | 9 ++++----- .../gps_l1_ca_dll_pll_c_aid_tracking_cc.cc | 6 +++--- .../gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc | 8 ++++---- .../gps_l1_ca_dll_pll_c_aid_tracking_sc.cc | 6 +++--- .../gnuradio_blocks/gps_l1_ca_dll_pll_tracking_cc.cc | 6 +++--- .../gnuradio_blocks/gps_l1_ca_dll_pll_tracking_gpu_cc.cc | 6 +++--- .../gps_l1_ca_tcp_connector_tracking_cc.cc | 6 +++--- .../gnuradio_blocks/gps_l2_m_dll_pll_tracking_cc.cc | 8 ++++---- 10 files changed, 34 insertions(+), 35 deletions(-) diff --git a/src/algorithms/tracking/gnuradio_blocks/galileo_e1_dll_pll_veml_tracking_cc.cc b/src/algorithms/tracking/gnuradio_blocks/galileo_e1_dll_pll_veml_tracking_cc.cc index daca4bb28..3928ff0c2 100755 --- a/src/algorithms/tracking/gnuradio_blocks/galileo_e1_dll_pll_veml_tracking_cc.cc +++ b/src/algorithms/tracking/gnuradio_blocks/galileo_e1_dll_pll_veml_tracking_cc.cc @@ -236,7 +236,7 @@ void galileo_e1_dll_pll_veml_tracking_cc::start_tracking() sys = sys_.substr(0, 1); // DEBUG OUTPUT - std::cout << "Tracking start on channel " << d_channel << " for satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) << std::endl; + std::cout << "Tracking of Galileo E1 signal started on channel " << d_channel << " for satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) << std::endl; LOG(INFO) << "Starting tracking of satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) << " on channel " << d_channel; // enable tracking @@ -291,7 +291,7 @@ int galileo_e1_dll_pll_veml_tracking_cc::general_work (int noutput_items __attri acq_trk_shif_correction_samples = d_current_prn_length_samples - std::fmod(static_cast(acq_to_trk_delay_samples), static_cast(d_current_prn_length_samples)); samples_offset = round(d_acq_code_phase_samples + acq_trk_shif_correction_samples); current_synchro_data.Tracking_sample_counter = d_sample_counter + samples_offset; - current_synchro_data.fs=d_fs_in; + current_synchro_data.fs = d_fs_in; *out[0] = current_synchro_data; d_sample_counter = d_sample_counter + samples_offset; //count for the processed samples d_pull_in = false; @@ -417,7 +417,7 @@ int galileo_e1_dll_pll_veml_tracking_cc::general_work (int noutput_items __attri const char * str = str_aux.c_str(); // get a C style null terminated string std::memcpy((void*)current_synchro_data.Signal, str, 3); - current_synchro_data.fs=d_fs_in; + current_synchro_data.fs = d_fs_in; *out[0] = current_synchro_data; if(d_dump) diff --git a/src/algorithms/tracking/gnuradio_blocks/galileo_e1_tcp_connector_tracking_cc.cc b/src/algorithms/tracking/gnuradio_blocks/galileo_e1_tcp_connector_tracking_cc.cc index 7df873fb1..9043d58d2 100644 --- a/src/algorithms/tracking/gnuradio_blocks/galileo_e1_tcp_connector_tracking_cc.cc +++ b/src/algorithms/tracking/gnuradio_blocks/galileo_e1_tcp_connector_tracking_cc.cc @@ -155,7 +155,7 @@ Galileo_E1_Tcp_Connector_Tracking_cc::Galileo_E1_Tcp_Connector_Tracking_cc( d_local_code_shift_chips[4] = d_very_early_late_spc_chips; d_correlation_length_samples = d_vector_length; - + multicorrelator_cpu.init(2 * d_correlation_length_samples, d_n_correlator_taps); //--- Perform initializations ------------------------------ @@ -231,7 +231,7 @@ void Galileo_E1_Tcp_Connector_Tracking_cc::start_tracking() sys = sys_.substr(0,1); // DEBUG OUTPUT - std::cout << "Tracking start on channel " << d_channel << " for satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) << std::endl; + std::cout << "Tracking of Galileo E1 signal started on channel " << d_channel << " for satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) << std::endl; LOG(INFO) << "Starting tracking of satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) << " on channel " << d_channel; // enable tracking @@ -285,7 +285,7 @@ int Galileo_E1_Tcp_Connector_Tracking_cc::general_work (int noutput_items __attr acq_trk_shif_correction_samples = d_current_prn_length_samples - fmod((float)acq_to_trk_delay_samples, (float)d_current_prn_length_samples); samples_offset = round(d_acq_code_phase_samples + acq_trk_shif_correction_samples); current_synchro_data.Tracking_sample_counter = d_sample_counter + samples_offset; - current_synchro_data.fs=d_fs_in; + current_synchro_data.fs = d_fs_in; *out[0] = current_synchro_data; d_sample_counter = d_sample_counter + samples_offset; //count for the processed samples d_pull_in = false; @@ -428,7 +428,7 @@ int Galileo_E1_Tcp_Connector_Tracking_cc::general_work (int noutput_items __attr const char * str = str_aux.c_str(); // get a C style null terminated string std::memcpy((void*)current_synchro_data.Signal, str, 3); - current_synchro_data.fs=d_fs_in; + current_synchro_data.fs = d_fs_in; *out[0] = current_synchro_data; if(d_dump) diff --git a/src/algorithms/tracking/gnuradio_blocks/galileo_e5a_dll_pll_tracking_cc.cc b/src/algorithms/tracking/gnuradio_blocks/galileo_e5a_dll_pll_tracking_cc.cc index 040aef9ea..54d5ca61e 100644 --- a/src/algorithms/tracking/gnuradio_blocks/galileo_e5a_dll_pll_tracking_cc.cc +++ b/src/algorithms/tracking/gnuradio_blocks/galileo_e5a_dll_pll_tracking_cc.cc @@ -301,7 +301,7 @@ void Galileo_E5a_Dll_Pll_Tracking_cc::start_tracking() sys = sys_.substr(0,1); // DEBUG OUTPUT - std::cout << "Tracking Galileo E5a start on channel " << d_channel << " for satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) << std::endl; + std::cout << "Tracking of Galileo E5a signal started on channel " << d_channel << " for satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) << std::endl; LOG(INFO) << "Galileo E5a starting tracking of satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) << " on channel " << d_channel; @@ -420,7 +420,7 @@ int Galileo_E5a_Dll_Pll_Tracking_cc::general_work (int noutput_items __attribute current_synchro_data.Tracking_sample_counter = d_sample_counter; current_synchro_data.Carrier_phase_rads = 0.0; current_synchro_data.CN0_dB_hz = 0.0; - current_synchro_data.fs=d_fs_in; + current_synchro_data.fs = d_fs_in; consume_each(samples_offset); //shift input to perform alignment with local replica return 1; break; @@ -645,8 +645,8 @@ int Galileo_E5a_Dll_Pll_Tracking_cc::general_work (int noutput_items __attribute } } - current_synchro_data.fs=d_fs_in; - current_synchro_data.correlation_length_ms=GALILEO_E5a_CODE_PERIOD_MS; + current_synchro_data.fs = d_fs_in; + current_synchro_data.correlation_length_ms = GALILEO_E5a_CODE_PERIOD_MS; *out[0] = current_synchro_data; if(d_dump) @@ -744,4 +744,3 @@ void Galileo_E5a_Dll_Pll_Tracking_cc::set_gnss_synchro(Gnss_Synchro* p_gnss_sync { d_acquisition_gnss_synchro = p_gnss_synchro; } - diff --git a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_cc.cc b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_cc.cc index 400749eda..5471f5e01 100644 --- a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_cc.cc +++ b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_cc.cc @@ -283,7 +283,7 @@ void gps_l1_ca_dll_pll_c_aid_tracking_cc::start_tracking() sys = sys_.substr(0,1); // DEBUG OUTPUT - std::cout << "Tracking start on channel " << d_channel << " for satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) << std::endl; + std::cout << "Tracking of GPS L1 C/A signal started on channel " << d_channel << " for satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) << std::endl; LOG(INFO) << "Starting tracking of satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) << " on channel " << d_channel; // enable tracking @@ -345,7 +345,7 @@ int gps_l1_ca_dll_pll_c_aid_tracking_cc::general_work (int noutput_items __attri d_acc_carrier_phase_cycles -= d_carrier_phase_step_rad * samples_offset / GPS_TWO_PI; current_synchro_data.Carrier_phase_rads = d_acc_carrier_phase_cycles * GPS_TWO_PI; current_synchro_data.Carrier_Doppler_hz = d_carrier_doppler_hz; - current_synchro_data.fs=d_fs_in; + current_synchro_data.fs = d_fs_in; *out[0] = current_synchro_data; consume_each(samples_offset); // shift input to perform alignment with local replica return 1; @@ -575,7 +575,7 @@ int gps_l1_ca_dll_pll_c_aid_tracking_cc::general_work (int noutput_items __attri current_synchro_data.Tracking_sample_counter = d_sample_counter + d_correlation_length_samples; } //assign the GNURadio block output data - current_synchro_data.fs=d_fs_in; + current_synchro_data.fs = d_fs_in; *out[0] = current_synchro_data; if(d_dump) { diff --git a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc index 19cce7732..05ad5198e 100644 --- a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc +++ b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc @@ -276,7 +276,7 @@ void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::start_tracking() sys = sys_.substr(0,1); // DEBUG OUTPUT - std::cout << "Tracking start on channel " << d_channel << " for satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) << std::endl; + std::cout << "Tracking of GPS L1 C/A signal started on channel " << d_channel << " for satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) << std::endl; LOG(INFO) << "Starting tracking of satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) << " on channel " << d_channel; // enable tracking @@ -318,7 +318,7 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work (int noutput_items __ double code_error_filt_secs_Ti = 0.0; double CURRENT_INTEGRATION_TIME_S = 0.0; double CORRECTED_INTEGRATION_TIME_S = 0.0; - + if (d_enable_tracking == true) { // Fill the acquisition data @@ -338,7 +338,7 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work (int noutput_items __ d_acc_carrier_phase_cycles -= d_carrier_phase_step_rad * samples_offset / GPS_TWO_PI; current_synchro_data.Carrier_phase_rads = d_acc_carrier_phase_cycles * GPS_TWO_PI; current_synchro_data.Carrier_Doppler_hz = d_carrier_doppler_hz; - current_synchro_data.fs=d_fs_in; + current_synchro_data.fs = d_fs_in; *out[0] = current_synchro_data; consume_each(samples_offset); // shift input to perform alignment with local replica multicorrelator_fpga_8sc.set_initial_sample(samples_offset); @@ -569,7 +569,7 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work (int noutput_items __ current_synchro_data.System = {'G'}; current_synchro_data.Tracking_sample_counter = d_sample_counter + d_correlation_length_samples; } - current_synchro_data.fs=d_fs_in; + current_synchro_data.fs = d_fs_in; *out[0] = current_synchro_data; if(d_dump) { diff --git a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_sc.cc b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_sc.cc index 222986554..785f774c3 100644 --- a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_sc.cc +++ b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_sc.cc @@ -285,7 +285,7 @@ void gps_l1_ca_dll_pll_c_aid_tracking_sc::start_tracking() sys = sys_.substr(0,1); // DEBUG OUTPUT - std::cout << "Tracking start on channel " << d_channel << " for satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) << std::endl; + std::cout << "Tracking of GPS L1 C/A signal started on channel " << d_channel << " for satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) << std::endl; LOG(INFO) << "Starting tracking of satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) << " on channel " << d_channel; // enable tracking @@ -349,7 +349,7 @@ int gps_l1_ca_dll_pll_c_aid_tracking_sc::general_work (int noutput_items __attri d_acc_carrier_phase_cycles -= d_carrier_phase_step_rad * samples_offset / GPS_TWO_PI; current_synchro_data.Carrier_phase_rads = d_acc_carrier_phase_cycles * GPS_TWO_PI; current_synchro_data.Carrier_Doppler_hz = d_carrier_doppler_hz; - current_synchro_data.fs=d_fs_in; + current_synchro_data.fs = d_fs_in; *out[0] = current_synchro_data; consume_each(samples_offset); // shift input to perform alignment with local replica return 1; @@ -578,7 +578,7 @@ int gps_l1_ca_dll_pll_c_aid_tracking_sc::general_work (int noutput_items __attri current_synchro_data.System = {'G'}; current_synchro_data.Tracking_sample_counter = d_sample_counter + d_correlation_length_samples; } - current_synchro_data.fs=d_fs_in; + current_synchro_data.fs = d_fs_in; *out[0] = current_synchro_data; if(d_dump) { diff --git a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_tracking_cc.cc b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_tracking_cc.cc index a0a7b6743..f6b7d88ef 100644 --- a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_tracking_cc.cc +++ b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_tracking_cc.cc @@ -253,7 +253,7 @@ void Gps_L1_Ca_Dll_Pll_Tracking_cc::start_tracking() sys = sys_.substr(0,1); // DEBUG OUTPUT - std::cout << "Tracking start on channel " << d_channel << " for satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) << std::endl; + std::cout << "Tracking of GPS L1 C/A signal started on channel " << d_channel << " for satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) << std::endl; LOG(INFO) << "Starting tracking of satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) << " on channel " << d_channel; // enable tracking @@ -315,7 +315,7 @@ int Gps_L1_Ca_Dll_Pll_Tracking_cc::general_work (int noutput_items __attribute__ d_acc_carrier_phase_rad -= d_carrier_phase_step_rad * samples_offset; current_synchro_data.Carrier_phase_rads = d_acc_carrier_phase_rad; current_synchro_data.Carrier_Doppler_hz = d_carrier_doppler_hz; - current_synchro_data.fs=d_fs_in; + current_synchro_data.fs = d_fs_in; current_synchro_data.correlation_length_ms = 1; *out[0] = current_synchro_data; consume_each(samples_offset); // shift input to perform alignment with local replica @@ -433,7 +433,7 @@ int Gps_L1_Ca_Dll_Pll_Tracking_cc::general_work (int noutput_items __attribute__ } //assign the GNURadio block output data - current_synchro_data.fs=d_fs_in; + current_synchro_data.fs = d_fs_in; *out[0] = current_synchro_data; if(d_dump) { diff --git a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_tracking_gpu_cc.cc b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_tracking_gpu_cc.cc index 014b08678..2fc8d9ad1 100644 --- a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_tracking_gpu_cc.cc +++ b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_tracking_gpu_cc.cc @@ -256,7 +256,7 @@ void Gps_L1_Ca_Dll_Pll_Tracking_GPU_cc::start_tracking() sys = sys_.substr(0,1); // DEBUG OUTPUT - std::cout << "Tracking start on channel " << d_channel << " for satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) << std::endl; + std::cout << "Tracking of GPS L1 C/A signal started on channel " << d_channel << " for satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) << std::endl; LOG(INFO) << "Starting tracking of satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) << " on channel " << d_channel; @@ -318,7 +318,7 @@ int Gps_L1_Ca_Dll_Pll_Tracking_GPU_cc::general_work (int noutput_items __attribu acq_trk_shif_correction_samples = d_correlation_length_samples - fmod(static_cast(acq_to_trk_delay_samples), static_cast(d_correlation_length_samples)); samples_offset = round(d_acq_code_phase_samples + acq_trk_shif_correction_samples); current_synchro_data.Tracking_sample_counter = d_sample_counter + samples_offset; - current_synchro_data.fs=d_fs_in; + current_synchro_data.fs = d_fs_in; current_synchro_data.correlation_length_ms = 1; *out[0] = current_synchro_data; d_sample_counter += samples_offset; //count for the processed samples @@ -459,7 +459,7 @@ int Gps_L1_Ca_Dll_Pll_Tracking_GPU_cc::general_work (int noutput_items __attribu } //assign the GNURadio block output data - current_synchro_data.fs=d_fs_in; + current_synchro_data.fs = d_fs_in; *out[0] = current_synchro_data; if(d_dump) diff --git a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_tcp_connector_tracking_cc.cc b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_tcp_connector_tracking_cc.cc index 761d3c39a..1ec68e80c 100644 --- a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_tcp_connector_tracking_cc.cc +++ b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_tcp_connector_tracking_cc.cc @@ -259,7 +259,7 @@ void Gps_L1_Ca_Tcp_Connector_Tracking_cc::start_tracking() sys = sys_.substr(0,1); // DEBUG OUTPUT - std::cout << "Tracking start on channel " << d_channel << " for satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) << std::endl; + std::cout << "Tracking of GPS L1 C/A signal started on channel " << d_channel << " for satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) << std::endl; LOG(INFO) << "Starting tracking of satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) << " on channel " << d_channel; // enable tracking @@ -322,7 +322,7 @@ int Gps_L1_Ca_Tcp_Connector_Tracking_cc::general_work (int noutput_items __attri acq_trk_shif_correction_samples = d_next_prn_length_samples - fmod((float)acq_to_trk_delay_samples, (float)d_next_prn_length_samples); samples_offset = round(d_acq_code_phase_samples + acq_trk_shif_correction_samples); current_synchro_data.Tracking_sample_counter = d_sample_counter + samples_offset; - current_synchro_data.fs=d_fs_in; + current_synchro_data.fs = d_fs_in; *out[0] = current_synchro_data; d_sample_counter_seconds = d_sample_counter_seconds + (((double)samples_offset) / (double)d_fs_in); d_sample_counter = d_sample_counter + samples_offset; //count for the processed samples @@ -470,7 +470,7 @@ int Gps_L1_Ca_Tcp_Connector_Tracking_cc::general_work (int noutput_items __attri const char * str = str_aux.c_str(); // get a C style null terminated string std::memcpy((void*)current_synchro_data.Signal, str, 3); - current_synchro_data.fs=d_fs_in; + current_synchro_data.fs = d_fs_in; *out[0] = current_synchro_data; if(d_dump) diff --git a/src/algorithms/tracking/gnuradio_blocks/gps_l2_m_dll_pll_tracking_cc.cc b/src/algorithms/tracking/gnuradio_blocks/gps_l2_m_dll_pll_tracking_cc.cc index 5c3969379..84a715fa7 100644 --- a/src/algorithms/tracking/gnuradio_blocks/gps_l2_m_dll_pll_tracking_cc.cc +++ b/src/algorithms/tracking/gnuradio_blocks/gps_l2_m_dll_pll_tracking_cc.cc @@ -257,7 +257,7 @@ void gps_l2_m_dll_pll_tracking_cc::start_tracking() sys = sys_.substr(0,1); // DEBUG OUTPUT - std::cout << "Tracking GPS L2CM start on channel " << d_channel << " for satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) << std::endl; + std::cout << "Tracking of GPS L2CM signal started on channel " << d_channel << " for satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) << std::endl; LOG(INFO) << "Starting GPS L2CM tracking of satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) << " on channel " << d_channel; // enable tracking @@ -319,7 +319,7 @@ int gps_l2_m_dll_pll_tracking_cc::general_work (int noutput_items __attribute__( d_acc_carrier_phase_rad -= d_carrier_phase_step_rad * samples_offset; current_synchro_data.Carrier_phase_rads = d_acc_carrier_phase_rad; current_synchro_data.Carrier_Doppler_hz = d_carrier_doppler_hz; - current_synchro_data.fs=d_fs_in; + current_synchro_data.fs = d_fs_in; current_synchro_data.correlation_length_ms = 20; *out[0] = current_synchro_data; consume_each(samples_offset); // shift input to perform alignment with local replica @@ -429,11 +429,11 @@ int gps_l2_m_dll_pll_tracking_cc::general_work (int noutput_items __attribute__( { d_correlator_outs[n] = gr_complex(0,0); } - current_synchro_data.Tracking_sample_counter =d_sample_counter + d_current_prn_length_samples; + current_synchro_data.Tracking_sample_counter = d_sample_counter + d_current_prn_length_samples; current_synchro_data.correlation_length_ms = 20; } //assign the GNURadio block output data - current_synchro_data.fs=d_fs_in; + current_synchro_data.fs = d_fs_in; *out[0] = current_synchro_data; if(d_dump) From 37998c11a4f48f56fdbb62333eb3c1e0f159502a Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Mon, 12 Jun 2017 19:22:52 +0200 Subject: [PATCH 040/171] Add more consistancy in Telemetry messages --- .../galileo_e1b_telemetry_decoder_cc.cc | 18 ++- .../galileo_e5a_telemetry_decoder_cc.cc | 63 ++++---- .../gps_l2c_telemetry_decoder_cc.cc | 140 +++++++++--------- .../libs/gps_l1_ca_subframe_fsm.cc | 8 +- 4 files changed, 117 insertions(+), 112 deletions(-) diff --git a/src/algorithms/telemetry_decoder/gnuradio_blocks/galileo_e1b_telemetry_decoder_cc.cc b/src/algorithms/telemetry_decoder/gnuradio_blocks/galileo_e1b_telemetry_decoder_cc.cc index bb37bd57f..ae8099c8a 100644 --- a/src/algorithms/telemetry_decoder/gnuradio_blocks/galileo_e1b_telemetry_decoder_cc.cc +++ b/src/algorithms/telemetry_decoder/gnuradio_blocks/galileo_e1b_telemetry_decoder_cc.cc @@ -208,13 +208,13 @@ void galileo_e1b_telemetry_decoder_cc::decode_word(double *page_part_symbols,int d_nav.split_page(page_String, flag_even_word_arrived); if(d_nav.flag_CRC_test == true) { - LOG(INFO) << "Galileo CRC correct on channel " << d_channel << " from satellite " << d_satellite; - std::cout << "Galileo CRC correct on channel " << d_channel << " from satellite " << d_satellite << std::endl; + LOG(INFO) << "Galileo E1 CRC correct on channel " << d_channel << " from satellite " << d_satellite; + //std::cout << "Galileo E1 CRC correct on channel " << d_channel << " from satellite " << d_satellite << std::endl; } else { - std::cout << "Galileo CRC error on channel " << d_channel << " from satellite " << d_satellite << std::endl; - LOG(INFO) << "Galileo CRC error on channel " << d_channel << " from satellite " << d_satellite; + std::cout << "Galileo E1 CRC error on channel " << d_channel << " from satellite " << d_satellite << std::endl; + LOG(INFO) << "Galileo E1 CRC error on channel " << d_channel << " from satellite " << d_satellite; } flag_even_word_arrived = 0; } @@ -230,7 +230,7 @@ void galileo_e1b_telemetry_decoder_cc::decode_word(double *page_part_symbols,int { // get object for this SV (mandatory) std::shared_ptr tmp_obj = std::make_shared(d_nav.get_ephemeris()); - + std::cout << "New Galileo E1 I/NAV message received: ephemeris from satellite " << d_satellite << std::endl; this->message_port_pub(pmt::mp("telemetry"), pmt::make_any(tmp_obj)); } @@ -238,12 +238,14 @@ void galileo_e1b_telemetry_decoder_cc::decode_word(double *page_part_symbols,int { // get object for this SV (mandatory) std::shared_ptr tmp_obj = std::make_shared(d_nav.get_iono()); + std::cout << "New Galileo E1 I/NAV message received: iono/GST model parameters from satellite " << d_satellite << std::endl; this->message_port_pub(pmt::mp("telemetry"), pmt::make_any(tmp_obj)); } if (d_nav.have_new_utc_model() == true) { // get object for this SV (mandatory) std::shared_ptr tmp_obj = std::make_shared(d_nav.get_utc_model()); + std::cout << "New Galileo E1 I/NAV message received: UTC model parameters from satellite " << d_satellite << std::endl; this->message_port_pub(pmt::mp("telemetry"), pmt::make_any(tmp_obj)); } if (d_nav.have_new_almanac() == true) @@ -251,7 +253,7 @@ void galileo_e1b_telemetry_decoder_cc::decode_word(double *page_part_symbols,int std::shared_ptr tmp_obj= std::make_shared(d_nav.get_almanac()); this->message_port_pub(pmt::mp("telemetry"), pmt::make_any(tmp_obj)); //debug - std::cout << "Galileo almanac received!" << std::endl; + std::cout << "Galileo E1 I/NAV almanac received!" << std::endl; DLOG(INFO) << "GPS_to_Galileo time conversion:"; DLOG(INFO) << "A0G=" << tmp_obj->A_0G_10; DLOG(INFO) << "A1G=" << tmp_obj->A_1G_10; @@ -310,7 +312,7 @@ int galileo_e1b_telemetry_decoder_cc::general_work (int noutput_items __attribut if (abs(corr_value) >= d_symbols_per_preamble) { d_preamble_index = d_sample_counter;//record the preamble sample stamp - LOG(INFO) << "Preamble detection for Galileo SAT " << this->d_satellite; + LOG(INFO) << "Preamble detection for Galileo satellite " << this->d_satellite; d_stat = 1; // enter into frame pre-detection status } } @@ -323,7 +325,7 @@ int galileo_e1b_telemetry_decoder_cc::general_work (int noutput_items __attribut if (abs(preamble_diff - GALILEO_INAV_PREAMBLE_PERIOD_SYMBOLS) == 0) { //try to decode frame - LOG(INFO) << "Starting page decoder for Galileo SAT " << this->d_satellite; + LOG(INFO) << "Starting page decoder for Galileo satellite " << this->d_satellite; d_preamble_index = d_sample_counter; //record the preamble sample stamp d_stat = 2; } diff --git a/src/algorithms/telemetry_decoder/gnuradio_blocks/galileo_e5a_telemetry_decoder_cc.cc b/src/algorithms/telemetry_decoder/gnuradio_blocks/galileo_e5a_telemetry_decoder_cc.cc index 14973e191..af9a9f854 100644 --- a/src/algorithms/telemetry_decoder/gnuradio_blocks/galileo_e5a_telemetry_decoder_cc.cc +++ b/src/algorithms/telemetry_decoder/gnuradio_blocks/galileo_e5a_telemetry_decoder_cc.cc @@ -149,34 +149,38 @@ void galileo_e5a_telemetry_decoder_cc::decode_word(double *page_symbols,int fram d_nav.split_page(page_String); if(d_nav.flag_CRC_test == true) { - LOG(INFO) << "Galileo CRC correct on channel " << d_channel << " from satellite " << d_satellite; - std::cout << "Galileo CRC correct on channel " << d_channel << " from satellite " << d_satellite << std::endl; + LOG(INFO) << "Galileo E5a CRC correct on channel " << d_channel << " from satellite " << d_satellite; + //std::cout << "Galileo E5a CRC correct on channel " << d_channel << " from satellite " << d_satellite << std::endl; } else { - std::cout << "Galileo CRC error on channel " << d_channel << " from satellite " << d_satellite << std::endl; - LOG(INFO)<< "Galileo CRC error on channel " << d_channel << " from satellite " << d_satellite; + std::cout << "Galileo E5a CRC error on channel " << d_channel << " from satellite " << d_satellite << std::endl; + LOG(INFO)<< "Galileo E5a CRC error on channel " << d_channel << " from satellite " << d_satellite; } // 4. Push the new navigation data to the queues if (d_nav.have_new_ephemeris() == true) { - std::shared_ptr tmp_obj= std::make_shared(d_nav.get_ephemeris()); + std::shared_ptr tmp_obj = std::make_shared(d_nav.get_ephemeris()); + std::cout << "New Galileo E5a F/NAV message received: ephemeris from satellite " << d_satellite << std::endl; this->message_port_pub(pmt::mp("telemetry"), pmt::make_any(tmp_obj)); } if (d_nav.have_new_iono_and_GST() == true) { - std::shared_ptr tmp_obj= std::make_shared(d_nav.get_iono()); + std::shared_ptr tmp_obj = std::make_shared(d_nav.get_iono()); + std::cout << "New Galileo E5a F/NAV message received: iono/GST model parameters from satellite " << d_satellite << std::endl; this->message_port_pub(pmt::mp("telemetry"), pmt::make_any(tmp_obj)); } if (d_nav.have_new_utc_model() == true) { - std::shared_ptr tmp_obj= std::make_shared(d_nav.get_utc_model()); + std::shared_ptr tmp_obj = std::make_shared(d_nav.get_utc_model()); + std::cout << "New Galileo E5a F/NAV message received: UTC model parameters from satellite " << d_satellite << std::endl; this->message_port_pub(pmt::mp("telemetry"), pmt::make_any(tmp_obj)); } } + galileo_e5a_telemetry_decoder_cc::galileo_e5a_telemetry_decoder_cc( Gnss_Satellite satellite, bool dump) : gr::block("galileo_e5a_telemetry_decoder_cc", gr::io_signature::make(1, 1, sizeof(Gnss_Synchro)), @@ -232,7 +236,7 @@ galileo_e5a_telemetry_decoder_cc::~galileo_e5a_telemetry_decoder_cc() int galileo_e5a_telemetry_decoder_cc::general_work (int noutput_items __attribute__((unused)), gr_vector_int &ninput_items __attribute__((unused)), - gr_vector_const_void_star &input_items, gr_vector_void_star &output_items) + gr_vector_const_void_star &input_items, gr_vector_void_star &output_items) { const Gnss_Synchro *in = (const Gnss_Synchro *) input_items[0]; // input Gnss_Synchro *out = (Gnss_Synchro *) output_items[0]; // output @@ -293,16 +297,16 @@ int galileo_e5a_telemetry_decoder_cc::general_work (int noutput_items __attribut d_symbol_counter++; d_prompt_counter = 0; // **** Attempt Preamble correlation **** - bool corr_flag=true; + bool corr_flag = true; int corr_sign = 0; // sequence can be found inverted // check if the preamble starts positive correlated or negative correlated if (d_page_symbols[d_symbol_counter - GALILEO_FNAV_PREAMBLE_LENGTH_BITS] < 0) // symbols clipping { - corr_sign=-d_preamble_bits[0]; + corr_sign = -d_preamble_bits[0]; } else { - corr_sign=d_preamble_bits[0]; + corr_sign = d_preamble_bits[0]; } // the preamble is fully correlated only if maintains corr_sign along the whole sequence for (int i = 1; i < GALILEO_FNAV_PREAMBLE_LENGTH_BITS; i++) @@ -310,21 +314,21 @@ int galileo_e5a_telemetry_decoder_cc::general_work (int noutput_items __attribut if (d_page_symbols[d_symbol_counter - GALILEO_FNAV_PREAMBLE_LENGTH_BITS + i] < 0 && d_preamble_bits[i]+corr_sign != 0) { //exit for - corr_flag=false; + corr_flag = false; break; } if (d_page_symbols[d_symbol_counter - GALILEO_FNAV_PREAMBLE_LENGTH_BITS + i] > 0 && d_preamble_bits[i]+corr_sign == 0) { //exit for - corr_flag=false; + corr_flag = false; break; } } // - if (corr_flag==true) // preamble fully correlates + if (corr_flag == true) // preamble fully correlates { d_preamble_index = d_sample_counter - GALILEO_FNAV_CODES_PER_PREAMBLE;//record the preamble sample stamp. Remember correlation appears at the end of the preamble in this design - LOG(INFO) << "Preamble detection for Galileo SAT " << this->d_satellite << std::endl; + LOG(INFO) << "Preamble detection in E5a for Galileo satellite " << this->d_satellite << std::endl; d_symbol_counter = 0; // d_page_symbols start right after preamble and finish at the end of next preamble. d_state = 2; // preamble lock } @@ -365,11 +369,11 @@ int galileo_e5a_telemetry_decoder_cc::general_work (int noutput_items __attribut // check if the preamble starts positive correlated or negative correlated if (d_page_symbols[d_symbol_counter - GALILEO_FNAV_PREAMBLE_LENGTH_BITS] < 0) // symbols clipping { - corr_sign=-d_preamble_bits[0]; + corr_sign = -d_preamble_bits[0]; } else { - corr_sign=d_preamble_bits[0]; + corr_sign = d_preamble_bits[0]; } // the preamble is fully correlated only if maintains corr_sign along the whole sequence for (int i = 1; i < GALILEO_FNAV_PREAMBLE_LENGTH_BITS; i++) @@ -377,18 +381,18 @@ int galileo_e5a_telemetry_decoder_cc::general_work (int noutput_items __attribut if (d_page_symbols[d_symbol_counter - GALILEO_FNAV_PREAMBLE_LENGTH_BITS + i] < 0 && d_preamble_bits[i]+corr_sign != 0) { //exit for - corr_flag=false; + corr_flag = false; break; } if (d_page_symbols[d_symbol_counter - GALILEO_FNAV_PREAMBLE_LENGTH_BITS + i] > 0 && d_preamble_bits[i]+corr_sign == 0) { //exit for - corr_flag=false; + corr_flag = false; break; } } - if (corr_flag==true) // NEW PREAMBLE RECEIVED. DECODE PAGE + if (corr_flag == true) // NEW PREAMBLE RECEIVED. DECODE PAGE { d_preamble_index = d_sample_counter - GALILEO_FNAV_CODES_PER_PREAMBLE;//record the preamble sample stamp // DECODE WORD @@ -402,7 +406,8 @@ int galileo_e5a_telemetry_decoder_cc::general_work (int noutput_items __attribut { d_flag_frame_sync = true; DLOG(INFO) << " Frame sync SAT " << this->d_satellite << " with preamble start at " - << in[0].Tracking_sample_counter << " [samples]"; } + << in[0].Tracking_sample_counter << " [samples]"; + } d_symbol_counter = 0; // d_page_symbols start right after preamble and finish at the end of next preamble. } else @@ -495,14 +500,14 @@ int galileo_e5a_telemetry_decoder_cc::general_work (int noutput_items __attribut // MULTIPLEXED FILE RECORDING - Record results to file try { - double tmp_double; - unsigned long int tmp_ulong_int; - tmp_double = d_TOW_at_current_symbol; - d_dump_file.write((char*)&tmp_double, sizeof(double)); - tmp_ulong_int = current_synchro_data.Tracking_sample_counter; - d_dump_file.write((char*)&tmp_ulong_int, sizeof(unsigned long int)); - tmp_double = d_TOW_at_Preamble; - d_dump_file.write((char*)&tmp_double, sizeof(double)); + double tmp_double; + unsigned long int tmp_ulong_int; + tmp_double = d_TOW_at_current_symbol; + d_dump_file.write((char*)&tmp_double, sizeof(double)); + tmp_ulong_int = current_synchro_data.Tracking_sample_counter; + d_dump_file.write((char*)&tmp_ulong_int, sizeof(unsigned long int)); + tmp_double = d_TOW_at_Preamble; + d_dump_file.write((char*)&tmp_double, sizeof(double)); } catch (const std::ifstream::failure & e) { diff --git a/src/algorithms/telemetry_decoder/gnuradio_blocks/gps_l2c_telemetry_decoder_cc.cc b/src/algorithms/telemetry_decoder/gnuradio_blocks/gps_l2c_telemetry_decoder_cc.cc index 5b8a6cfb4..f112b5569 100644 --- a/src/algorithms/telemetry_decoder/gnuradio_blocks/gps_l2c_telemetry_decoder_cc.cc +++ b/src/algorithms/telemetry_decoder/gnuradio_blocks/gps_l2c_telemetry_decoder_cc.cc @@ -65,8 +65,8 @@ gps_l2c_telemetry_decoder_cc::gps_l2c_telemetry_decoder_cc( d_flag_valid_word = false; d_TOW_at_current_symbol = 0; d_TOW_at_Preamble = 0; - d_state=0; //initial state - d_crc_error_count=0; + d_state = 0; //initial state + d_crc_error_count = 0; //initialize the CNAV frame decoder (libswiftcnav) cnav_msg_decoder_init(&d_cnav_decoder); @@ -91,7 +91,7 @@ int gps_l2c_telemetry_decoder_cc::general_work (int noutput_items __attribute__( u32 delay = 0; //add the symbol to the decoder - u8 symbol_clip=(u8)(in[0].Prompt_I>0) * 255; + u8 symbol_clip = (u8)(in[0].Prompt_I > 0) * 255; flag_new_cnav_frame = cnav_msg_decoder_add_symbol(&d_cnav_decoder, symbol_clip, &msg, &delay); consume_each(1); //one by one @@ -105,79 +105,80 @@ int gps_l2c_telemetry_decoder_cc::general_work (int noutput_items __attribute__( //2. Add the telemetry decoder information //check if new CNAV frame is available if (flag_new_cnav_frame == true) - { - std::bitset raw_bits; - //Expand packet bits to bitsets. Notice the reverse order of the bits sequence, required by the CNAV message decoder - for (u32 i = 0; i < GPS_L2_CNAV_DATA_PAGE_BITS ; i++) { - raw_bits[GPS_L2_CNAV_DATA_PAGE_BITS-1-i]=((msg.raw_msg[i/8] >> (7 - i%8)) & 1u); - } - - d_CNAV_Message.decode_page(raw_bits); - - //Push the new navigation data to the queues - if (d_CNAV_Message.have_new_ephemeris() == true) - { - // get ephemeris object for this SV - std::shared_ptr tmp_obj= std::make_shared(d_CNAV_Message.get_ephemeris()); - std::cout << "New GPS CNAV Ephemeris received for SV " << tmp_obj->i_satellite_PRN << std::endl; - this->message_port_pub(pmt::mp("telemetry"), pmt::make_any(tmp_obj)); - - } - if (d_CNAV_Message.have_new_iono() == true) - { - std::shared_ptr tmp_obj= std::make_shared(d_CNAV_Message.get_iono()); - std::cout << "New GPS CNAV IONO model received for SV " << d_satellite.get_PRN() << std::endl; - this->message_port_pub(pmt::mp("telemetry"), pmt::make_any(tmp_obj)); - } - - if (d_CNAV_Message.have_new_utc_model() == true) - { - std::shared_ptr tmp_obj= std::make_shared(d_CNAV_Message.get_utc_model()); - std::cout << "New GPS CNAV UTC model received for SV " << d_satellite.get_PRN() << std::endl; - this->message_port_pub(pmt::mp("telemetry"), pmt::make_any(tmp_obj)); - } - - //update TOW at the preamble instant - d_TOW_at_Preamble=(int)msg.tow; - //std::cout<<"["<<(int)msg.prn<<"] deco delay: "<tow * 6000 + *pdelay * 20 - d_TOW_at_current_symbol=((double)msg.tow) * 6.0 + ((double)delay) * GPS_L2_M_PERIOD +12*GPS_L2_M_PERIOD; - d_TOW_at_current_symbol=floor(d_TOW_at_current_symbol*1000.0)/1000.0; - d_flag_valid_word=true; - } - else - { - d_TOW_at_current_symbol +=GPS_L2_M_PERIOD; - if (current_synchro_data.Flag_valid_symbol_output==false) { - d_flag_valid_word=false; - } - } - current_synchro_data.TOW_at_current_symbol_s = d_TOW_at_current_symbol; - current_synchro_data.Flag_valid_word=d_flag_valid_word; + std::bitset raw_bits; + //Expand packet bits to bitsets. Notice the reverse order of the bits sequence, required by the CNAV message decoder + for (u32 i = 0; i < GPS_L2_CNAV_DATA_PAGE_BITS ; i++) + { + raw_bits[GPS_L2_CNAV_DATA_PAGE_BITS - 1 - i] = ((msg.raw_msg[i/8] >> (7 - i%8)) & 1u); + } -// if (flag_PLL_180_deg_phase_locked == true) -// { -// //correct the accumulated phase for the Costas loop phase shift, if required -// current_synchro_data.Carrier_phase_rads += GPS_PI; -// } + d_CNAV_Message.decode_page(raw_bits); + + //Push the new navigation data to the queues + if (d_CNAV_Message.have_new_ephemeris() == true) + { + // get ephemeris object for this SV + std::shared_ptr tmp_obj = std::make_shared(d_CNAV_Message.get_ephemeris()); + std::cout << "New GPS CNAV message received: ephemeris from satellite " << d_satellite << std::endl; + this->message_port_pub(pmt::mp("telemetry"), pmt::make_any(tmp_obj)); + + } + if (d_CNAV_Message.have_new_iono() == true) + { + std::shared_ptr tmp_obj = std::make_shared(d_CNAV_Message.get_iono()); + std::cout << "New GPS CNAV message received: iono model parameters from satellite " << d_satellite << std::endl; + this->message_port_pub(pmt::mp("telemetry"), pmt::make_any(tmp_obj)); + } + + if (d_CNAV_Message.have_new_utc_model() == true) + { + std::shared_ptr tmp_obj = std::make_shared(d_CNAV_Message.get_utc_model()); + std::cout << "New GPS CNAV message received: UTC model parameters from satellite " << d_satellite << std::endl; + this->message_port_pub(pmt::mp("telemetry"), pmt::make_any(tmp_obj)); + } + + //update TOW at the preamble instant + d_TOW_at_Preamble = (int)msg.tow; + //std::cout<<"["<<(int)msg.prn<<"] deco delay: "<tow * 6000 + *pdelay * 20 + d_TOW_at_current_symbol = ((double)msg.tow) * 6.0 + ((double)delay) * GPS_L2_M_PERIOD + 12 * GPS_L2_M_PERIOD; + d_TOW_at_current_symbol = floor(d_TOW_at_current_symbol * 1000.0) / 1000.0; + d_flag_valid_word = true; + } + else + { + d_TOW_at_current_symbol += GPS_L2_M_PERIOD; + if (current_synchro_data.Flag_valid_symbol_output == false) + { + d_flag_valid_word = false; + } + } + current_synchro_data.TOW_at_current_symbol_s = d_TOW_at_current_symbol; + current_synchro_data.Flag_valid_word = d_flag_valid_word; + + // if (flag_PLL_180_deg_phase_locked == true) + // { + // //correct the accumulated phase for the Costas loop phase shift, if required + // current_synchro_data.Carrier_phase_rads += GPS_PI; + // } if(d_dump == true) { // MULTIPLEXED FILE RECORDING - Record results to file try { - double tmp_double; - unsigned long int tmp_ulong_int; - tmp_double = d_TOW_at_current_symbol; - d_dump_file.write((char*)&tmp_double, sizeof(double)); - tmp_ulong_int = current_synchro_data.Tracking_sample_counter; - d_dump_file.write((char*)&tmp_ulong_int, sizeof(unsigned long int)); - tmp_double = d_TOW_at_Preamble; - d_dump_file.write((char*)&tmp_double, sizeof(double)); + double tmp_double; + unsigned long int tmp_ulong_int; + tmp_double = d_TOW_at_current_symbol; + d_dump_file.write((char*)&tmp_double, sizeof(double)); + tmp_ulong_int = current_synchro_data.Tracking_sample_counter; + d_dump_file.write((char*)&tmp_ulong_int, sizeof(unsigned long int)); + tmp_double = d_TOW_at_Preamble; + d_dump_file.write((char*)&tmp_double, sizeof(double)); } catch (const std::ifstream::failure & e) { @@ -185,14 +186,12 @@ int gps_l2c_telemetry_decoder_cc::general_work (int noutput_items __attribute__( } } - //3. Make the output (copy the object contents to the GNURadio reserved memory) out[0] = current_synchro_data; return 1; } - void gps_l2c_telemetry_decoder_cc::set_satellite(Gnss_Satellite satellite) { d_satellite = Gnss_Satellite(satellite.get_system(), satellite.get_PRN()); @@ -200,7 +199,6 @@ void gps_l2c_telemetry_decoder_cc::set_satellite(Gnss_Satellite satellite) } - void gps_l2c_telemetry_decoder_cc::set_channel(int channel) { d_channel = channel; diff --git a/src/algorithms/telemetry_decoder/libs/gps_l1_ca_subframe_fsm.cc b/src/algorithms/telemetry_decoder/libs/gps_l1_ca_subframe_fsm.cc index 45eefc1e2..68d286822 100644 --- a/src/algorithms/telemetry_decoder/libs/gps_l1_ca_subframe_fsm.cc +++ b/src/algorithms/telemetry_decoder/libs/gps_l1_ca_subframe_fsm.cc @@ -238,8 +238,8 @@ GpsL1CaSubframeFsm::GpsL1CaSubframeFsm() d_nav.reset(); i_channel_ID = 0; i_satellite_PRN = 0; - d_subframe_ID=0; - d_flag_new_subframe=false; + d_subframe_ID = 0; + d_flag_new_subframe = false; initiate(); //start the FSM } @@ -253,14 +253,14 @@ void GpsL1CaSubframeFsm::gps_word_to_subframe(int position) void GpsL1CaSubframeFsm::clear_flag_new_subframe() { - d_flag_new_subframe=false; + d_flag_new_subframe = false; } void GpsL1CaSubframeFsm::gps_subframe_to_nav_msg() { //int subframe_ID; // NEW GPS SUBFRAME HAS ARRIVED! d_subframe_ID = d_nav.subframe_decoder(this->d_subframe); //decode the subframe - std::cout << "NAV Message: received subframe " + std::cout << "New GPS NAV message received: subframe " << d_subframe_ID << " from satellite " << Gnss_Satellite(std::string("GPS"), i_satellite_PRN) << std::endl; d_nav.i_satellite_PRN = i_satellite_PRN; From 7b4f65476c8bf55e104a8d36ad8c397a1c5478ed Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Tue, 13 Jun 2017 11:25:37 +0200 Subject: [PATCH 041/171] Remove/add blank lines --- .../gps_l1_ca_pcps_acquisition_fpga.cc | 41 +++++++------------ .../gps_pcps_acquisition_fpga_sc.cc | 24 +++++------ ...ps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc | 11 +++-- 3 files changed, 33 insertions(+), 43 deletions(-) diff --git a/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_acquisition_fpga.cc b/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_acquisition_fpga.cc index 441784851..ecbbfb3d9 100644 --- a/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_acquisition_fpga.cc +++ b/src/algorithms/acquisition/adapters/gps_l1_ca_pcps_acquisition_fpga.cc @@ -121,7 +121,6 @@ GpsL1CaPcpsAcquisitionFpga::GpsL1CaPcpsAcquisitionFpga( select_queue_Fpga, device_name, dump, dump_filename); DLOG(INFO) << "acquisition(" << gps_acquisition_fpga_sc_->unique_id() << ")"; - } else { @@ -134,19 +133,19 @@ GpsL1CaPcpsAcquisitionFpga::GpsL1CaPcpsAcquisitionFpga( gnss_synchro_ = 0; } + GpsL1CaPcpsAcquisitionFpga::~GpsL1CaPcpsAcquisitionFpga() { - } + void GpsL1CaPcpsAcquisitionFpga::set_channel(unsigned int channel) { channel_ = channel; - gps_acquisition_fpga_sc_->set_channel(channel_); - } + void GpsL1CaPcpsAcquisitionFpga::set_threshold(float threshold) { float pfa = configuration_->property(role_ + ".pfa", 0.0); @@ -161,68 +160,62 @@ void GpsL1CaPcpsAcquisitionFpga::set_threshold(float threshold) } DLOG(INFO) << "Channel " << channel_ << " Threshold = " << threshold_; - gps_acquisition_fpga_sc_->set_threshold(threshold_); - } + void GpsL1CaPcpsAcquisitionFpga::set_doppler_max(unsigned int doppler_max) { doppler_max_ = doppler_max; - gps_acquisition_fpga_sc_->set_doppler_max(doppler_max_); - } + void GpsL1CaPcpsAcquisitionFpga::set_doppler_step(unsigned int doppler_step) { doppler_step_ = doppler_step; - gps_acquisition_fpga_sc_->set_doppler_step(doppler_step_); - } + void GpsL1CaPcpsAcquisitionFpga::set_gnss_synchro(Gnss_Synchro* gnss_synchro) { gnss_synchro_ = gnss_synchro; - gps_acquisition_fpga_sc_->set_gnss_synchro(gnss_synchro_); } + signed int GpsL1CaPcpsAcquisitionFpga::mag() { - return gps_acquisition_fpga_sc_->mag(); } + void GpsL1CaPcpsAcquisitionFpga::init() { - gps_acquisition_fpga_sc_->init(); - set_local_code(); } + void GpsL1CaPcpsAcquisitionFpga::set_local_code() { - gps_acquisition_fpga_sc_->set_local_code(); - } + void GpsL1CaPcpsAcquisitionFpga::reset() { - gps_acquisition_fpga_sc_->set_active(true); - } + void GpsL1CaPcpsAcquisitionFpga::set_state(int state) { - gps_acquisition_fpga_sc_->set_state(state); } + float GpsL1CaPcpsAcquisitionFpga::calculate_threshold(float pfa) { //Calculate the threshold @@ -245,27 +238,23 @@ float GpsL1CaPcpsAcquisitionFpga::calculate_threshold(float pfa) void GpsL1CaPcpsAcquisitionFpga::connect(gr::top_block_sptr top_block) { - //nothing to connect } + void GpsL1CaPcpsAcquisitionFpga::disconnect(gr::top_block_sptr top_block) { - //nothing to disconnect } + gr::basic_block_sptr GpsL1CaPcpsAcquisitionFpga::get_left_block() { - return gps_acquisition_fpga_sc_; - } + gr::basic_block_sptr GpsL1CaPcpsAcquisitionFpga::get_right_block() { - return gps_acquisition_fpga_sc_; - } - diff --git a/src/algorithms/acquisition/gnuradio_blocks/gps_pcps_acquisition_fpga_sc.cc b/src/algorithms/acquisition/gnuradio_blocks/gps_pcps_acquisition_fpga_sc.cc index 9e6380121..2d0833732 100644 --- a/src/algorithms/acquisition/gnuradio_blocks/gps_pcps_acquisition_fpga_sc.cc +++ b/src/algorithms/acquisition/gnuradio_blocks/gps_pcps_acquisition_fpga_sc.cc @@ -48,6 +48,7 @@ void wait3(int seconds) { seconds }); } + gps_pcps_acquisition_fpga_sc_sptr gps_pcps_make_acquisition_fpga_sc( unsigned int sampled_ms, unsigned int max_dwells, unsigned int doppler_max, long freq, long fs_in, int samples_per_ms, @@ -56,7 +57,6 @@ gps_pcps_acquisition_fpga_sc_sptr gps_pcps_make_acquisition_fpga_sc( unsigned int select_queue_Fpga, std::string device_name, bool dump, std::string dump_filename) { - return gps_pcps_acquisition_fpga_sc_sptr( new gps_pcps_acquisition_fpga_sc(sampled_ms, max_dwells, doppler_max, freq, fs_in, samples_per_ms, samples_per_code, @@ -65,6 +65,7 @@ gps_pcps_acquisition_fpga_sc_sptr gps_pcps_make_acquisition_fpga_sc( dump, dump_filename)); } + gps_pcps_acquisition_fpga_sc::gps_pcps_acquisition_fpga_sc( unsigned int sampled_ms, unsigned int max_dwells, unsigned int doppler_max, long freq, long fs_in, int samples_per_ms, @@ -101,15 +102,13 @@ gps_pcps_acquisition_fpga_sc::gps_pcps_acquisition_fpga_sc( d_gnss_synchro = 0; // instantiate HW accelerator class - acquisition_fpga_8sc = - std::make_shared < gps_fpga_acquisition_8sc - > (device_name, vector_length, d_fft_size, nsamples_total, fs_in, freq, sampled_ms, select_queue_Fpga); - + acquisition_fpga_8sc = std::make_shared < gps_fpga_acquisition_8sc> + (device_name, vector_length, d_fft_size, nsamples_total, fs_in, freq, sampled_ms, select_queue_Fpga); } + gps_pcps_acquisition_fpga_sc::~gps_pcps_acquisition_fpga_sc() { - if (d_dump) { d_dump_file.close(); @@ -118,13 +117,13 @@ gps_pcps_acquisition_fpga_sc::~gps_pcps_acquisition_fpga_sc() acquisition_fpga_8sc->free(); } + void gps_pcps_acquisition_fpga_sc::set_local_code() { - acquisition_fpga_8sc->set_local_code(d_gnss_synchro->PRN); - } + void gps_pcps_acquisition_fpga_sc::init() { d_gnss_synchro->Flag_valid_acquisition = false; @@ -144,9 +143,9 @@ void gps_pcps_acquisition_fpga_sc::init() acquisition_fpga_8sc->open_device(); acquisition_fpga_8sc->init(); - } + void gps_pcps_acquisition_fpga_sc::set_state(int state) { d_state = state; @@ -165,12 +164,11 @@ void gps_pcps_acquisition_fpga_sc::set_state(int state) { LOG(ERROR) << "State can only be set to 0 or 1"; } - } + void gps_pcps_acquisition_fpga_sc::set_active(bool active) { - float temp_peak_to_noise_level = 0.0; float peak_to_noise_level = 0.0; float input_power; @@ -283,7 +281,6 @@ void gps_pcps_acquisition_fpga_sc::set_active(bool active) acquisition_message = 1; this->message_port_pub(pmt::mp("events"), pmt::from_long(acquisition_message)); - } else { @@ -307,7 +304,6 @@ void gps_pcps_acquisition_fpga_sc::set_active(bool active) acquisition_message = 2; this->message_port_pub(pmt::mp("events"), pmt::from_long(acquisition_message)); - } acquisition_fpga_8sc->unblock_samples(); @@ -315,9 +311,9 @@ void gps_pcps_acquisition_fpga_sc::set_active(bool active) acquisition_fpga_8sc->close_device(); DLOG(INFO) << "Done. Consumed 1 item."; - } + int gps_pcps_acquisition_fpga_sc::general_work(int noutput_items, gr_vector_int &ninput_items, gr_vector_const_void_star &input_items, gr_vector_void_star &output_items __attribute__((unused))) diff --git a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc index deb8758cb..e466898a6 100644 --- a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc +++ b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc @@ -71,6 +71,7 @@ gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc_sptr gps_l1_ca_dll_pll_c_aid_make_track early_late_space_chips, device_name, device_base)); } + void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::msg_handler_preamble_index( pmt::pmt_t msg) { @@ -85,6 +86,7 @@ void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::msg_handler_preamble_index( } } + gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc( long if_freq, long fs_in, unsigned int vector_length, bool dump, std::string dump_filename, float pll_bw_hz, float dll_bw_hz, @@ -96,7 +98,6 @@ gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::gps_l1_ca_dll_pll_c_aid_tracking_fpga_ gr::io_signature::make(1, 1, sizeof(Gnss_Synchro))) { - // Telemetry bit synchronization message port input this->message_port_register_in(pmt::mp("preamble_timestamp_s")); this->set_msg_handler(pmt::mp("preamble_timestamp_s"), @@ -202,9 +203,9 @@ gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::gps_l1_ca_dll_pll_c_aid_tracking_fpga_ d_preamble_timestamp_s = 0.0; d_carr_phase_error_secs_Ti = 0.0; //set_min_output_buffer((long int)300); - } + void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::start_tracking() { /* @@ -316,6 +317,7 @@ void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::start_tracking() << " PULL-IN Code Phase [samples]=" << d_acq_code_phase_samples; } + gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::~gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc() { d_dump_file.close(); @@ -329,13 +331,13 @@ gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::~gps_l1_ca_dll_pll_c_aid_tracking_fpga multicorrelator_fpga_8sc->free(); } + int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work( int noutput_items __attribute__((unused)), gr_vector_int &ninput_items __attribute__((unused)), gr_vector_const_void_star &input_items, gr_vector_void_star &output_items) { - // samples offset int samples_offset; @@ -829,6 +831,7 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work( return 1; //output tracking result ALWAYS even in the case of d_enable_tracking==false } + void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::set_channel(unsigned int channel) { d_channel = channel; @@ -864,12 +867,14 @@ void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::set_channel(unsigned int channel) } } + void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::set_gnss_synchro( Gnss_Synchro* p_gnss_synchro) { d_acquisition_gnss_synchro = p_gnss_synchro; } + void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::reset(void) { multicorrelator_fpga_8sc->unlock_channel(); From 61b41bf3a82e148e4fd70a95d929f82d9a855d56 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Fri, 16 Jun 2017 21:24:14 +0200 Subject: [PATCH 042/171] Add PRN in binary data written by Tracking blocks if dump=true Matlab scripts updated --- .../galileo_e1_dll_pll_veml_tracking_cc.cc | 10 +- .../galileo_e1_tcp_connector_tracking_cc.cc | 4 + .../galileo_e5a_dll_pll_tracking_cc.cc | 20 +- .../gps_l1_ca_dll_pll_c_aid_tracking_cc.cc | 6 +- ...ps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc | 4 + .../gps_l1_ca_dll_pll_c_aid_tracking_sc.cc | 8 +- .../gps_l1_ca_dll_pll_tracking_cc.cc | 4 + .../gps_l1_ca_dll_pll_tracking_gpu_cc.cc | 8 +- .../gps_l1_ca_tcp_connector_tracking_cc.cc | 4 + .../gps_l2_m_dll_pll_tracking_cc.cc | 402 +++++++++--------- .../gps_l2_m_dll_pll_tracking_cc.h | 2 +- ... => galileo_e1_dll_pll_veml_plot_sample.m} | 50 +-- ...lileo_e1_dll_pll_veml_plot_sample_64bits.m | 93 ---- ...ts.m => galileo_e5a_dll_pll_plot_sample.m} | 40 +- .../gps_l1_ca_dll_fll_pll_plot_sample.m | 88 ---- .../matlab/gps_l1_ca_dll_pll_plot_sample.m | 48 +-- .../gps_l1_ca_dll_pll_plot_sample_64bits.m | 89 ---- ...lileo_e1_dll_pll_veml_read_tracking_dump.m | 243 +++++------ ...1_dll_pll_veml_read_tracking_dump_32bits.m | 192 --------- .../gps_l1_ca_dll_pll_read_tracking_dump.m | 202 ++++----- ..._l1_ca_dll_pll_read_tracking_dump_64bits.m | 179 -------- src/utils/matlab/libs/plotTracking.m | 4 +- src/utils/matlab/libs/plotVEMLTracking.m | 2 +- src/utils/matlab/plotTrackingE5a.m | 24 +- 24 files changed, 503 insertions(+), 1223 deletions(-) rename src/utils/matlab/{galileo_e1_dll_pll_veml_plot_sample_32bits.m => galileo_e1_dll_pll_veml_plot_sample.m} (58%) delete mode 100644 src/utils/matlab/galileo_e1_dll_pll_veml_plot_sample_64bits.m rename src/utils/matlab/{galileo_e5a_dll_pll_plot_sample_64bits.m => galileo_e5a_dll_pll_plot_sample.m} (71%) delete mode 100644 src/utils/matlab/gps_l1_ca_dll_fll_pll_plot_sample.m delete mode 100644 src/utils/matlab/gps_l1_ca_dll_pll_plot_sample_64bits.m delete mode 100644 src/utils/matlab/libs/galileo_e1_dll_pll_veml_read_tracking_dump_32bits.m delete mode 100644 src/utils/matlab/libs/gps_l1_ca_dll_pll_read_tracking_dump_64bits.m diff --git a/src/algorithms/tracking/gnuradio_blocks/galileo_e1_dll_pll_veml_tracking_cc.cc b/src/algorithms/tracking/gnuradio_blocks/galileo_e1_dll_pll_veml_tracking_cc.cc index 3928ff0c2..a16eaaa0a 100755 --- a/src/algorithms/tracking/gnuradio_blocks/galileo_e1_dll_pll_veml_tracking_cc.cc +++ b/src/algorithms/tracking/gnuradio_blocks/galileo_e1_dll_pll_veml_tracking_cc.cc @@ -199,6 +199,7 @@ galileo_e1_dll_pll_veml_tracking_cc::galileo_e1_dll_pll_veml_tracking_cc( d_acc_code_phase_secs = 0.0; } + void galileo_e1_dll_pll_veml_tracking_cc::start_tracking() { d_acq_code_phase_samples = d_acquisition_gnss_synchro->Acq_delay_samples; @@ -247,6 +248,7 @@ void galileo_e1_dll_pll_veml_tracking_cc::start_tracking() << " PULL-IN Code Phase [samples]=" << d_acq_code_phase_samples; } + galileo_e1_dll_pll_veml_tracking_cc::~galileo_e1_dll_pll_veml_tracking_cc() { d_dump_file.close(); @@ -260,7 +262,6 @@ galileo_e1_dll_pll_veml_tracking_cc::~galileo_e1_dll_pll_veml_tracking_cc() } - int galileo_e1_dll_pll_veml_tracking_cc::general_work (int noutput_items __attribute__((unused)), gr_vector_int &ninput_items __attribute__((unused)), gr_vector_const_void_star &input_items, gr_vector_void_star &output_items) { @@ -477,10 +478,13 @@ int galileo_e1_dll_pll_veml_tracking_cc::general_work (int noutput_items __attri d_dump_file.write(reinterpret_cast(&tmp_float), sizeof(float)); tmp_double = static_cast(d_sample_counter + d_current_prn_length_samples); d_dump_file.write(reinterpret_cast(&tmp_double), sizeof(double)); + // PRN + unsigned int prn_ = d_acquisition_gnss_synchro->PRN; + d_dump_file.write(reinterpret_cast(&prn_), sizeof(unsigned int)); } catch (const std::ifstream::failure &e) { - LOG(WARNING) << "Exception writing trk dump file " << e.what() << std::endl; + LOG(WARNING) << "Exception writing trk dump file " << e.what(); } } consume_each(d_current_prn_length_samples); // this is required for gr_block derivates @@ -510,7 +514,7 @@ void galileo_e1_dll_pll_veml_tracking_cc::set_channel(unsigned int channel) } catch (const std::ifstream::failure &e) { - LOG(WARNING) << "channel " << d_channel << " Exception opening trk dump file " << e.what() << std::endl; + LOG(WARNING) << "channel " << d_channel << " Exception opening trk dump file " << e.what(); } } } diff --git a/src/algorithms/tracking/gnuradio_blocks/galileo_e1_tcp_connector_tracking_cc.cc b/src/algorithms/tracking/gnuradio_blocks/galileo_e1_tcp_connector_tracking_cc.cc index 9043d58d2..9e2d23277 100644 --- a/src/algorithms/tracking/gnuradio_blocks/galileo_e1_tcp_connector_tracking_cc.cc +++ b/src/algorithms/tracking/gnuradio_blocks/galileo_e1_tcp_connector_tracking_cc.cc @@ -485,6 +485,10 @@ int Galileo_E1_Tcp_Connector_Tracking_cc::general_work (int noutput_items __attr d_dump_file.write((char*)&tmp_float, sizeof(float)); tmp_double = (double)(d_sample_counter+d_current_prn_length_samples); d_dump_file.write((char*)&tmp_double, sizeof(double)); + + // PRN + unsigned int prn_ = d_acquisition_gnss_synchro->PRN; + d_dump_file.write(reinterpret_cast(&prn_), sizeof(unsigned int)); } catch (const std::ifstream::failure &e) { diff --git a/src/algorithms/tracking/gnuradio_blocks/galileo_e5a_dll_pll_tracking_cc.cc b/src/algorithms/tracking/gnuradio_blocks/galileo_e5a_dll_pll_tracking_cc.cc index 54d5ca61e..cacfd2091 100644 --- a/src/algorithms/tracking/gnuradio_blocks/galileo_e5a_dll_pll_tracking_cc.cc +++ b/src/algorithms/tracking/gnuradio_blocks/galileo_e5a_dll_pll_tracking_cc.cc @@ -304,14 +304,12 @@ void Galileo_E5a_Dll_Pll_Tracking_cc::start_tracking() std::cout << "Tracking of Galileo E5a signal started on channel " << d_channel << " for satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) << std::endl; LOG(INFO) << "Galileo E5a starting tracking of satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) << " on channel " << d_channel; - // enable tracking d_state = 1; LOG(INFO) << "PULL-IN Doppler [Hz]=" << d_carrier_doppler_hz << " Code Phase correction [samples]=" << delay_correction_samples << " PULL-IN Code Phase [samples]=" << d_acq_code_phase_samples; - } @@ -434,8 +432,6 @@ int Galileo_E5a_Dll_Pll_Tracking_cc::general_work (int noutput_items __attribute // Secondary code Chip if (d_secondary_lock) { - // sec_sign_Q = gr_complex((Galileo_E5a_Q_SECONDARY_CODE[d_acquisition_gnss_synchro->PRN-1].at(d_secondary_delay)=='0' ? 1 : -1),0); - // sec_sign_I = gr_complex((Galileo_E5a_I_SECONDARY_CODE.at(d_secondary_delay%Galileo_E5a_I_SECONDARY_CODE_LENGTH)=='0' ? 1 : -1),0); sec_sign_Q = gr_complex((Galileo_E5a_Q_SECONDARY_CODE[d_acquisition_gnss_synchro->PRN-1].at(d_secondary_delay) == '0' ? -1 : 1), 0); sec_sign_I = gr_complex((Galileo_E5a_I_SECONDARY_CODE.at(d_secondary_delay % Galileo_E5a_I_SECONDARY_CODE_LENGTH) == '0' ? -1 : 1), 0); } @@ -464,7 +460,6 @@ int Galileo_E5a_Dll_Pll_Tracking_cc::general_work (int noutput_items __attribute multicorrelator_cpu_Q.set_local_code_and_taps(Galileo_E5a_CODE_LENGTH_CHIPS, d_codeQ, d_local_code_shift_chips); multicorrelator_cpu_I.set_local_code_and_taps(Galileo_E5a_CODE_LENGTH_CHIPS, d_codeI, &d_local_code_shift_chips[1]); - // ################# CARRIER WIPEOFF AND CORRELATORS ############################## // perform carrier wipe-off and compute Early, Prompt and Late correlation multicorrelator_cpu_Q.set_input_output_vectors(d_correlator_outs,in); @@ -487,7 +482,6 @@ int Galileo_E5a_Dll_Pll_Tracking_cc::general_work (int noutput_items __attribute code_phase_step_chips, d_current_prn_length_samples); - // Accumulate results (coherent integration since there are no bit transitions in pilot signal) d_Early += (*d_Single_Early) * sec_sign_Q; d_Prompt += (*d_Single_Prompt) * sec_sign_Q; @@ -516,9 +510,9 @@ int Galileo_E5a_Dll_Pll_Tracking_cc::general_work (int noutput_items __attribute // New code Doppler frequency estimation d_code_freq_chips = Galileo_E5a_CODE_CHIP_RATE_HZ + ((d_carrier_doppler_hz * Galileo_E5a_CODE_CHIP_RATE_HZ) / Galileo_E5a_FREQ_HZ); } - //carrier phase accumulator for (K) doppler estimation + // carrier phase accumulator for (K) doppler estimation d_acc_carrier_phase_rad -= 2.0 * GALILEO_PI * d_carrier_doppler_hz * GALILEO_E5a_CODE_PERIOD; - //remanent carrier phase to prevent overflow in the code NCO + // remnant carrier phase to prevent overflow in the code NCO d_rem_carr_phase_rad = d_rem_carr_phase_rad + 2.0 * GALILEO_PI * d_carrier_doppler_hz * GALILEO_E5a_CODE_PERIOD; d_rem_carr_phase_rad = fmod(d_rem_carr_phase_rad, 2.0 * GALILEO_PI); @@ -628,7 +622,6 @@ int Galileo_E5a_Dll_Pll_Tracking_cc::general_work (int noutput_items __attribute current_synchro_data.Carrier_phase_rads = d_acc_carrier_phase_rad; current_synchro_data.Carrier_Doppler_hz = d_carrier_doppler_hz; current_synchro_data.CN0_dB_hz = d_CN0_SNV_dB_Hz; - } else { @@ -638,7 +631,6 @@ int Galileo_E5a_Dll_Pll_Tracking_cc::general_work (int noutput_items __attribute current_synchro_data.Tracking_sample_counter = d_sample_counter; current_synchro_data.Carrier_phase_rads = 0.0; current_synchro_data.CN0_dB_hz = 0.0; - } break; @@ -700,6 +692,10 @@ int Galileo_E5a_Dll_Pll_Tracking_cc::general_work (int noutput_items __attribute tmp_double = static_cast(d_sample_counter + d_current_prn_length_samples); d_dump_file.write(reinterpret_cast(&tmp_double), sizeof(double)); + // PRN + unsigned int prn_ = d_acquisition_gnss_synchro->PRN; + d_dump_file.write(reinterpret_cast(&prn_), sizeof(unsigned int)); + } catch (const std::ifstream::failure & e) { @@ -729,11 +725,11 @@ void Galileo_E5a_Dll_Pll_Tracking_cc::set_channel(unsigned int channel) d_dump_filename.append(".dat"); d_dump_file.exceptions (std::ifstream::failbit | std::ifstream::badbit); d_dump_file.open(d_dump_filename.c_str(), std::ios::out | std::ios::binary); - LOG(INFO) << "Tracking dump enabled on channel " << d_channel << " Log file: " << d_dump_filename.c_str() << std::endl; + LOG(INFO) << "Tracking dump enabled on channel " << d_channel << " Log file: " << d_dump_filename.c_str(); } catch (const std::ifstream::failure &e) { - LOG(WARNING) << "channel " << d_channel << " Exception opening trk dump file " << e.what() << std::endl; + LOG(WARNING) << "channel " << d_channel << " Exception opening trk dump file " << e.what(); } } } diff --git a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_cc.cc b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_cc.cc index 5471f5e01..8c94d9e1e 100644 --- a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_cc.cc +++ b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_cc.cc @@ -625,6 +625,10 @@ int gps_l1_ca_dll_pll_c_aid_tracking_cc::general_work (int noutput_items __attri d_dump_file.write(reinterpret_cast(&tmp_double), sizeof(double)); tmp_double = static_cast(d_sample_counter + d_correlation_length_samples); d_dump_file.write(reinterpret_cast(&tmp_double), sizeof(double)); + + // PRN + unsigned int prn_ = d_acquisition_gnss_synchro->PRN; + d_dump_file.write(reinterpret_cast(&prn_), sizeof(unsigned int)); } catch (const std::ifstream::failure* e) { @@ -654,7 +658,7 @@ void gps_l1_ca_dll_pll_c_aid_tracking_cc::set_channel(unsigned int channel) d_dump_filename.append(".dat"); d_dump_file.exceptions (std::ifstream::failbit | std::ifstream::badbit); d_dump_file.open(d_dump_filename.c_str(), std::ios::out | std::ios::binary); - LOG(INFO) << "Tracking dump enabled on channel " << d_channel << " Log file: " << d_dump_filename.c_str() << std::endl; + LOG(INFO) << "Tracking dump enabled on channel " << d_channel << " Log file: " << d_dump_filename.c_str(); } catch (const std::ifstream::failure* e) { diff --git a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc index 05ad5198e..026fb3990 100644 --- a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc +++ b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc @@ -619,6 +619,10 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work (int noutput_items __ d_dump_file.write(reinterpret_cast(&tmp_double), sizeof(double)); tmp_double = static_cast(d_sample_counter + d_correlation_length_samples); d_dump_file.write(reinterpret_cast(&tmp_double), sizeof(double)); + + // PRN + unsigned int prn_ = d_acquisition_gnss_synchro->PRN; + d_dump_file.write(reinterpret_cast(&prn_), sizeof(unsigned int)); } catch (const std::ifstream::failure* e) { diff --git a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_sc.cc b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_sc.cc index 785f774c3..3a2d23acc 100644 --- a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_sc.cc +++ b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_sc.cc @@ -628,6 +628,10 @@ int gps_l1_ca_dll_pll_c_aid_tracking_sc::general_work (int noutput_items __attri d_dump_file.write(reinterpret_cast(&tmp_double), sizeof(double)); tmp_double = static_cast(d_sample_counter + d_correlation_length_samples); d_dump_file.write(reinterpret_cast(&tmp_double), sizeof(double)); + + // PRN + unsigned int prn_ = d_acquisition_gnss_synchro->PRN; + d_dump_file.write(reinterpret_cast(&prn_), sizeof(unsigned int)); } catch (const std::ifstream::failure* e) { @@ -657,11 +661,11 @@ void gps_l1_ca_dll_pll_c_aid_tracking_sc::set_channel(unsigned int channel) d_dump_filename.append(".dat"); d_dump_file.exceptions (std::ifstream::failbit | std::ifstream::badbit); d_dump_file.open(d_dump_filename.c_str(), std::ios::out | std::ios::binary); - LOG(INFO) << "Tracking dump enabled on channel " << d_channel << " Log file: " << d_dump_filename.c_str() << std::endl; + LOG(INFO) << "Tracking dump enabled on channel " << d_channel << " Log file: " << d_dump_filename.c_str(); } catch (const std::ifstream::failure* e) { - LOG(WARNING) << "channel " << d_channel << " Exception opening trk dump file " << e->what() << std::endl; + LOG(WARNING) << "channel " << d_channel << " Exception opening trk dump file " << e->what(); } } } diff --git a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_tracking_cc.cc b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_tracking_cc.cc index f6b7d88ef..89aafca07 100644 --- a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_tracking_cc.cc +++ b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_tracking_cc.cc @@ -484,6 +484,10 @@ int Gps_L1_Ca_Dll_Pll_Tracking_cc::general_work (int noutput_items __attribute__ d_dump_file.write(reinterpret_cast(&tmp_double), sizeof(double)); tmp_double = static_cast(d_sample_counter); d_dump_file.write(reinterpret_cast(&tmp_double), sizeof(double)); + + // PRN + unsigned int prn_ = d_acquisition_gnss_synchro->PRN; + d_dump_file.write(reinterpret_cast(&prn_), sizeof(unsigned int)); } catch (const std::ifstream::failure &e) { diff --git a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_tracking_gpu_cc.cc b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_tracking_gpu_cc.cc index 2fc8d9ad1..437ac23dd 100644 --- a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_tracking_gpu_cc.cc +++ b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_tracking_gpu_cc.cc @@ -510,6 +510,10 @@ int Gps_L1_Ca_Dll_Pll_Tracking_GPU_cc::general_work (int noutput_items __attribu d_dump_file.write(reinterpret_cast(&tmp_double), sizeof(double)); tmp_double = static_cast(d_sample_counter + d_correlation_length_samples); d_dump_file.write(reinterpret_cast(&tmp_double), sizeof(double)); + + // PRN + unsigned int prn_ = d_acquisition_gnss_synchro->PRN; + d_dump_file.write(reinterpret_cast(&prn_), sizeof(unsigned int)); } catch (const std::ifstream::failure* e) { @@ -538,11 +542,11 @@ void Gps_L1_Ca_Dll_Pll_Tracking_GPU_cc::set_channel(unsigned int channel) d_dump_filename.append(".dat"); d_dump_file.exceptions (std::ifstream::failbit | std::ifstream::badbit); d_dump_file.open(d_dump_filename.c_str(), std::ios::out | std::ios::binary); - LOG(INFO) << "Tracking dump enabled on channel " << d_channel << " Log file: " << d_dump_filename.c_str() << std::endl; + LOG(INFO) << "Tracking dump enabled on channel " << d_channel << " Log file: " << d_dump_filename.c_str(); } catch (const std::ifstream::failure* e) { - LOG(WARNING) << "channel " << d_channel << " Exception opening trk dump file " << e->what() << std::endl; + LOG(WARNING) << "channel " << d_channel << " Exception opening trk dump file " << e->what(); } } } diff --git a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_tcp_connector_tracking_cc.cc b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_tcp_connector_tracking_cc.cc index 1ec68e80c..776d9e8f8 100644 --- a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_tcp_connector_tracking_cc.cc +++ b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_tcp_connector_tracking_cc.cc @@ -520,6 +520,10 @@ int Gps_L1_Ca_Tcp_Connector_Tracking_cc::general_work (int noutput_items __attri tmp_float = 0; d_dump_file.write((char*)&tmp_float, sizeof(float)); d_dump_file.write((char*)&d_sample_counter_seconds, sizeof(double)); + + // PRN + unsigned int prn_ = d_acquisition_gnss_synchro->PRN; + d_dump_file.write(reinterpret_cast(&prn_), sizeof(unsigned int)); } catch (const std::ifstream::failure &e) { diff --git a/src/algorithms/tracking/gnuradio_blocks/gps_l2_m_dll_pll_tracking_cc.cc b/src/algorithms/tracking/gnuradio_blocks/gps_l2_m_dll_pll_tracking_cc.cc index 84a715fa7..f6f6c3ed8 100644 --- a/src/algorithms/tracking/gnuradio_blocks/gps_l2_m_dll_pll_tracking_cc.cc +++ b/src/algorithms/tracking/gnuradio_blocks/gps_l2_m_dll_pll_tracking_cc.cc @@ -1,6 +1,6 @@ /*! * \file gps_l2_m_dll_pll_tracking_cc.cc - * \brief Implementation of a code DLL + carrier PLL tracking block + * \brief Implementation of a code DLL + carrier PLL tracking block for GPS L2C * \author Carlos Aviles, 2010. carlos.avilesr(at)googlemail.com * Javier Arribas, 2011. jarribas(at)cttc.es * @@ -87,7 +87,6 @@ void gps_l2_m_dll_pll_tracking_cc::forecast (int noutput_items, } - gps_l2_m_dll_pll_tracking_cc::gps_l2_m_dll_pll_tracking_cc( long if_freq, long fs_in, @@ -131,9 +130,9 @@ gps_l2_m_dll_pll_tracking_cc::gps_l2_m_dll_pll_tracking_cc( d_n_correlator_taps = 3; // Early, Prompt, and Late d_correlator_outs = static_cast(volk_gnsssdr_malloc(d_n_correlator_taps*sizeof(gr_complex), volk_gnsssdr_get_alignment())); for (int n = 0; n < d_n_correlator_taps; n++) - { - d_correlator_outs[n] = gr_complex(0,0); - } + { + d_correlator_outs[n] = gr_complex(0,0); + } d_local_code_shift_chips = static_cast(volk_gnsssdr_malloc(d_n_correlator_taps*sizeof(float), volk_gnsssdr_get_alignment())); // Set TAPs delay values [chips] d_local_code_shift_chips[0] = - d_early_late_spc_chips; @@ -222,9 +221,9 @@ void gps_l2_m_dll_pll_tracking_cc::start_tracking() double corrected_acq_phase_samples, delay_correction_samples; corrected_acq_phase_samples = fmod((d_acq_code_phase_samples + T_prn_diff_seconds * N_prn_diff * static_cast(d_fs_in)), T_prn_true_samples); if (corrected_acq_phase_samples < 0) - { - corrected_acq_phase_samples = T_prn_mod_samples + corrected_acq_phase_samples; - } + { + corrected_acq_phase_samples = T_prn_mod_samples + corrected_acq_phase_samples; + } delay_correction_samples = d_acq_code_phase_samples - corrected_acq_phase_samples; d_acq_code_phase_samples = corrected_acq_phase_samples; @@ -241,9 +240,9 @@ void gps_l2_m_dll_pll_tracking_cc::start_tracking() multicorrelator_cpu.set_local_code_and_taps(static_cast(GPS_L2_M_CODE_LENGTH_CHIPS), d_ca_code, d_local_code_shift_chips); for (int n = 0; n < d_n_correlator_taps; n++) - { - d_correlator_outs[n] = gr_complex(0,0); - } + { + d_correlator_outs[n] = gr_complex(0,0); + } d_carrier_lock_fail_counter = 0; d_rem_code_phase_samples = 0; @@ -265,10 +264,11 @@ void gps_l2_m_dll_pll_tracking_cc::start_tracking() d_enable_tracking = true; LOG(INFO) << "GPS L2CM PULL-IN Doppler [Hz]=" << d_carrier_doppler_hz - << " Code Phase correction [samples]=" << delay_correction_samples - << " PULL-IN Code Phase [samples]=" << d_acq_code_phase_samples; + << " Code Phase correction [samples]=" << delay_correction_samples + << " PULL-IN Code Phase [samples]=" << d_acq_code_phase_samples; } + gps_l2_m_dll_pll_tracking_cc::~gps_l2_m_dll_pll_tracking_cc() { d_dump_file.close(); @@ -282,7 +282,6 @@ gps_l2_m_dll_pll_tracking_cc::~gps_l2_m_dll_pll_tracking_cc() } - int gps_l2_m_dll_pll_tracking_cc::general_work (int noutput_items __attribute__((unused)), gr_vector_int &ninput_items __attribute__((unused)), gr_vector_const_void_star &input_items, gr_vector_void_star &output_items) { @@ -300,230 +299,231 @@ int gps_l2_m_dll_pll_tracking_cc::general_work (int noutput_items __attribute__( Gnss_Synchro **out = (Gnss_Synchro **) &output_items[0]; if (d_enable_tracking == true) - { - // Fill the acquisition data - current_synchro_data = *d_acquisition_gnss_synchro; - // Receiver signal alignment - if (d_pull_in == true) { - int samples_offset; - double acq_trk_shif_correction_samples; - int acq_to_trk_delay_samples; - acq_to_trk_delay_samples = d_sample_counter - d_acq_sample_stamp; - acq_trk_shif_correction_samples = d_current_prn_length_samples - fmod(static_cast(acq_to_trk_delay_samples), static_cast(d_current_prn_length_samples)); - samples_offset = round(d_acq_code_phase_samples + acq_trk_shif_correction_samples); - current_synchro_data.Tracking_sample_counter = d_sample_counter + samples_offset; - d_sample_counter = d_sample_counter + samples_offset; // count for the processed samples - d_pull_in = false; - // take into account the carrier cycles accumulated in the pull in signal alignment - d_acc_carrier_phase_rad -= d_carrier_phase_step_rad * samples_offset; + // Fill the acquisition data + current_synchro_data = *d_acquisition_gnss_synchro; + // Receiver signal alignment + if (d_pull_in == true) + { + int samples_offset; + double acq_trk_shif_correction_samples; + int acq_to_trk_delay_samples; + acq_to_trk_delay_samples = d_sample_counter - d_acq_sample_stamp; + acq_trk_shif_correction_samples = d_current_prn_length_samples - fmod(static_cast(acq_to_trk_delay_samples), static_cast(d_current_prn_length_samples)); + samples_offset = round(d_acq_code_phase_samples + acq_trk_shif_correction_samples); + current_synchro_data.Tracking_sample_counter = d_sample_counter + samples_offset; + d_sample_counter = d_sample_counter + samples_offset; // count for the processed samples + d_pull_in = false; + // take into account the carrier cycles accumulated in the pull in signal alignment + d_acc_carrier_phase_rad -= d_carrier_phase_step_rad * samples_offset; + current_synchro_data.Carrier_phase_rads = d_acc_carrier_phase_rad; + current_synchro_data.Carrier_Doppler_hz = d_carrier_doppler_hz; + current_synchro_data.fs = d_fs_in; + current_synchro_data.correlation_length_ms = 20; + *out[0] = current_synchro_data; + consume_each(samples_offset); // shift input to perform alignment with local replica + return 1; + } + + // ################# CARRIER WIPEOFF AND CORRELATORS ############################## + // perform carrier wipe-off and compute Early, Prompt and Late correlation + multicorrelator_cpu.set_input_output_vectors(d_correlator_outs, in); + multicorrelator_cpu.Carrier_wipeoff_multicorrelator_resampler(d_rem_carr_phase_rad, + d_carrier_phase_step_rad, + d_rem_code_phase_chips, + d_code_phase_step_chips, + d_current_prn_length_samples); + + // ################## PLL ########################################################## + // PLL discriminator + // Update PLL discriminator [rads/Ti -> Secs/Ti] + carr_error_hz = pll_cloop_two_quadrant_atan(d_correlator_outs[1]) / GPS_L2_TWO_PI; + // Carrier discriminator filter + carr_error_filt_hz = d_carrier_loop_filter.get_carrier_nco(carr_error_hz); + // New carrier Doppler frequency estimation + d_carrier_doppler_hz = d_acq_carrier_doppler_hz + carr_error_filt_hz; + // New code Doppler frequency estimation + d_code_freq_chips = GPS_L2_M_CODE_RATE_HZ + ((d_carrier_doppler_hz * GPS_L2_M_CODE_RATE_HZ) / GPS_L2_FREQ_HZ); + + // ################## DLL ########################################################## + // DLL discriminator + code_error_chips = dll_nc_e_minus_l_normalized(d_correlator_outs[0], d_correlator_outs[2]); // [chips/Ti] + // Code discriminator filter + code_error_filt_chips = d_code_loop_filter.get_code_nco(code_error_chips); //[chips/second] + double T_chip_seconds = 1.0 / static_cast(d_code_freq_chips); + double T_prn_seconds = T_chip_seconds * GPS_L2_M_CODE_LENGTH_CHIPS; + double code_error_filt_secs = (T_prn_seconds * code_error_filt_chips*T_chip_seconds); //[seconds] + //double code_error_filt_secs = (GPS_L2_M_PERIOD * code_error_filt_chips) / GPS_L2_M_CODE_RATE_HZ; //[seconds] + + // ################## CARRIER AND CODE NCO BUFFER ALIGNEMENT ####################### + // keep alignment parameters for the next input buffer + // Compute the next buffer length based in the new period of the PRN sequence and the code phase error estimation + double T_prn_samples = T_prn_seconds * static_cast(d_fs_in); + double K_blk_samples = T_prn_samples + d_rem_code_phase_samples + code_error_filt_secs * static_cast(d_fs_in); + d_current_prn_length_samples = round(K_blk_samples); // round to a discrete number of samples + + //################### PLL COMMANDS ################################################# + // carrier phase step (NCO phase increment per sample) [rads/sample] + d_carrier_phase_step_rad = GPS_L2_TWO_PI * d_carrier_doppler_hz / static_cast(d_fs_in); + // remnant carrier phase to prevent overflow in the code NCO + d_rem_carr_phase_rad = d_rem_carr_phase_rad + d_carrier_phase_step_rad * d_current_prn_length_samples; + d_rem_carr_phase_rad = fmod(d_rem_carr_phase_rad, GPS_L2_TWO_PI); + // carrier phase accumulator + d_acc_carrier_phase_rad -= d_carrier_phase_step_rad * d_current_prn_length_samples; + + //################### DLL COMMANDS ################################################# + // code phase step (Code resampler phase increment per sample) [chips/sample] + d_code_phase_step_chips = d_code_freq_chips / static_cast(d_fs_in); + // remnant code phase [chips] + d_rem_code_phase_samples = K_blk_samples - d_current_prn_length_samples; // rounding error < 1 sample + d_rem_code_phase_chips = d_code_freq_chips * (d_rem_code_phase_samples / static_cast(d_fs_in)); + + // ####### CN0 ESTIMATION AND LOCK DETECTORS ###### + if (d_cn0_estimation_counter < GPS_L2M_CN0_ESTIMATION_SAMPLES) + { + // fill buffer with prompt correlator output values + d_Prompt_buffer[d_cn0_estimation_counter] = d_correlator_outs[1]; + d_cn0_estimation_counter++; + } + else + { + d_cn0_estimation_counter = 0; + // Code lock indicator + d_CN0_SNV_dB_Hz = cn0_svn_estimator(d_Prompt_buffer, GPS_L2M_CN0_ESTIMATION_SAMPLES, d_fs_in, GPS_L2_M_CODE_LENGTH_CHIPS); + // Carrier lock indicator + d_carrier_lock_test = carrier_lock_detector(d_Prompt_buffer, GPS_L2M_CN0_ESTIMATION_SAMPLES); + // Loss of lock detection + if (d_carrier_lock_test < d_carrier_lock_threshold or d_CN0_SNV_dB_Hz < GPS_L2M_MINIMUM_VALID_CN0) + { + d_carrier_lock_fail_counter++; + } + else + { + if (d_carrier_lock_fail_counter > 0) d_carrier_lock_fail_counter--; + } + if (d_carrier_lock_fail_counter > GPS_L2M_MAXIMUM_LOCK_FAIL_COUNTER) + { + std::cout << "Loss of lock in channel " << d_channel << "!" << std::endl; + LOG(INFO) << "Loss of lock in channel " << d_channel << "!"; + this->message_port_pub(pmt::mp("events"), pmt::from_long(3));//3 -> loss of lock + d_carrier_lock_fail_counter = 0; + d_enable_tracking = false; // TODO: check if disabling tracking is consistent with the channel state machine + } + } + // ########### Output the tracking data to navigation and PVT ########## + current_synchro_data.Prompt_I = static_cast(d_correlator_outs[1].real()); + current_synchro_data.Prompt_Q = static_cast(d_correlator_outs[1].imag()); + current_synchro_data.Tracking_sample_counter = d_sample_counter + d_current_prn_length_samples; + current_synchro_data.Code_phase_samples = d_rem_code_phase_samples; current_synchro_data.Carrier_phase_rads = d_acc_carrier_phase_rad; current_synchro_data.Carrier_Doppler_hz = d_carrier_doppler_hz; - current_synchro_data.fs = d_fs_in; + current_synchro_data.CN0_dB_hz = d_CN0_SNV_dB_Hz; + current_synchro_data.Flag_valid_symbol_output = true; current_synchro_data.correlation_length_ms = 20; - *out[0] = current_synchro_data; - consume_each(samples_offset); // shift input to perform alignment with local replica - return 1; } - - // ################# CARRIER WIPEOFF AND CORRELATORS ############################## - // perform carrier wipe-off and compute Early, Prompt and Late correlation - multicorrelator_cpu.set_input_output_vectors(d_correlator_outs, in); - multicorrelator_cpu.Carrier_wipeoff_multicorrelator_resampler(d_rem_carr_phase_rad, - d_carrier_phase_step_rad, - d_rem_code_phase_chips, - d_code_phase_step_chips, - d_current_prn_length_samples); - - // ################## PLL ########################################################## - // PLL discriminator - // Update PLL discriminator [rads/Ti -> Secs/Ti] - carr_error_hz = pll_cloop_two_quadrant_atan(d_correlator_outs[1]) / GPS_L2_TWO_PI; - // Carrier discriminator filter - carr_error_filt_hz = d_carrier_loop_filter.get_carrier_nco(carr_error_hz); - // New carrier Doppler frequency estimation - d_carrier_doppler_hz = d_acq_carrier_doppler_hz + carr_error_filt_hz; - // New code Doppler frequency estimation - d_code_freq_chips = GPS_L2_M_CODE_RATE_HZ + ((d_carrier_doppler_hz * GPS_L2_M_CODE_RATE_HZ) / GPS_L2_FREQ_HZ); - - // ################## DLL ########################################################## - // DLL discriminator - code_error_chips = dll_nc_e_minus_l_normalized(d_correlator_outs[0], d_correlator_outs[2]); // [chips/Ti] - // Code discriminator filter - code_error_filt_chips = d_code_loop_filter.get_code_nco(code_error_chips); //[chips/second] - double T_chip_seconds = 1.0 / static_cast(d_code_freq_chips); - double T_prn_seconds = T_chip_seconds * GPS_L2_M_CODE_LENGTH_CHIPS; - double code_error_filt_secs = (T_prn_seconds * code_error_filt_chips*T_chip_seconds); //[seconds] - //double code_error_filt_secs = (GPS_L2_M_PERIOD * code_error_filt_chips) / GPS_L2_M_CODE_RATE_HZ; //[seconds] - - // ################## CARRIER AND CODE NCO BUFFER ALIGNEMENT ####################### - // keep alignment parameters for the next input buffer - // Compute the next buffer length based in the new period of the PRN sequence and the code phase error estimation - double T_prn_samples = T_prn_seconds * static_cast(d_fs_in); - double K_blk_samples = T_prn_samples + d_rem_code_phase_samples + code_error_filt_secs * static_cast(d_fs_in); - d_current_prn_length_samples = round(K_blk_samples); // round to a discrete number of samples - - //################### PLL COMMANDS ################################################# - // carrier phase step (NCO phase increment per sample) [rads/sample] - d_carrier_phase_step_rad = GPS_L2_TWO_PI * d_carrier_doppler_hz / static_cast(d_fs_in); - // remnant carrier phase to prevent overflow in the code NCO - d_rem_carr_phase_rad = d_rem_carr_phase_rad + d_carrier_phase_step_rad * d_current_prn_length_samples; - d_rem_carr_phase_rad = fmod(d_rem_carr_phase_rad, GPS_L2_TWO_PI); - // carrier phase accumulator - d_acc_carrier_phase_rad -= d_carrier_phase_step_rad * d_current_prn_length_samples; - - //################### DLL COMMANDS ################################################# - // code phase step (Code resampler phase increment per sample) [chips/sample] - d_code_phase_step_chips = d_code_freq_chips / static_cast(d_fs_in); - // remnant code phase [chips] - d_rem_code_phase_samples = K_blk_samples - d_current_prn_length_samples; // rounding error < 1 sample - d_rem_code_phase_chips = d_code_freq_chips * (d_rem_code_phase_samples / static_cast(d_fs_in)); - - // ####### CN0 ESTIMATION AND LOCK DETECTORS ###### - if (d_cn0_estimation_counter < GPS_L2M_CN0_ESTIMATION_SAMPLES) - { - // fill buffer with prompt correlator output values - d_Prompt_buffer[d_cn0_estimation_counter] = d_correlator_outs[1]; - d_cn0_estimation_counter++; - } - else - { - d_cn0_estimation_counter = 0; - // Code lock indicator - d_CN0_SNV_dB_Hz = cn0_svn_estimator(d_Prompt_buffer, GPS_L2M_CN0_ESTIMATION_SAMPLES, d_fs_in, GPS_L2_M_CODE_LENGTH_CHIPS); - // Carrier lock indicator - d_carrier_lock_test = carrier_lock_detector(d_Prompt_buffer, GPS_L2M_CN0_ESTIMATION_SAMPLES); - // Loss of lock detection - if (d_carrier_lock_test < d_carrier_lock_threshold or d_CN0_SNV_dB_Hz < GPS_L2M_MINIMUM_VALID_CN0) - { - d_carrier_lock_fail_counter++; - } - else - { - if (d_carrier_lock_fail_counter > 0) d_carrier_lock_fail_counter--; - } - if (d_carrier_lock_fail_counter > GPS_L2M_MAXIMUM_LOCK_FAIL_COUNTER) - { - std::cout << "Loss of lock in channel " << d_channel << "!" << std::endl; - LOG(INFO) << "Loss of lock in channel " << d_channel << "!"; - this->message_port_pub(pmt::mp("events"), pmt::from_long(3));//3 -> loss of lock - d_carrier_lock_fail_counter = 0; - d_enable_tracking = false; // TODO: check if disabling tracking is consistent with the channel state machine - } - } - // ########### Output the tracking data to navigation and PVT ########## - current_synchro_data.Prompt_I = static_cast(d_correlator_outs[1].real()); - current_synchro_data.Prompt_Q = static_cast(d_correlator_outs[1].imag()); - current_synchro_data.Tracking_sample_counter = d_sample_counter + d_current_prn_length_samples; - current_synchro_data.Code_phase_samples = d_rem_code_phase_samples; - current_synchro_data.Carrier_phase_rads = d_acc_carrier_phase_rad; - current_synchro_data.Carrier_Doppler_hz = d_carrier_doppler_hz; - current_synchro_data.CN0_dB_hz = d_CN0_SNV_dB_Hz; - current_synchro_data.Flag_valid_symbol_output = true; - current_synchro_data.correlation_length_ms = 20; - - } else - { - for (int n = 0; n < d_n_correlator_taps; n++) { - d_correlator_outs[n] = gr_complex(0,0); + for (int n = 0; n < d_n_correlator_taps; n++) + { + d_correlator_outs[n] = gr_complex(0,0); + } + current_synchro_data.Tracking_sample_counter = d_sample_counter + d_current_prn_length_samples; + current_synchro_data.correlation_length_ms = 20; } - current_synchro_data.Tracking_sample_counter = d_sample_counter + d_current_prn_length_samples; - current_synchro_data.correlation_length_ms = 20; - } //assign the GNURadio block output data current_synchro_data.fs = d_fs_in; *out[0] = current_synchro_data; if(d_dump) - { - // MULTIPLEXED FILE RECORDING - Record results to file - float prompt_I; - float prompt_Q; - float tmp_E, tmp_P, tmp_L; - double tmp_double; - prompt_I = d_correlator_outs[1].real(); - prompt_Q = d_correlator_outs[1].imag(); - tmp_E = std::abs(d_correlator_outs[0]); - tmp_P = std::abs(d_correlator_outs[1]); - tmp_L = std::abs(d_correlator_outs[2]); - try { - // EPR - d_dump_file.write(reinterpret_cast(&tmp_E), sizeof(float)); - d_dump_file.write(reinterpret_cast(&tmp_P), sizeof(float)); - d_dump_file.write(reinterpret_cast(&tmp_L), sizeof(float)); - // PROMPT I and Q (to analyze navigation symbols) - d_dump_file.write(reinterpret_cast(&prompt_I), sizeof(float)); - d_dump_file.write(reinterpret_cast(&prompt_Q), sizeof(float)); - // PRN start sample stamp - //tmp_float=(float)d_sample_counter; - d_dump_file.write(reinterpret_cast(&d_sample_counter), sizeof(unsigned long int)); - // accumulated carrier phase - d_dump_file.write(reinterpret_cast(&d_acc_carrier_phase_rad), sizeof(double)); + // MULTIPLEXED FILE RECORDING - Record results to file + float prompt_I; + float prompt_Q; + float tmp_E, tmp_P, tmp_L; + double tmp_double; + prompt_I = d_correlator_outs[1].real(); + prompt_Q = d_correlator_outs[1].imag(); + tmp_E = std::abs(d_correlator_outs[0]); + tmp_P = std::abs(d_correlator_outs[1]); + tmp_L = std::abs(d_correlator_outs[2]); + try + { + // EPR + d_dump_file.write(reinterpret_cast(&tmp_E), sizeof(float)); + d_dump_file.write(reinterpret_cast(&tmp_P), sizeof(float)); + d_dump_file.write(reinterpret_cast(&tmp_L), sizeof(float)); + // PROMPT I and Q (to analyze navigation symbols) + d_dump_file.write(reinterpret_cast(&prompt_I), sizeof(float)); + d_dump_file.write(reinterpret_cast(&prompt_Q), sizeof(float)); + // PRN start sample stamp + //tmp_float=(float)d_sample_counter; + d_dump_file.write(reinterpret_cast(&d_sample_counter), sizeof(unsigned long int)); + // accumulated carrier phase + d_dump_file.write(reinterpret_cast(&d_acc_carrier_phase_rad), sizeof(double)); - // carrier and code frequency - d_dump_file.write(reinterpret_cast(&d_carrier_doppler_hz), sizeof(double)); - d_dump_file.write(reinterpret_cast(&d_code_freq_chips), sizeof(double)); + // carrier and code frequency + d_dump_file.write(reinterpret_cast(&d_carrier_doppler_hz), sizeof(double)); + d_dump_file.write(reinterpret_cast(&d_code_freq_chips), sizeof(double)); - //PLL commands - d_dump_file.write(reinterpret_cast(&carr_error_hz), sizeof(double)); - d_dump_file.write(reinterpret_cast(&d_carrier_doppler_hz), sizeof(double)); + //PLL commands + d_dump_file.write(reinterpret_cast(&carr_error_hz), sizeof(double)); + d_dump_file.write(reinterpret_cast(&d_carrier_doppler_hz), sizeof(double)); - //DLL commands - d_dump_file.write(reinterpret_cast(&code_error_chips), sizeof(double)); - d_dump_file.write(reinterpret_cast(&code_error_filt_chips), sizeof(double)); + //DLL commands + d_dump_file.write(reinterpret_cast(&code_error_chips), sizeof(double)); + d_dump_file.write(reinterpret_cast(&code_error_filt_chips), sizeof(double)); - // CN0 and carrier lock test - d_dump_file.write(reinterpret_cast(&d_CN0_SNV_dB_Hz), sizeof(double)); - d_dump_file.write(reinterpret_cast(&d_carrier_lock_test), sizeof(double)); + // CN0 and carrier lock test + d_dump_file.write(reinterpret_cast(&d_CN0_SNV_dB_Hz), sizeof(double)); + d_dump_file.write(reinterpret_cast(&d_carrier_lock_test), sizeof(double)); - // AUX vars (for debug purposes) - tmp_double = d_rem_code_phase_samples; - d_dump_file.write(reinterpret_cast(&tmp_double), sizeof(double)); - tmp_double = static_cast(d_sample_counter + d_current_prn_length_samples); - d_dump_file.write(reinterpret_cast(&tmp_double), sizeof(double)); + // AUX vars (for debug purposes) + tmp_double = d_rem_code_phase_samples; + d_dump_file.write(reinterpret_cast(&tmp_double), sizeof(double)); + tmp_double = static_cast(d_sample_counter + d_current_prn_length_samples); + d_dump_file.write(reinterpret_cast(&tmp_double), sizeof(double)); + + // PRN + unsigned int prn_ = d_acquisition_gnss_synchro->PRN; + d_dump_file.write(reinterpret_cast(&prn_), sizeof(unsigned int)); + } + catch (std::ifstream::failure& e) + { + LOG(WARNING) << "Exception writing trk dump file " << e.what(); + } } - catch (std::ifstream::failure& e) - { - LOG(WARNING) << "Exception writing trk dump file " << e.what(); - } - } consume_each(d_current_prn_length_samples); // this is necessary in gr::block derivates d_sample_counter += d_current_prn_length_samples; // count for the processed samples return 1; // output tracking result ALWAYS even in the case of d_enable_tracking==false } - void gps_l2_m_dll_pll_tracking_cc::set_channel(unsigned int channel) { d_channel = channel; LOG(INFO) << "Tracking Channel set to " << d_channel; // ############# ENABLE DATA FILE LOG ################# if (d_dump == true) - { - if (d_dump_file.is_open() == false) { - try - { - d_dump_filename.append(boost::lexical_cast(d_channel)); - d_dump_filename.append(".dat"); - d_dump_file.exceptions (std::ifstream::failbit | std::ifstream::badbit); - d_dump_file.open(d_dump_filename.c_str(), std::ios::out | std::ios::binary); - LOG(INFO) << "Tracking dump enabled on channel " << d_channel << " Log file: " << d_dump_filename.c_str(); - } - catch (std::ifstream::failure& e) - { - LOG(WARNING) << "channel " << d_channel << " Exception opening trk dump file " << e.what(); - } + if (d_dump_file.is_open() == false) + { + try + { + d_dump_filename.append(boost::lexical_cast(d_channel)); + d_dump_filename.append(".dat"); + d_dump_file.exceptions (std::ifstream::failbit | std::ifstream::badbit); + d_dump_file.open(d_dump_filename.c_str(), std::ios::out | std::ios::binary); + LOG(INFO) << "Tracking dump enabled on channel " << d_channel << " Log file: " << d_dump_filename.c_str(); + } + catch (std::ifstream::failure& e) + { + LOG(WARNING) << "channel " << d_channel << " Exception opening trk dump file " << e.what(); + } + } } - } } - void gps_l2_m_dll_pll_tracking_cc::set_gnss_synchro(Gnss_Synchro* p_gnss_synchro) { d_acquisition_gnss_synchro = p_gnss_synchro; diff --git a/src/algorithms/tracking/gnuradio_blocks/gps_l2_m_dll_pll_tracking_cc.h b/src/algorithms/tracking/gnuradio_blocks/gps_l2_m_dll_pll_tracking_cc.h index 0a94f8e92..37942778b 100644 --- a/src/algorithms/tracking/gnuradio_blocks/gps_l2_m_dll_pll_tracking_cc.h +++ b/src/algorithms/tracking/gnuradio_blocks/gps_l2_m_dll_pll_tracking_cc.h @@ -1,6 +1,6 @@ /*! * \file gps_l2_m_dll_pll_tracking_cc.h - * \brief Interface of a code DLL + carrier PLL tracking block + * \brief Interface of a code DLL + carrier PLL tracking block for GPS L2C * \author Javier Arribas, 2015. jarribas(at)cttc.es * * Code DLL + carrier PLL according to the algorithms described in: diff --git a/src/utils/matlab/galileo_e1_dll_pll_veml_plot_sample_32bits.m b/src/utils/matlab/galileo_e1_dll_pll_veml_plot_sample.m similarity index 58% rename from src/utils/matlab/galileo_e1_dll_pll_veml_plot_sample_32bits.m rename to src/utils/matlab/galileo_e1_dll_pll_veml_plot_sample.m index 6acbc3268..92f4b8add 100644 --- a/src/utils/matlab/galileo_e1_dll_pll_veml_plot_sample_32bits.m +++ b/src/utils/matlab/galileo_e1_dll_pll_veml_plot_sample.m @@ -1,5 +1,5 @@ % /*! -% * \file galileo_l1_ca_dll_pll_vml_plot_sample_64bits.m +% * \file galileo_l1_ca_dll_pll_vml_plot_sample.m % * \brief Read GNSS-SDR Tracking dump binary file using the provided % function and plot some internal variables % * \author Javier Arribas, 2011. jarribas(at)cttc.es @@ -29,26 +29,28 @@ % */ close all; clear all; -samplingFreq = 20480000/4; %[Hz] -channels=8; +samplingFreq = 5000000; %[Hz] +channels = 7; +first_channel = 0; %path='/home/javier/workspace/gnss-sdr/trunk/install/'; -path='/home/gnss/workspace/gnss-sdr/trunk/data/'; -clear PRN_absolute_sample_start; +%path='/home/luis/dev/gnss-sdr/trunk/data/'; +path = '/Users/carlesfernandez/git/cttc/build/'; + for N=1:1:channels - tracking_log_path=[path 'veml_tracking_ch_' num2str(N-1) '.dat']; - GNSS_tracking(N)= galileo_e1_dll_pll_veml_read_tracking_dump_32bits(tracking_log_path); + tracking_log_path = [path 'track_ch' num2str(N+first_channel-1) '.dat']; + GNSS_tracking(N)= galileo_e1_dll_pll_veml_read_tracking_dump(tracking_log_path); end % GNSS-SDR format conversion to MATLAB GPS receiver for N=1:1:channels trackResults(N).status = 'T'; %fake track - trackResults(N).codeFreq = GNSS_tracking(N).code_freq_hz.'; - trackResults(N).carrFreq = GNSS_tracking(N).carrier_doppler_hz.'; - trackResults(N).dllDiscr = GNSS_tracking(N).code_error.'; - trackResults(N).dllDiscrFilt = GNSS_tracking(N).code_nco.'; - trackResults(N).pllDiscr = GNSS_tracking(N).carr_error.'; - trackResults(N).pllDiscrFilt = GNSS_tracking(N).carr_nco.'; + trackResults(N).codeFreq = GNSS_tracking(N).code_freq_hz.'; + trackResults(N).carrFreq = GNSS_tracking(N).carrier_doppler_hz.'; + trackResults(N).dllDiscr = GNSS_tracking(N).code_error.'; + trackResults(N).dllDiscrFilt = GNSS_tracking(N).code_nco.'; + trackResults(N).pllDiscr = GNSS_tracking(N).carr_error.'; + trackResults(N).pllDiscrFilt = GNSS_tracking(N).carr_nco.'; trackResults(N).I_P = GNSS_tracking(N).prompt_I.'; trackResults(N).Q_P = GNSS_tracking(N).prompt_Q.'; @@ -61,7 +63,7 @@ for N=1:1:channels trackResults(N).Q_E = zeros(1,length(GNSS_tracking(N).E)); trackResults(N).Q_L = zeros(1,length(GNSS_tracking(N).L)); trackResults(N).Q_VL = zeros(1,length(GNSS_tracking(N).VL)); - trackResults(N).PRN = N; %fake PRN + trackResults(N).PRN = GNSS_tracking(N).PRN.'; % Use original MATLAB tracking plot function settings.numberOfChannels = channels; @@ -69,25 +71,5 @@ for N=1:1:channels plotVEMLTracking(N,trackResults,settings) end -% for N=1:1:channels -% % figure; -% % plot([GNSS_tracking(N).E,GNSS_tracking(N).P,GNSS_tracking(N).L],'-*'); -% % title(['Early, Prompt, and Late correlator absolute value output for channel ' num2str(N)']); -% % figure; -% % plot(GNSS_tracking(N).prompt_I,GNSS_tracking(N).prompt_Q,'+'); -% % title(['Navigation constellation plot for channel ' num2str(N)]); -% % figure; -% % -% % plot(GNSS_tracking(N).prompt_Q,'r'); -% % hold on; -% % plot(GNSS_tracking(N).prompt_I); -% % title(['Navigation symbols I(red) Q(blue) for channel ' num2str(N)]); -% % -% figure; -% t=0:4:length(GNSS_tracking(N).carrier_doppler_hz)*4-1; -% t=t/1000; -% plot(t,GNSS_tracking(N).carrier_doppler_hz/1000); -% xlabel('Time(s)');ylabel('Doppler(KHz)');title(['Doppler frequency channel ' num2str(N)]); -% end diff --git a/src/utils/matlab/galileo_e1_dll_pll_veml_plot_sample_64bits.m b/src/utils/matlab/galileo_e1_dll_pll_veml_plot_sample_64bits.m deleted file mode 100644 index 798b5f30b..000000000 --- a/src/utils/matlab/galileo_e1_dll_pll_veml_plot_sample_64bits.m +++ /dev/null @@ -1,93 +0,0 @@ -% /*! -% * \file galileo_l1_ca_dll_pll_vml_plot_sample_64bits.m -% * \brief Read GNSS-SDR Tracking dump binary file using the provided -% function and plot some internal variables -% * \author Javier Arribas, 2011. jarribas(at)cttc.es -% * ------------------------------------------------------------------------- -% * -% * Copyright (C) 2010-2011 (see AUTHORS file for a list of contributors) -% * -% * GNSS-SDR is a software defined Global Navigation -% * Satellite Systems receiver -% * -% * This file is part of GNSS-SDR. -% * -% * GNSS-SDR is free software: you can redistribute it and/or modify -% * it under the terms of the GNU General Public License as published by -% * the Free Software Foundation, either version 3 of the License, or -% * at your option) any later version. -% * -% * GNSS-SDR is distributed in the hope that it will be useful, -% * but WITHOUT ANY WARRANTY; without even the implied warranty of -% * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% * GNU General Public License for more details. -% * -% * You should have received a copy of the GNU General Public License -% * along with GNSS-SDR. If not, see . -% * -% * ------------------------------------------------------------------------- -% */ -close all; -clear all; -samplingFreq = 64e6/8; %[Hz] -channels=1; -%path='/home/javier/workspace/gnss-sdr/trunk/install/'; -path='/home/luis/dev/gnss-sdr/trunk/data/'; -clear PRN_absolute_sample_start; -for N=1:1:channels - tracking_log_path=[path 'veml_tracking_ch_' num2str(N-1) '.dat']; - GNSS_tracking(N)= galileo_e1_dll_pll_veml_read_tracking_dump(tracking_log_path); -end - -% GNSS-SDR format conversion to MATLAB GPS receiver - -for N=1:1:channels - trackResults(N).status='T'; %fake track - trackResults(N).codeFreq=GNSS_tracking(N).code_freq_hz.'; - trackResults(N).carrFreq=GNSS_tracking(N).carrier_doppler_hz.'; - trackResults(N).dllDiscr = GNSS_tracking(N).code_error.'; - trackResults(N).dllDiscrFilt = GNSS_tracking(N).code_nco.'; - trackResults(N).pllDiscr = GNSS_tracking(N).carr_error.'; - trackResults(N).pllDiscrFilt = GNSS_tracking(N).carr_nco.'; - - trackResults(N).I_P=GNSS_tracking(N).prompt_I.'; - trackResults(N).Q_P=GNSS_tracking(N).prompt_Q.'; - - trackResults(N).I_VE= GNSS_tracking(N).VE.'; - trackResults(N).I_E= GNSS_tracking(N).E.'; - trackResults(N).I_L = GNSS_tracking(N).L.'; - trackResults(N).I_VL = GNSS_tracking(N).VL.'; - trackResults(N).Q_VE = zeros(1,length(GNSS_tracking(N).VE)); - trackResults(N).Q_E = zeros(1,length(GNSS_tracking(N).E)); - trackResults(N).Q_L =zeros(1,length(GNSS_tracking(N).L)); - trackResults(N).Q_VL =zeros(1,length(GNSS_tracking(N).VL)); - trackResults(N).PRN=N; %fake PRN - - % Use original MATLAB tracking plot function - settings.numberOfChannels=channels; - settings.msToProcess=length(GNSS_tracking(N).E)*4; - plotVEMLTracking(N,trackResults,settings) -end - -% for N=1:1:channels -% % figure; -% % plot([GNSS_tracking(N).E,GNSS_tracking(N).P,GNSS_tracking(N).L],'-*'); -% % title(['Early, Prompt, and Late correlator absolute value output for channel ' num2str(N)']); -% % figure; -% % plot(GNSS_tracking(N).prompt_I,GNSS_tracking(N).prompt_Q,'+'); -% % title(['Navigation constellation plot for channel ' num2str(N)]); -% % figure; -% % -% % plot(GNSS_tracking(N).prompt_Q,'r'); -% % hold on; -% % plot(GNSS_tracking(N).prompt_I); -% % title(['Navigation symbols I(red) Q(blue) for channel ' num2str(N)]); -% % -% figure; -% t=0:4:length(GNSS_tracking(N).carrier_doppler_hz)*4-1; -% t=t/1000; -% plot(t,GNSS_tracking(N).carrier_doppler_hz/1000); -% xlabel('Time(s)');ylabel('Doppler(KHz)');title(['Doppler frequency channel ' num2str(N)]); -% end - - diff --git a/src/utils/matlab/galileo_e5a_dll_pll_plot_sample_64bits.m b/src/utils/matlab/galileo_e5a_dll_pll_plot_sample.m similarity index 71% rename from src/utils/matlab/galileo_e5a_dll_pll_plot_sample_64bits.m rename to src/utils/matlab/galileo_e5a_dll_pll_plot_sample.m index 6a4c993e3..2c3b45a24 100644 --- a/src/utils/matlab/galileo_e5a_dll_pll_plot_sample_64bits.m +++ b/src/utils/matlab/galileo_e5a_dll_pll_plot_sample.m @@ -1,5 +1,5 @@ % /*! -% * \file galileo_e5a_dll_pll_plot_sample_64bits.m +% * \file galileo_e5a_dll_pll_plot_sample.m % * \brief Read GNSS-SDR Tracking dump binary file using the provided % function and plot some internal variables % * \author Javier Arribas, Marc Sales 2014. jarribas(at)cttc.es @@ -30,41 +30,43 @@ % */ close all; clear all; -samplingFreq = 64e6/32; %[Hz] -channels=1; +samplingFreq = 5000000; %[Hz] +channels = 1; +first_channel = 30; %path='/home/javier/workspace/gnss-sdr/trunk/install/'; -path='/home/marc/git/gnss-sdr/data/'; -clear PRN_absolute_sample_start; +%path='/home/marc/git/gnss-sdr/data/'; +path = '/Users/carlesfernandez/git/cttc/build/'; + for N=1:1:channels - tracking_log_path=[path 'e5a_tracking_ch_' num2str(N-1) '.dat']; - GNSS_tracking(N)= gps_l1_ca_dll_pll_read_tracking_dump_64bits(tracking_log_path); + tracking_log_path = [path 'tracking_ch_' num2str(N+first_channel-1) '.dat']; + GNSS_tracking(N)= gps_l1_ca_dll_pll_read_tracking_dump(tracking_log_path); end % GNSS-SDR format conversion to MATLAB GPS receiver for N=1:1:channels - trackResults(N).status='T'; %fake track - trackResults(N).codeFreq=GNSS_tracking(N).code_freq_hz.'; - trackResults(N).carrFreq=GNSS_tracking(N).carrier_doppler_hz.'; + trackResults(N).status = 'T'; %fake track + trackResults(N).codeFreq = GNSS_tracking(N).code_freq_hz.'; + trackResults(N).carrFreq = GNSS_tracking(N).carrier_doppler_hz.'; trackResults(N).dllDiscr = GNSS_tracking(N).code_error.'; trackResults(N).dllDiscrFilt = GNSS_tracking(N).code_nco.'; trackResults(N).pllDiscr = GNSS_tracking(N).carr_error.'; trackResults(N).pllDiscrFilt = GNSS_tracking(N).carr_nco.'; - trackResults(N).I_PN=GNSS_tracking(N).prompt_I.'; - trackResults(N).Q_PN=GNSS_tracking(N).prompt_Q.'; - trackResults(N).Q_P=zeros(1,length(GNSS_tracking(N).P)); - trackResults(N).I_P=GNSS_tracking(N).P.'; + trackResults(N).I_PN = GNSS_tracking(N).prompt_I.'; + trackResults(N).Q_PN = GNSS_tracking(N).prompt_Q.'; + trackResults(N).Q_P = zeros(1,length(GNSS_tracking(N).P)); + trackResults(N).I_P = GNSS_tracking(N).P.'; - trackResults(N).I_E= GNSS_tracking(N).E.'; + trackResults(N).I_E = GNSS_tracking(N).E.'; trackResults(N).I_L = GNSS_tracking(N).L.'; trackResults(N).Q_E = zeros(1,length(GNSS_tracking(N).E)); - trackResults(N).Q_L =zeros(1,length(GNSS_tracking(N).E)); - trackResults(N).PRN=N; %fake PRN + trackResults(N).Q_L = zeros(1,length(GNSS_tracking(N).E)); + trackResults(N).PRN = GNSS_tracking(N).PRN.'; % Use original MATLAB tracking plot function - settings.numberOfChannels=channels; - settings.msToProcess=length(GNSS_tracking(N).E); + settings.numberOfChannels = channels; + settings.msToProcess = length(GNSS_tracking(N).E); plotTrackingE5a(N,trackResults,settings) end diff --git a/src/utils/matlab/gps_l1_ca_dll_fll_pll_plot_sample.m b/src/utils/matlab/gps_l1_ca_dll_fll_pll_plot_sample.m deleted file mode 100644 index 155bc5cf0..000000000 --- a/src/utils/matlab/gps_l1_ca_dll_fll_pll_plot_sample.m +++ /dev/null @@ -1,88 +0,0 @@ -% /*! -% * \file gps_l1_ca_dll_fll_pll_plot_sample.m -% * \brief Read GNSS-SDR Tracking dump binary file using the provided -% function and plot some internal variables -% * \author Javier Arribas, 2011. jarribas(at)cttc.es -% * ------------------------------------------------------------------------- -% * -% * Copyright (C) 2010-2011 (see AUTHORS file for a list of contributors) -% * -% * GNSS-SDR is a software defined Global Navigation -% * Satellite Systems receiver -% * -% * This file is part of GNSS-SDR. -% * -% * GNSS-SDR is free software: you can redistribute it and/or modify -% * it under the terms of the GNU General Public License as published by -% * the Free Software Foundation, either version 3 of the License, or -% * at your option) any later version. -% * -% * GNSS-SDR is distributed in the hope that it will be useful, -% * but WITHOUT ANY WARRANTY; without even the implied warranty of -% * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% * GNU General Public License for more details. -% * -% * You should have received a copy of the GNU General Public License -% * along with GNSS-SDR. If not, see . -% * -% * ------------------------------------------------------------------------- -% */ -%close all; -%clear all; -samplingFreq = 64e6/16; %[Hz] -channels=4; -path='/home/javier/workspace/gnss-sdr-ref/trunk/install/'; -for N=1:1:channels - tracking_log_path=[path 'tracking_ch_' num2str(N-1) '.dat']; - GNSS_tracking(N)= gps_l1_ca_dll_fll_pll_read_tracking_dump(tracking_log_path,samplingFreq); -end - -% GNSS-SDR format conversion to MATLAB GPS receiver -channel_PRN_ID=[32,14,20,11]; -tracking_loop_start=1;%10001; -tracking_loop_end=70000; -for N=1:1:channels - trackResults_sdr(N).status='T'; %fake track - trackResults_sdr(N).codeFreq=GNSS_tracking(N).code_freq_hz(tracking_loop_start:tracking_loop_end).'; - trackResults_sdr(N).carrFreq=GNSS_tracking(N).carrier_doppler_hz(tracking_loop_start:tracking_loop_end).'; - trackResults_sdr(N).dllDiscr = GNSS_tracking(N).code_error_chips(tracking_loop_start:tracking_loop_end).'; - trackResults_sdr(N).dllDiscrFilt = GNSS_tracking(N).code_phase_samples(tracking_loop_start:tracking_loop_end).'; - trackResults_sdr(N).pllDiscr = GNSS_tracking(N).PLL_discriminator_hz(tracking_loop_start:tracking_loop_end).'; - trackResults_sdr(N).pllDiscrFilt = GNSS_tracking(N).carr_nco(tracking_loop_start:tracking_loop_end).'; - trackResults_sdr(N).absoluteSample = (GNSS_tracking(N).var2(tracking_loop_start:tracking_loop_end)+GNSS_tracking(N).var1(tracking_loop_start:tracking_loop_end)).'; - - trackResults_sdr(N).prn_delay_ms = 1000*trackResults_sdr(N).absoluteSample/samplingFreq; - %trackResults_sdr(N).absoluteSample = (GNSS_tracking(N).PRN_start_sample(tracking_loop_start:tracking_loop_end)+GNSS_tracking(N).var1(tracking_loop_start:tracking_loop_end)).'; - - trackResults_sdr(N).I_P=GNSS_tracking(N).prompt_I(tracking_loop_start:tracking_loop_end).'; - trackResults_sdr(N).Q_P=GNSS_tracking(N).prompt_Q(tracking_loop_start:tracking_loop_end).'; - - trackResults_sdr(N).I_E= GNSS_tracking(N).E(tracking_loop_start:tracking_loop_end).'; - trackResults_sdr(N).I_L = GNSS_tracking(N).L(tracking_loop_start:tracking_loop_end).'; - trackResults_sdr(N).Q_E = zeros(1,tracking_loop_end-tracking_loop_start+1); - trackResults_sdr(N).Q_L =zeros(1,tracking_loop_end-tracking_loop_start+1); - trackResults_sdr(N).PRN=channel_PRN_ID(N); - - % Use original MATLAB tracking plot function - settings.numberOfChannels=channels; - settings.msToProcess=tracking_loop_end-tracking_loop_start+1; - %plotTracking(N,trackResults_sdr,settings) -end - - -% for N=1:1:channels -% figure; -% plot([GNSS_tracking(N).E,GNSS_tracking(N).P,GNSS_tracking(N).L],'-*'); -% title(['Early, Prompt, and Late correlator absolute value output for channel ' num2str(N)']); -% figure; -% plot(GNSS_tracking(N).prompt_I,GNSS_tracking(N).prompt_Q,'+'); -% title(['Navigation constellation plot for channel ' num2str(N)]); -% figure; -% -% plot(GNSS_tracking(N).prompt_Q,'r'); -% hold on; -% plot(GNSS_tracking(N).prompt_I); -% title(['Navigation symbols I(red) Q(blue) for channel ' num2str(N)]); -% end - - diff --git a/src/utils/matlab/gps_l1_ca_dll_pll_plot_sample.m b/src/utils/matlab/gps_l1_ca_dll_pll_plot_sample.m index faf136e42..5fd81b2e9 100644 --- a/src/utils/matlab/gps_l1_ca_dll_pll_plot_sample.m +++ b/src/utils/matlab/gps_l1_ca_dll_pll_plot_sample.m @@ -29,54 +29,42 @@ % */ close all; clear all; -samplingFreq = 64e6/16; %[Hz] -channels=4; -path='/home/javier/workspace/gnss-sdr/trunk/install/'; -clear PRN_absolute_sample_start; +samplingFreq = 5000000; %[Hz] +channels = 7; +first_channel = 0; + +%path='/home/javier/workspace/gnss-sdr/trunk/install/'; +path = '/Users/carlesfernandez/git/cttc/build/'; + for N=1:1:channels - tracking_log_path=[path 'tracking_ch_' num2str(N-1) '.dat']; + tracking_log_path = [path 'epl_tracking_ch_' num2str(N+first_channel-1) '.dat']; GNSS_tracking(N)= gps_l1_ca_dll_pll_read_tracking_dump(tracking_log_path); end % GNSS-SDR format conversion to MATLAB GPS receiver for N=1:1:channels - trackResults(N).status='T'; %fake track - trackResults(N).codeFreq=GNSS_tracking(N).code_freq_hz.'; - trackResults(N).carrFreq=GNSS_tracking(N).carrier_doppler_hz.'; + trackResults(N).status = 'T'; %fake track + trackResults(N).codeFreq = GNSS_tracking(N).code_freq_hz.'; + trackResults(N).carrFreq = GNSS_tracking(N).carrier_doppler_hz.'; trackResults(N).dllDiscr = GNSS_tracking(N).code_error.'; trackResults(N).dllDiscrFilt = GNSS_tracking(N).code_nco.'; trackResults(N).pllDiscr = GNSS_tracking(N).carr_error.'; trackResults(N).pllDiscrFilt = GNSS_tracking(N).carr_nco.'; - trackResults(N).I_P=GNSS_tracking(N).prompt_I.'; - trackResults(N).Q_P=GNSS_tracking(N).prompt_Q.'; + trackResults(N).I_P = GNSS_tracking(N).prompt_I.'; + trackResults(N).Q_P = GNSS_tracking(N).prompt_Q.'; - trackResults(N).I_E= GNSS_tracking(N).E.'; + trackResults(N).I_E = GNSS_tracking(N).E.'; trackResults(N).I_L = GNSS_tracking(N).L.'; trackResults(N).Q_E = zeros(1,length(GNSS_tracking(N).E)); - trackResults(N).Q_L =zeros(1,length(GNSS_tracking(N).E)); - trackResults(N).PRN=N; %fake PRN + trackResults(N).Q_L = zeros(1,length(GNSS_tracking(N).E)); + trackResults(N).PRN = GNSS_tracking(N).PRN.'; % Use original MATLAB tracking plot function - settings.numberOfChannels=channels; - settings.msToProcess=length(GNSS_tracking(N).E); + settings.numberOfChannels = channels; + settings.msToProcess = length(GNSS_tracking(N).E); plotTracking(N,trackResults,settings) end -% for N=1:1:channels -% figure; -% plot([GNSS_tracking(N).E,GNSS_tracking(N).P,GNSS_tracking(N).L],'-*'); -% title(['Early, Prompt, and Late correlator absolute value output for channel ' num2str(N)']); -% figure; -% plot(GNSS_tracking(N).prompt_I,GNSS_tracking(N).prompt_Q,'+'); -% title(['Navigation constellation plot for channel ' num2str(N)]); -% figure; -% -% plot(GNSS_tracking(N).prompt_Q,'r'); -% hold on; -% plot(GNSS_tracking(N).prompt_I); -% title(['Navigation symbols I(red) Q(blue) for channel ' num2str(N)]); -% end - diff --git a/src/utils/matlab/gps_l1_ca_dll_pll_plot_sample_64bits.m b/src/utils/matlab/gps_l1_ca_dll_pll_plot_sample_64bits.m deleted file mode 100644 index b3ed5ca33..000000000 --- a/src/utils/matlab/gps_l1_ca_dll_pll_plot_sample_64bits.m +++ /dev/null @@ -1,89 +0,0 @@ -% /*! -% * \file gps_l1_ca_dll_pll_plot_sample_64bits.m -% * \brief Read GNSS-SDR Tracking dump binary file using the provided -% function and plot some internal variables -% * \author Javier Arribas, 2011. jarribas(at)cttc.es -% * ------------------------------------------------------------------------- -% * -% * Copyright (C) 2010-2011 (see AUTHORS file for a list of contributors) -% * -% * GNSS-SDR is a software defined Global Navigation -% * Satellite Systems receiver -% * -% * This file is part of GNSS-SDR. -% * -% * GNSS-SDR is free software: you can redistribute it and/or modify -% * it under the terms of the GNU General Public License as published by -% * the Free Software Foundation, either version 3 of the License, or -% * at your option) any later version. -% * -% * GNSS-SDR is distributed in the hope that it will be useful, -% * but WITHOUT ANY WARRANTY; without even the implied warranty of -% * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% * GNU General Public License for more details. -% * -% * You should have received a copy of the GNU General Public License -% * along with GNSS-SDR. If not, see . -% * -% * ------------------------------------------------------------------------- -% */ -close all; -clear all; -samplingFreq = 64e6/32; %[Hz] -channels=1; -%path='/home/javier/workspace/gnss-sdr/trunk/install/'; -path='/home/luis/dev/gnss-sdr/trunk/data/'; -clear PRN_absolute_sample_start; -for N=1:1:channels - tracking_log_path=[path 'tracking_ch_' num2str(N-1) '.dat']; - GNSS_tracking(N)= gps_l1_ca_dll_pll_read_tracking_dump_64bits(tracking_log_path); -end - -% GNSS-SDR format conversion to MATLAB GPS receiver - -for N=1:1:channels - trackResults(N).status='T'; %fake track - trackResults(N).codeFreq=GNSS_tracking(N).code_freq_hz.'; - trackResults(N).carrFreq=GNSS_tracking(N).carrier_doppler_hz.'; - trackResults(N).dllDiscr = GNSS_tracking(N).code_error.'; - trackResults(N).dllDiscrFilt = GNSS_tracking(N).code_nco.'; - trackResults(N).pllDiscr = GNSS_tracking(N).carr_error.'; - trackResults(N).pllDiscrFilt = GNSS_tracking(N).carr_nco.'; - - trackResults(N).I_P=GNSS_tracking(N).prompt_I.'; - trackResults(N).Q_P=GNSS_tracking(N).prompt_Q.'; - - trackResults(N).I_E= GNSS_tracking(N).E.'; - trackResults(N).I_L = GNSS_tracking(N).L.'; - trackResults(N).Q_E = zeros(1,length(GNSS_tracking(N).E)); - trackResults(N).Q_L =zeros(1,length(GNSS_tracking(N).E)); - trackResults(N).PRN=N; %fake PRN - - % Use original MATLAB tracking plot function - settings.numberOfChannels=channels; - settings.msToProcess=length(GNSS_tracking(N).E); - plotTracking(N,trackResults,settings) -end - -for N=1:1:channels -% figure; -% plot([GNSS_tracking(N).E,GNSS_tracking(N).P,GNSS_tracking(N).L],'-*'); -% title(['Early, Prompt, and Late correlator absolute value output for channel ' num2str(N)']); -% figure; -% plot(GNSS_tracking(N).prompt_I,GNSS_tracking(N).prompt_Q,'+'); -% title(['Navigation constellation plot for channel ' num2str(N)]); -% figure; -% -% plot(GNSS_tracking(N).prompt_Q,'r'); -% hold on; -% plot(GNSS_tracking(N).prompt_I); -% title(['Navigation symbols I(red) Q(blue) for channel ' num2str(N)]); -% - figure; - t=0:length(GNSS_tracking(N).carrier_doppler_hz)-1; - t=t/1000; - plot(t,GNSS_tracking(N).carrier_doppler_hz/1000); - xlabel('Time(s)');ylabel('Doppler(KHz)');title(['Doppler frequency channel ' num2str(N)]); -end - - diff --git a/src/utils/matlab/libs/galileo_e1_dll_pll_veml_read_tracking_dump.m b/src/utils/matlab/libs/galileo_e1_dll_pll_veml_read_tracking_dump.m index 4be05dd3a..0ccb1bb40 100644 --- a/src/utils/matlab/libs/galileo_e1_dll_pll_veml_read_tracking_dump.m +++ b/src/utils/matlab/libs/galileo_e1_dll_pll_veml_read_tracking_dump.m @@ -25,23 +25,39 @@ % * along with GNSS-SDR. If not, see . % * % * ------------------------------------------------------------------------- -% */ -function [GNSS_tracking] = galileo_e1_dll_pll_veml_read_tracking_dump (filename, count) +% */ +function [GNSS_tracking] = galileo_e1_dll_pll_veml_read_tracking_dump (filename, count) %% usage: galileo_e1_dll_pll_veml_read_tracking_dump (filename, [count]) %% %% open GNSS-SDR tracking binary log file .dat and return the contents %% m = nargchk (1,2,nargin); - num_float_vars=17; - num_unsigned_long_int_vars=1; - num_double_vars=1; - double_size_bytes=8; - unsigned_long_int_size_bytes=8; - float_size_bytes=4; - skip_bytes_each_read=float_size_bytes*num_float_vars+unsigned_long_int_size_bytes*num_unsigned_long_int_vars+double_size_bytes*num_double_vars; - bytes_shift=0; + + num_float_vars = 17; + num_unsigned_long_int_vars = 1; + num_double_vars = 1; + num_unsigned_int_vars = 1; + + if(~isempty(strfind(computer('arch'), '64'))) + % 64-bit computer + double_size_bytes = 8; + unsigned_long_int_size_bytes = 8; + float_size_bytes = 4; + unsigned_int_size_bytes = 4; + else + double_size_bytes = 8; + unsigned_long_int_size_bytes = 4; + float_size_bytes = 4; + unsigned_int_size_bytes = 4; + end + + skip_bytes_each_read = float_size_bytes * num_float_vars + unsigned_long_int_size_bytes * num_unsigned_long_int_vars + ... + double_size_bytes * num_double_vars + num_unsigned_int_vars*unsigned_int_size_bytes; + + bytes_shift = 0; + if (m) usage (m); end @@ -53,140 +69,85 @@ function [GNSS_tracking] = galileo_e1_dll_pll_veml_read_tracking_dump (filename, f = fopen (filename, 'rb'); if (f < 0) else - v1 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; + v1 = fread (f, count, 'float', skip_bytes_each_read - float_size_bytes); + bytes_shift = bytes_shift + float_size_bytes; + fseek(f,bytes_shift,'bof'); % move to next float + v2 = fread (f, count, 'float', skip_bytes_each_read - float_size_bytes); + bytes_shift = bytes_shift + float_size_bytes; + fseek(f,bytes_shift,'bof'); % move to next float + v3 = fread (f, count, 'float', skip_bytes_each_read - float_size_bytes); + bytes_shift = bytes_shift + float_size_bytes; + fseek(f,bytes_shift,'bof'); % move to next float + v4 = fread (f, count, 'float', skip_bytes_each_read - float_size_bytes); + bytes_shift = bytes_shift + float_size_bytes; + fseek(f,bytes_shift,'bof'); % move to next float + v5 = fread (f, count, 'float', skip_bytes_each_read - float_size_bytes); + bytes_shift = bytes_shift + float_size_bytes; + fseek(f,bytes_shift,'bof'); % move to next float + v6 = fread (f, count, 'float', skip_bytes_each_read - float_size_bytes); + bytes_shift = bytes_shift + float_size_bytes; + fseek(f,bytes_shift,'bof'); % move to next float + v7 = fread (f, count, 'float', skip_bytes_each_read - float_size_bytes); + bytes_shift = bytes_shift + float_size_bytes; fseek(f,bytes_shift,'bof'); % move to next interleaved float - v2 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; + v8 = fread (f, count, 'long', skip_bytes_each_read - unsigned_long_int_size_bytes); + bytes_shift = bytes_shift + unsigned_long_int_size_bytes; + fseek(f,bytes_shift,'bof'); % move to next float + v9 = fread (f, count, 'float', skip_bytes_each_read - float_size_bytes); + bytes_shift = bytes_shift + float_size_bytes; + fseek(f,bytes_shift,'bof'); % move to next float + v10 = fread (f, count, 'float', skip_bytes_each_read - float_size_bytes); + bytes_shift = bytes_shift + float_size_bytes; + fseek(f,bytes_shift,'bof'); % move to next float + v11 = fread (f, count, 'float', skip_bytes_each_read - float_size_bytes); + bytes_shift = bytes_shift + float_size_bytes; + fseek(f,bytes_shift,'bof'); % move to next float + v12 = fread (f, count, 'float', skip_bytes_each_read - float_size_bytes); + bytes_shift = bytes_shift + float_size_bytes; + fseek(f,bytes_shift,'bof'); % move to next float + v13 = fread (f, count, 'float', skip_bytes_each_read - float_size_bytes); + bytes_shift = bytes_shift + float_size_bytes; + fseek(f,bytes_shift,'bof'); % move to next float + v14 = fread (f, count, 'float', skip_bytes_each_read - float_size_bytes); + bytes_shift = bytes_shift + float_size_bytes; + fseek(f,bytes_shift,'bof'); % move to next float + v15 = fread (f, count, 'float', skip_bytes_each_read - float_size_bytes); + bytes_shift = bytes_shift + float_size_bytes; + fseek(f,bytes_shift,'bof'); % move to next float + v16 = fread (f, count, 'float', skip_bytes_each_read - float_size_bytes); + bytes_shift = bytes_shift + float_size_bytes; fseek(f,bytes_shift,'bof'); % move to next interleaved float - v3 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v4 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v5 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v6 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v7 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v8 = fread (f, count, 'uint64',skip_bytes_each_read-unsigned_long_int_size_bytes); - bytes_shift=bytes_shift+unsigned_long_int_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v9 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v10 = fread (f, count, '*float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v11 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v12 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v13 = fread (f, count, '*float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v14 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v15 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v16 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v17 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v18 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v19 = fread (f, count, 'float64',skip_bytes_each_read-double_size_bytes); + v17 = fread (f, count, 'float', skip_bytes_each_read - float_size_bytes); + bytes_shift = bytes_shift + float_size_bytes; + fseek(f,bytes_shift,'bof'); % move to next float + v18 = fread (f, count, 'float', skip_bytes_each_read-float_size_bytes); + bytes_shift = bytes_shift + float_size_bytes; + fseek(f,bytes_shift,'bof'); % move to next double + v19 = fread (f, count, 'double', skip_bytes_each_read - double_size_bytes); + bytes_shift = bytes_shift + double_size_bytes; + fseek(f,bytes_shift,'bof'); % move to next unsigned int + v20 = fread (f, count, 'uint', skip_bytes_each_read - unsigned_int_size_bytes); fclose (f); - %%%%%%%% output vars %%%%%%%% - -% // EPR -% d_dump_file.write((char*)&tmp_VE, sizeof(float)); -% d_dump_file.write((char*)&tmp_E, sizeof(float)); -% d_dump_file.write((char*)&tmp_P, sizeof(float)); -% d_dump_file.write((char*)&tmp_L, sizeof(float)); -% d_dump_file.write((char*)&tmp_VL, sizeof(float)); -% // PROMPT I and Q (to analyze navigation symbols) -% d_dump_file.write((char*)&prompt_I, sizeof(float)); -% d_dump_file.write((char*)&prompt_Q, sizeof(float)); -% // PRN start sample stamp -% //tmp_float=(float)d_sample_counter; -% d_dump_file.write((char*)&d_sample_counter, sizeof(unsigned long int)); -% // accumulated carrier phase -% d_dump_file.write((char*)&d_acc_carrier_phase_rad, sizeof(float)); -% -% // carrier and code frequency -% d_dump_file.write((char*)&d_carrier_doppler_hz, sizeof(float)); -% d_dump_file.write((char*)&d_code_freq_hz, sizeof(float)); -% -% //PLL commands -% d_dump_file.write((char*)&carr_error, sizeof(float)); -% d_dump_file.write((char*)&carr_nco, sizeof(float)); -% -% //DLL commands -% d_dump_file.write((char*)&code_error, sizeof(float)); -% d_dump_file.write((char*)&code_nco, sizeof(float)); -% -% // CN0 and carrier lock test -% d_dump_file.write((char*)&d_CN0_SNV_dB_Hz, sizeof(float)); -% d_dump_file.write((char*)&d_carrier_lock_test, sizeof(float)); -% -% // AUX vars (for debug purposes) -% tmp_float = d_rem_code_phase_samples; -% d_dump_file.write((char*)&tmp_float, sizeof(float)); -% tmp_double=(double)(d_sample_counter+d_current_prn_length_samples); -% d_dump_file.write((char*)&tmp_double, sizeof(double)); - - VE=v1; - E=v2; - P=v3; - L=v4; - VL=v5; - prompt_I=v6; - prompt_Q=v7; - PRN_start_sample=v8; - acc_carrier_phase_rad=v9; - carrier_doppler_hz=v10; - code_freq_hz=v11; - carr_error=v12; - carr_nco=v13; - code_error=v14; - code_nco=v15; - CN0_SNV_dB_Hz=v16; - carrier_lock_test=v17; - var1=v18; - var2=v19; - - GNSS_tracking.VE=VE; - GNSS_tracking.E=E; - GNSS_tracking.P=P; - GNSS_tracking.L=L; - GNSS_tracking.VL=VL; - GNSS_tracking.prompt_I=prompt_I; - GNSS_tracking.prompt_Q=prompt_Q; - GNSS_tracking.PRN_start_sample=PRN_start_sample; - GNSS_tracking.acc_carrier_phase_rad=acc_carrier_phase_rad; - GNSS_tracking.carrier_doppler_hz=carrier_doppler_hz; - GNSS_tracking.code_freq_hz=code_freq_hz; - GNSS_tracking.carr_error=carr_error; - GNSS_tracking.carr_nco=carr_nco; - GNSS_tracking.code_error=code_error; - GNSS_tracking.code_nco=code_nco; - GNSS_tracking.CN0_SNV_dB_Hz=CN0_SNV_dB_Hz; - GNSS_tracking.carrier_lock_test=carrier_lock_test; - GNSS_tracking.var1=var1; - GNSS_tracking.var2=var2; + GNSS_tracking.VE = v1; + GNSS_tracking.E = v2; + GNSS_tracking.P = v3; + GNSS_tracking.L = v4; + GNSS_tracking.VL = v5; + GNSS_tracking.prompt_I = v6; + GNSS_tracking.prompt_Q = v7; + GNSS_tracking.PRN_start_sample = v8; + GNSS_tracking.acc_carrier_phase_rad = v9; + GNSS_tracking.carrier_doppler_hz = v10; + GNSS_tracking.code_freq_hz = v11; + GNSS_tracking.carr_error = v12; + GNSS_tracking.carr_nco = v13; + GNSS_tracking.code_error = v14; + GNSS_tracking.code_nco = v15; + GNSS_tracking.CN0_SNV_dB_Hz = v16; + GNSS_tracking.carrier_lock_test = v17; + GNSS_tracking.var1 = v18; + GNSS_tracking.var2 = v19; + GNSS_tracking.PRN = v20; end diff --git a/src/utils/matlab/libs/galileo_e1_dll_pll_veml_read_tracking_dump_32bits.m b/src/utils/matlab/libs/galileo_e1_dll_pll_veml_read_tracking_dump_32bits.m deleted file mode 100644 index f7dab9fc3..000000000 --- a/src/utils/matlab/libs/galileo_e1_dll_pll_veml_read_tracking_dump_32bits.m +++ /dev/null @@ -1,192 +0,0 @@ -% /*! -% * \file galileo_e1_dll_pll_veml_read_tracking_dump.m -% * \brief Read GNSS-SDR Tracking dump binary file into MATLAB. -% * \author Luis Esteve, 2012. luis(at)epsilon-formacion.com -% * ------------------------------------------------------------------------- -% * -% * Copyright (C) 2010-2012 (see AUTHORS file for a list of contributors) -% * -% * GNSS-SDR is a software defined Global Navigation -% * Satellite Systems receiver -% * -% * This file is part of GNSS-SDR. -% * -% * GNSS-SDR is free software: you can redistribute it and/or modify -% * it under the terms of the GNU General Public License as published by -% * the Free Software Foundation, either version 3 of the License, or -% * at your option) any later version. -% * -% * GNSS-SDR is distributed in the hope that it will be useful, -% * but WITHOUT ANY WARRANTY; without even the implied warranty of -% * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% * GNU General Public License for more details. -% * -% * You should have received a copy of the GNU General Public License -% * along with GNSS-SDR. If not, see . -% * -% * ------------------------------------------------------------------------- -% */ -function [GNSS_tracking] = galileo_e1_dll_pll_veml_read_tracking_dump_32bits (filename, count) - - %% usage: galileo_e1_dll_pll_veml_read_tracking_dump (filename, [count]) - %% - %% open GNSS-SDR tracking binary log file .dat and return the contents - %% - - m = nargchk (1,2,nargin); - num_float_vars=17; - num_unsigned_long_int_vars=1; - num_double_vars=1; - double_size_bytes=8; - unsigned_long_int_size_bytes=4; - float_size_bytes=4; - skip_bytes_each_read=float_size_bytes*num_float_vars+unsigned_long_int_size_bytes*num_unsigned_long_int_vars+double_size_bytes*num_double_vars; - bytes_shift=0; - if (m) - usage (m); - end - - if (nargin < 2) - count = Inf; - end - %loops_counter = fread (f, count, 'uint32',4*12); - f = fopen (filename, 'rb'); - if (f < 0) - else - v1 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v2 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v3 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v4 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v5 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v6 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v7 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v8 = fread (f, count, 'uint32',skip_bytes_each_read-unsigned_long_int_size_bytes); - bytes_shift=bytes_shift+unsigned_long_int_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v9 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v10 = fread (f, count, '*float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v11 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v12 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v13 = fread (f, count, '*float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v14 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v15 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v16 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v17 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v18 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v19 = fread (f, count, 'float64',skip_bytes_each_read-double_size_bytes); - fclose (f); - - %%%%%%%% output vars %%%%%%%% - -% // EPR -% d_dump_file.write((char*)&tmp_VE, sizeof(float)); -% d_dump_file.write((char*)&tmp_E, sizeof(float)); -% d_dump_file.write((char*)&tmp_P, sizeof(float)); -% d_dump_file.write((char*)&tmp_L, sizeof(float)); -% d_dump_file.write((char*)&tmp_VL, sizeof(float)); -% // PROMPT I and Q (to analyze navigation symbols) -% d_dump_file.write((char*)&prompt_I, sizeof(float)); -% d_dump_file.write((char*)&prompt_Q, sizeof(float)); -% // PRN start sample stamp -% //tmp_float=(float)d_sample_counter; -% d_dump_file.write((char*)&d_sample_counter, sizeof(unsigned long int)); -% // accumulated carrier phase -% d_dump_file.write((char*)&d_acc_carrier_phase_rad, sizeof(float)); -% -% // carrier and code frequency -% d_dump_file.write((char*)&d_carrier_doppler_hz, sizeof(float)); -% d_dump_file.write((char*)&d_code_freq_hz, sizeof(float)); -% -% //PLL commands -% d_dump_file.write((char*)&carr_error, sizeof(float)); -% d_dump_file.write((char*)&carr_nco, sizeof(float)); -% -% //DLL commands -% d_dump_file.write((char*)&code_error, sizeof(float)); -% d_dump_file.write((char*)&code_nco, sizeof(float)); -% -% // CN0 and carrier lock test -% d_dump_file.write((char*)&d_CN0_SNV_dB_Hz, sizeof(float)); -% d_dump_file.write((char*)&d_carrier_lock_test, sizeof(float)); -% -% // AUX vars (for debug purposes) -% tmp_float = d_rem_code_phase_samples; -% d_dump_file.write((char*)&tmp_float, sizeof(float)); -% tmp_double=(double)(d_sample_counter+d_current_prn_length_samples); -% d_dump_file.write((char*)&tmp_double, sizeof(double)); - - VE=v1; - E=v2; - P=v3; - L=v4; - VL=v5; - prompt_I=v6; - prompt_Q=v7; - PRN_start_sample=v8; - acc_carrier_phase_rad=v9; - carrier_doppler_hz=v10; - code_freq_hz=v11; - carr_error=v12; - carr_nco=v13; - code_error=v14; - code_nco=v15; - CN0_SNV_dB_Hz=v16; - carrier_lock_test=v17; - var1=v18; - var2=v19; - - GNSS_tracking.VE=VE; - GNSS_tracking.E=E; - GNSS_tracking.P=P; - GNSS_tracking.L=L; - GNSS_tracking.VL=VL; - GNSS_tracking.prompt_I=prompt_I; - GNSS_tracking.prompt_Q=prompt_Q; - GNSS_tracking.PRN_start_sample=PRN_start_sample; - GNSS_tracking.acc_carrier_phase_rad=acc_carrier_phase_rad; - GNSS_tracking.carrier_doppler_hz=carrier_doppler_hz; - GNSS_tracking.code_freq_hz=code_freq_hz; - GNSS_tracking.carr_error=carr_error; - GNSS_tracking.carr_nco=carr_nco; - GNSS_tracking.code_error=code_error; - GNSS_tracking.code_nco=code_nco; - GNSS_tracking.CN0_SNV_dB_Hz=CN0_SNV_dB_Hz; - GNSS_tracking.carrier_lock_test=carrier_lock_test; - GNSS_tracking.var1=var1; - GNSS_tracking.var2=var2; - end - diff --git a/src/utils/matlab/libs/gps_l1_ca_dll_pll_read_tracking_dump.m b/src/utils/matlab/libs/gps_l1_ca_dll_pll_read_tracking_dump.m index b8e3424e7..cab1251a4 100644 --- a/src/utils/matlab/libs/gps_l1_ca_dll_pll_read_tracking_dump.m +++ b/src/utils/matlab/libs/gps_l1_ca_dll_pll_read_tracking_dump.m @@ -34,12 +34,26 @@ function [GNSS_tracking] = gps_l1_ca_dll_pll_read_tracking_dump (filename, count %% m = nargchk (1,2,nargin); - num_float_vars=16; - num_double_vars=2; - double_size_bytes=8; - float_size_bytes=4; - skip_bytes_each_read=float_size_bytes*num_float_vars+double_size_bytes*num_double_vars; - bytes_shift=0; + num_float_vars = 5; + num_double_vars = 11; + num_ulong_vars = 1; + num_uint_vars = 1; + + if(~isempty(strfind(computer('arch'), '64'))) + % 64-bit computer + double_size_bytes = 8; + unsigned_long_int_size_bytes = 8; + float_size_bytes = 4; + unsigned_int_size_bytes = 4; + else + double_size_bytes = 8; + unsigned_long_int_size_bytes = 4; + float_size_bytes = 4; + unsigned_int_size_bytes = 4; + end + + skip_bytes_each_read = float_size_bytes*num_float_vars + double_size_bytes*num_double_vars + unsigned_int_size_bytes*num_uint_vars + unsigned_long_int_size_bytes*num_ulong_vars; + bytes_shift = 0; if (m) usage (m); end @@ -53,130 +67,76 @@ function [GNSS_tracking] = gps_l1_ca_dll_pll_read_tracking_dump (filename, count else v1 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float + fseek(f,bytes_shift,'bof'); % move to next float v2 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float + fseek(f,bytes_shift,'bof'); % move to next float v3 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float + fseek(f,bytes_shift,'bof'); % move to next float v4 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float + fseek(f,bytes_shift,'bof'); % move to next float v5 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v6 = fread (f, count, 'uint32',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v7 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v8 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v9 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v10 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v11 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v12 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v13 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v14 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v15 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v16 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v17 = fread (f, count, 'float64',skip_bytes_each_read-double_size_bytes); + fseek(f,bytes_shift,'bof'); % move to next unsigned long int + v6 = fread (f, count, 'long',skip_bytes_each_read-unsigned_long_int_size_bytes); + bytes_shift=bytes_shift+unsigned_long_int_size_bytes; + fseek(f,bytes_shift,'bof'); % move to next float + v7 = fread (f, count, 'double',skip_bytes_each_read-double_size_bytes); + bytes_shift=bytes_shift+double_size_bytes; + fseek(f,bytes_shift,'bof'); % move to next float + v8 = fread (f, count, 'double',skip_bytes_each_read-double_size_bytes); + bytes_shift=bytes_shift+double_size_bytes; + fseek(f,bytes_shift,'bof'); % move to next float + v9 = fread (f, count, 'double',skip_bytes_each_read-double_size_bytes); + bytes_shift=bytes_shift+double_size_bytes; + fseek(f,bytes_shift,'bof'); % move to next float + v10 = fread (f, count, 'double',skip_bytes_each_read-double_size_bytes); + bytes_shift=bytes_shift+double_size_bytes; + fseek(f,bytes_shift,'bof'); % move to next float + v11 = fread (f, count, 'double',skip_bytes_each_read-double_size_bytes); + bytes_shift=bytes_shift+double_size_bytes; + fseek(f,bytes_shift,'bof'); % move to next float + v12 = fread (f, count, 'double',skip_bytes_each_read-double_size_bytes); + bytes_shift=bytes_shift+double_size_bytes; + fseek(f,bytes_shift,'bof'); % move to next float + v13 = fread (f, count, 'double',skip_bytes_each_read-double_size_bytes); + bytes_shift=bytes_shift+double_size_bytes; + fseek(f,bytes_shift,'bof'); % move to next float + v14 = fread (f, count, 'double',skip_bytes_each_read-double_size_bytes); + bytes_shift=bytes_shift+double_size_bytes; + fseek(f,bytes_shift,'bof'); % move to next float + v15 = fread (f, count, 'double',skip_bytes_each_read-double_size_bytes); bytes_shift=bytes_shift+double_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v18 = fread (f, count, 'float64',skip_bytes_each_read-double_size_bytes); + fseek(f,bytes_shift,'bof'); % move to next float + v16 = fread (f, count, 'double',skip_bytes_each_read-double_size_bytes); + bytes_shift=bytes_shift+double_size_bytes; + fseek(f,bytes_shift,'bof'); % move to next double + v17 = fread (f, count, 'double',skip_bytes_each_read-double_size_bytes); + bytes_shift=bytes_shift+double_size_bytes; + fseek(f,bytes_shift,'bof'); % move to next double + v18 = fread (f, count, 'uint', skip_bytes_each_read - unsigned_int_size_bytes); fclose (f); - - %%%%%%%% output vars %%%%%%%% - -% // EPR -% d_dump_file.write((char*)&tmp_E, sizeof(float)); -% d_dump_file.write((char*)&tmp_P, sizeof(float)); -% d_dump_file.write((char*)&tmp_L, sizeof(float)); -% // PROMPT I and Q (to analyze navigation symbols) -% d_dump_file.write((char*)&prompt_I, sizeof(float)); -% d_dump_file.write((char*)&prompt_Q, sizeof(float)); -% // PRN start sample stamp -% //tmp_float=(float)d_sample_counter; -% d_dump_file.write((char*)&d_sample_counter, sizeof(unsigned long int)); -% // accumulated carrier phase -% d_dump_file.write((char*)&d_acc_carrier_phase_rad, sizeof(float)); -% -% // carrier and code frequency -% d_dump_file.write((char*)&d_carrier_doppler_hz, sizeof(float)); -% d_dump_file.write((char*)&d_code_freq_hz, sizeof(float)); -% -% //PLL commands -% d_dump_file.write((char*)&carr_error, sizeof(float)); -% d_dump_file.write((char*)&carr_nco, sizeof(float)); -% -% //DLL commands -% d_dump_file.write((char*)&code_error, sizeof(float)); -% d_dump_file.write((char*)&code_nco, sizeof(float)); -% -% // CN0 and carrier lock test -% d_dump_file.write((char*)&d_CN0_SNV_dB_Hz, sizeof(float)); -% d_dump_file.write((char*)&d_carrier_lock_test, sizeof(float)); -% -% // AUX vars (for debug purposes) -% tmp_float=0; -% d_dump_file.write((char*)&tmp_float, sizeof(float)); -% d_dump_file.write((char*)&d_sample_counter_seconds, sizeof(double)); - - E=v1; - P=v2; - L=v3; - prompt_I=v4; - prompt_Q=v5; - PRN_start_sample=v6; - acc_carrier_phase_rad=v7; - carrier_doppler_hz=v8; - code_freq_hz=v9; - carr_error=v10; - carr_nco=v11; - code_error=v12; - code_nco=v13; - CN0_SNV_dB_Hz=v14; - carrier_lock_test=v15; - var1=v16; - var2=v17; - var3=v18; - - GNSS_tracking.E=E; - GNSS_tracking.P=P; - GNSS_tracking.L=L; - GNSS_tracking.prompt_I=prompt_I; - GNSS_tracking.prompt_Q=prompt_Q; - GNSS_tracking.PRN_start_sample=PRN_start_sample; - GNSS_tracking.acc_carrier_phase_rad=acc_carrier_phase_rad; - GNSS_tracking.carrier_doppler_hz=carrier_doppler_hz; - GNSS_tracking.code_freq_hz=code_freq_hz; - GNSS_tracking.carr_error=carr_error; - GNSS_tracking.carr_nco=carr_nco; - GNSS_tracking.code_error=code_error; - GNSS_tracking.code_nco=code_nco; - GNSS_tracking.CN0_SNV_dB_Hz=CN0_SNV_dB_Hz; - GNSS_tracking.carrier_lock_test=carrier_lock_test; - GNSS_tracking.var1=var1; - GNSS_tracking.var2=var2; - GNSS_tracking.var3=var3; + + + GNSS_tracking.E = v1; + GNSS_tracking.P = v2; + GNSS_tracking.L = v3; + GNSS_tracking.prompt_I = v4; + GNSS_tracking.prompt_Q = v5; + GNSS_tracking.PRN_start_sample = v6; + GNSS_tracking.acc_carrier_phase_rad = v7; + GNSS_tracking.carrier_doppler_hz = v8; + GNSS_tracking.code_freq_hz = v9; + GNSS_tracking.carr_error = v10; + GNSS_tracking.carr_nco = v11; + GNSS_tracking.code_error = v12; + GNSS_tracking.code_nco = v13; + GNSS_tracking.CN0_SNV_dB_Hz = v14; + GNSS_tracking.carrier_lock_test = v15; + GNSS_tracking.var1 = v16; + GNSS_tracking.var2 = v17; + GNSS_tracking.PRN = v18; end diff --git a/src/utils/matlab/libs/gps_l1_ca_dll_pll_read_tracking_dump_64bits.m b/src/utils/matlab/libs/gps_l1_ca_dll_pll_read_tracking_dump_64bits.m deleted file mode 100644 index f7d0bb97a..000000000 --- a/src/utils/matlab/libs/gps_l1_ca_dll_pll_read_tracking_dump_64bits.m +++ /dev/null @@ -1,179 +0,0 @@ -% /*! -% * \file gps_l1_ca_dll_pll_read_tracking_dump.m -% * \brief Read GNSS-SDR Tracking dump binary file into MATLAB. -% * \author Javier Arribas, 2011. jarribas(at)cttc.es -% * ------------------------------------------------------------------------- -% * -% * Copyright (C) 2010-2011 (see AUTHORS file for a list of contributors) -% * -% * GNSS-SDR is a software defined Global Navigation -% * Satellite Systems receiver -% * -% * This file is part of GNSS-SDR. -% * -% * GNSS-SDR is free software: you can redistribute it and/or modify -% * it under the terms of the GNU General Public License as published by -% * the Free Software Foundation, either version 3 of the License, or -% * at your option) any later version. -% * -% * GNSS-SDR is distributed in the hope that it will be useful, -% * but WITHOUT ANY WARRANTY; without even the implied warranty of -% * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% * GNU General Public License for more details. -% * -% * You should have received a copy of the GNU General Public License -% * along with GNSS-SDR. If not, see . -% * -% * ------------------------------------------------------------------------- -% */ -function [GNSS_tracking] = gps_l1_ca_dll_pll_read_tracking_dump_64bits (filename, count) - - %% usage: gps_l1_ca_dll_pll_read_tracking_dump_64bits (filename, [count]) - %% - %% open GNSS-SDR tracking binary log file .dat and return the contents - %% - - m = nargchk (1,2,nargin); - num_float_vars=15; - num_unsigned_long_int_vars=1; - num_double_vars=1; - double_size_bytes=8; - unsigned_long_int_size_bytes=8; - float_size_bytes=4; - skip_bytes_each_read=float_size_bytes*num_float_vars+unsigned_long_int_size_bytes*num_unsigned_long_int_vars+double_size_bytes*num_double_vars; - bytes_shift=0; - if (m) - usage (m); - end - - if (nargin < 2) - count = Inf; - end - %loops_counter = fread (f, count, 'uint32',4*12); - f = fopen (filename, 'rb'); - if (f < 0) - else - v1 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v2 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v3 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v4 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v5 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v6 = fread (f, count, 'uint64',skip_bytes_each_read-unsigned_long_int_size_bytes); - bytes_shift=bytes_shift+unsigned_long_int_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v7 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v8 = fread (f, count, '*float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v9 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v10 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v11 = fread (f, count, '*float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v12 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v13 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v14 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v15 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v16 = fread (f, count, 'float',skip_bytes_each_read-float_size_bytes); - bytes_shift=bytes_shift+float_size_bytes; - fseek(f,bytes_shift,'bof'); % move to next interleaved float - v17 = fread (f, count, 'float64',skip_bytes_each_read-double_size_bytes); - fclose (f); - - %%%%%%%% output vars %%%%%%%% - -% // EPR -% d_dump_file.write((char*)&tmp_E, sizeof(float)); -% d_dump_file.write((char*)&tmp_P, sizeof(float)); -% d_dump_file.write((char*)&tmp_L, sizeof(float)); -% // PROMPT I and Q (to analyze navigation symbols) -% d_dump_file.write((char*)&prompt_I, sizeof(float)); -% d_dump_file.write((char*)&prompt_Q, sizeof(float)); -% // PRN start sample stamp -% //tmp_float=(float)d_sample_counter; -% d_dump_file.write((char*)&d_sample_counter, sizeof(unsigned long int)); -% // accumulated carrier phase -% d_dump_file.write((char*)&d_acc_carrier_phase_rad, sizeof(float)); -% -% // carrier and code frequency -% d_dump_file.write((char*)&d_carrier_doppler_hz, sizeof(float)); -% d_dump_file.write((char*)&d_code_freq_hz, sizeof(float)); -% -% //PLL commands -% d_dump_file.write((char*)&carr_error, sizeof(float)); -% d_dump_file.write((char*)&carr_nco, sizeof(float)); -% -% //DLL commands -% d_dump_file.write((char*)&code_error, sizeof(float)); -% d_dump_file.write((char*)&code_nco, sizeof(float)); -% -% // CN0 and carrier lock test -% d_dump_file.write((char*)&d_CN0_SNV_dB_Hz, sizeof(float)); -% d_dump_file.write((char*)&d_carrier_lock_test, sizeof(float)); -% -% // AUX vars (for debug purposes) -% tmp_float=0; -% d_dump_file.write((char*)&tmp_float, sizeof(float)); -% d_dump_file.write((char*)&d_sample_counter_seconds, sizeof(double)); - - E=v1; - P=v2; - L=v3; - prompt_I=v4; - prompt_Q=v5; - PRN_start_sample=v6; - acc_carrier_phase_rad=v7; - carrier_doppler_hz=v8; - code_freq_hz=v9; - carr_error=v10; - carr_nco=v11; - code_error=v12; - code_nco=v13; - CN0_SNV_dB_Hz=v14; - carrier_lock_test=v15; - var1=v16; - var2=v17; - - GNSS_tracking.E=E; - GNSS_tracking.P=P; - GNSS_tracking.L=L; - GNSS_tracking.prompt_I=prompt_I; - GNSS_tracking.prompt_Q=prompt_Q; - GNSS_tracking.PRN_start_sample=PRN_start_sample; - GNSS_tracking.acc_carrier_phase_rad=acc_carrier_phase_rad; - GNSS_tracking.carrier_doppler_hz=carrier_doppler_hz; - GNSS_tracking.code_freq_hz=code_freq_hz; - GNSS_tracking.carr_error=carr_error; - GNSS_tracking.carr_nco=carr_nco; - GNSS_tracking.code_error=code_error; - GNSS_tracking.code_nco=code_nco; - GNSS_tracking.CN0_SNV_dB_Hz=CN0_SNV_dB_Hz; - GNSS_tracking.carrier_lock_test=carrier_lock_test; - GNSS_tracking.var1=var1; - GNSS_tracking.var2=var2; - end - diff --git a/src/utils/matlab/libs/plotTracking.m b/src/utils/matlab/libs/plotTracking.m index 28764f3e9..d2e31f537 100644 --- a/src/utils/matlab/libs/plotTracking.m +++ b/src/utils/matlab/libs/plotTracking.m @@ -49,7 +49,7 @@ for channelNr = channelList clf(channelNr +200); set(channelNr +200, 'Name', ['Channel ', num2str(channelNr), ... ' (PRN ', ... - num2str(trackResults(channelNr).PRN), ... + num2str(trackResults(channelNr).PRN(end-1)), ... ') results']); %% Draw axes ============================================================== @@ -122,7 +122,7 @@ for channelNr = channelList %----- PLL discriminator filtered---------------------------------- plot (handles(3, 1), timeAxisInSeconds, ... - trackResults(channelNr).pllDiscrFilt, 'b'); + trackResults(channelNr).pllDiscrFilt(1:settings.msToProcess), 'b'); grid (handles(3, 1)); axis (handles(3, 1), 'tight'); diff --git a/src/utils/matlab/libs/plotVEMLTracking.m b/src/utils/matlab/libs/plotVEMLTracking.m index da219e102..8af2225f9 100644 --- a/src/utils/matlab/libs/plotVEMLTracking.m +++ b/src/utils/matlab/libs/plotVEMLTracking.m @@ -49,7 +49,7 @@ for channelNr = channelList clf(channelNr +200); set(channelNr +200, 'Name', ['Channel ', num2str(channelNr), ... ' (PRN ', ... - num2str(trackResults(channelNr).PRN), ... + num2str(trackResults(channelNr).PRN(end-1)), ... ') results']); %% Draw axes ============================================================== diff --git a/src/utils/matlab/plotTrackingE5a.m b/src/utils/matlab/plotTrackingE5a.m index f8a76b7d2..b017accf3 100644 --- a/src/utils/matlab/plotTrackingE5a.m +++ b/src/utils/matlab/plotTrackingE5a.m @@ -66,7 +66,7 @@ for channelNr = channelList %% Plot all figures ======================================================= - timeAxisInSeconds = (1:settings.msToProcess)/1000; + timeAxisInSeconds = (1:settings.msToProcess-1)/1000; %----- Discrete-Time Scatter Plot --------------------------------- plot(handles(1, 1), trackResults(channelNr).I_PN,... @@ -81,7 +81,7 @@ for channelNr = channelList %----- Nav bits --------------------------------------------------- plot (handles(1, 2), timeAxisInSeconds, ... - trackResults(channelNr).I_PN); + trackResults(channelNr).I_PN(1:settings.msToProcess-1)); grid (handles(1, 2)); title (handles(1, 2), 'Bits of the navigation message'); @@ -90,7 +90,7 @@ for channelNr = channelList %----- PLL discriminator unfiltered-------------------------------- plot (handles(2, 1), timeAxisInSeconds, ... - trackResults(channelNr).pllDiscr, 'r'); + trackResults(channelNr).pllDiscr(1:settings.msToProcess-1), 'r'); grid (handles(2, 1)); axis (handles(2, 1), 'tight'); @@ -100,12 +100,12 @@ for channelNr = channelList %----- Correlation ------------------------------------------------ plot(handles(2, 2), timeAxisInSeconds, ... - [sqrt(trackResults(channelNr).I_E.^2 + ... - trackResults(channelNr).Q_E.^2)', ... - sqrt(trackResults(channelNr).I_P.^2 + ... - trackResults(channelNr).Q_P.^2)', ... - sqrt(trackResults(channelNr).I_L.^2 + ... - trackResults(channelNr).Q_L.^2)'], ... + [sqrt(trackResults(channelNr).I_E(1:settings.msToProcess-1).^2 + ... + trackResults(channelNr).Q_E(1:settings.msToProcess-1).^2)', ... + sqrt(trackResults(channelNr).I_P(1:settings.msToProcess-1).^2 + ... + trackResults(channelNr).Q_P(1:settings.msToProcess-1).^2)', ... + sqrt(trackResults(channelNr).I_L(1:settings.msToProcess-1).^2 + ... + trackResults(channelNr).Q_L(1:settings.msToProcess-1).^2)'], ... '-*'); grid (handles(2, 2)); @@ -122,7 +122,7 @@ for channelNr = channelList %----- PLL discriminator filtered---------------------------------- plot (handles(3, 1), timeAxisInSeconds, ... - trackResults(channelNr).pllDiscrFilt, 'b'); + trackResults(channelNr).pllDiscrFilt(1:settings.msToProcess-1), 'b'); grid (handles(3, 1)); axis (handles(3, 1), 'tight'); @@ -132,7 +132,7 @@ for channelNr = channelList %----- DLL discriminator unfiltered-------------------------------- plot (handles(3, 2), timeAxisInSeconds, ... - trackResults(channelNr).dllDiscr, 'r'); + trackResults(channelNr).dllDiscr(1:settings.msToProcess-1), 'r'); grid (handles(3, 2)); axis (handles(3, 2), 'tight'); @@ -142,7 +142,7 @@ for channelNr = channelList %----- DLL discriminator filtered---------------------------------- plot (handles(3, 3), timeAxisInSeconds, ... - trackResults(channelNr).dllDiscrFilt, 'b'); + trackResults(channelNr).dllDiscrFilt(1:settings.msToProcess-1), 'b'); grid (handles(3, 3)); axis (handles(3, 3), 'tight'); From c1d798ae371466d4165523c5954b01b403a164a0 Mon Sep 17 00:00:00 2001 From: Cillian O'Driscoll Date: Fri, 16 Jun 2017 22:37:54 +0100 Subject: [PATCH 043/171] [WIP] fix for #54 two_bit_packed_file_signal_source: ensure all blocks have the right item size for both real and complex outputs --- .../adapters/two_bit_packed_file_signal_source.cc | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/algorithms/signal_source/adapters/two_bit_packed_file_signal_source.cc b/src/algorithms/signal_source/adapters/two_bit_packed_file_signal_source.cc index 9fa6361f9..0e3cecc5f 100644 --- a/src/algorithms/signal_source/adapters/two_bit_packed_file_signal_source.cc +++ b/src/algorithms/signal_source/adapters/two_bit_packed_file_signal_source.cc @@ -174,6 +174,8 @@ TwoBitPackedFileSignalSource::TwoBitPackedFileSignalSource(ConfigurationInterfac DLOG(INFO) << "file_source(" << file_source_->unique_id() << ")"; + size_t output_item_size = ( is_complex_ ? sizeof( gr_complex ) : sizeof( float ) ); + if (samples_ == 0) // read all file { /*! @@ -211,19 +213,19 @@ TwoBitPackedFileSignalSource::TwoBitPackedFileSignalSource(ConfigurationInterfac LOG(INFO) << "Total number samples to be processed= " << samples_ << " GNSS signal duration= " << signal_duration_s << " [s]"; std::cout << "GNSS signal recorded time to be processed: " << signal_duration_s << " [s]" << std::endl; - valve_ = gnss_sdr_make_valve(sizeof(gr_complex), samples_, queue_); + valve_ = gnss_sdr_make_valve(output_item_size, samples_, queue_); DLOG(INFO) << "valve(" << valve_->unique_id() << ")"; if (dump_) { //sink_ = gr_make_file_sink(item_size_, dump_filename_.c_str()); - sink_ = gr::blocks::file_sink::make(sizeof(gr_complex), dump_filename_.c_str()); + sink_ = gr::blocks::file_sink::make(output_item_size, dump_filename_.c_str()); DLOG(INFO) << "file_sink(" << sink_->unique_id() << ")"; } if (enable_throttle_control_) { - throttle_ = gr::blocks::throttle::make(sizeof(gr_complex), sampling_frequency_); + throttle_ = gr::blocks::throttle::make(output_item_size, sampling_frequency_); } DLOG(INFO) << "File source filename " << filename_; DLOG(INFO) << "Samples " << samples_; From 89d8a3af0e060dc74ff32a937914c06408fe262d Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Sat, 17 Jun 2017 09:57:01 +0200 Subject: [PATCH 044/171] Include libs path if not already present --- .../matlab/galileo_e1_dll_pll_veml_plot_sample.m | 16 ++++++++++------ .../matlab/galileo_e5a_dll_pll_plot_sample.m | 13 +++++++++---- src/utils/matlab/gps_l1_ca_dll_pll_plot_sample.m | 11 ++++++++--- 3 files changed, 27 insertions(+), 13 deletions(-) diff --git a/src/utils/matlab/galileo_e1_dll_pll_veml_plot_sample.m b/src/utils/matlab/galileo_e1_dll_pll_veml_plot_sample.m index 92f4b8add..7e543b180 100644 --- a/src/utils/matlab/galileo_e1_dll_pll_veml_plot_sample.m +++ b/src/utils/matlab/galileo_e1_dll_pll_veml_plot_sample.m @@ -29,15 +29,19 @@ % */ close all; clear all; + +if ~exist('galileo_e1_dll_pll_veml_read_tracking_dump.m','file') + addpath('./libs') +end + samplingFreq = 5000000; %[Hz] -channels = 7; -first_channel = 0; -%path='/home/javier/workspace/gnss-sdr/trunk/install/'; -%path='/home/luis/dev/gnss-sdr/trunk/data/'; -path = '/Users/carlesfernandez/git/cttc/build/'; +channels = 7; % Number of channels +first_channel = 0; % Number of the first channel + +path = '/Users/carlesfernandez/git/cttc/build/'; %% CHANGE THIS PATH for N=1:1:channels - tracking_log_path = [path 'track_ch' num2str(N+first_channel-1) '.dat']; + tracking_log_path = [path 'track_ch' num2str(N+first_channel-1) '.dat']; %% CHANGE track_ch BY YOUR dump_filename GNSS_tracking(N)= galileo_e1_dll_pll_veml_read_tracking_dump(tracking_log_path); end diff --git a/src/utils/matlab/galileo_e5a_dll_pll_plot_sample.m b/src/utils/matlab/galileo_e5a_dll_pll_plot_sample.m index 2c3b45a24..54ee9d81e 100644 --- a/src/utils/matlab/galileo_e5a_dll_pll_plot_sample.m +++ b/src/utils/matlab/galileo_e5a_dll_pll_plot_sample.m @@ -30,15 +30,20 @@ % */ close all; clear all; + +if ~exist('gps_l1_ca_dll_pll_read_tracking_dump.m','file') + addpath('./libs') +end + + samplingFreq = 5000000; %[Hz] channels = 1; first_channel = 30; -%path='/home/javier/workspace/gnss-sdr/trunk/install/'; -%path='/home/marc/git/gnss-sdr/data/'; -path = '/Users/carlesfernandez/git/cttc/build/'; + +path = '/Users/carlesfernandez/git/cttc/build/'; %% CHANGE THIS PATH for N=1:1:channels - tracking_log_path = [path 'tracking_ch_' num2str(N+first_channel-1) '.dat']; + tracking_log_path = [path 'tracking_ch_' num2str(N+first_channel-1) '.dat']; %% CHANGE tracking_ch_ BY YOUR dump_filename GNSS_tracking(N)= gps_l1_ca_dll_pll_read_tracking_dump(tracking_log_path); end diff --git a/src/utils/matlab/gps_l1_ca_dll_pll_plot_sample.m b/src/utils/matlab/gps_l1_ca_dll_pll_plot_sample.m index 5fd81b2e9..9a2c6a1da 100644 --- a/src/utils/matlab/gps_l1_ca_dll_pll_plot_sample.m +++ b/src/utils/matlab/gps_l1_ca_dll_pll_plot_sample.m @@ -29,15 +29,20 @@ % */ close all; clear all; + +if ~exist('gps_l1_ca_dll_pll_read_tracking_dump.m','file') + addpath('./libs') +end + + samplingFreq = 5000000; %[Hz] channels = 7; first_channel = 0; -%path='/home/javier/workspace/gnss-sdr/trunk/install/'; -path = '/Users/carlesfernandez/git/cttc/build/'; +path = '/Users/carlesfernandez/git/cttc/build/'; %% CHANGE THIS PATH for N=1:1:channels - tracking_log_path = [path 'epl_tracking_ch_' num2str(N+first_channel-1) '.dat']; + tracking_log_path = [path 'epl_tracking_ch_' num2str(N+first_channel-1) '.dat']; %% CHANGE epl_tracking_ch_ BY YOUR dump_filename GNSS_tracking(N)= gps_l1_ca_dll_pll_read_tracking_dump(tracking_log_path); end From 9bfef0e05ac44d16c536e131b058741db0c7f1af Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Wed, 21 Jun 2017 08:54:47 +0200 Subject: [PATCH 045/171] Fix CMake scripts to use Ninja https://ninja-build.org/ cmake -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang -GNinja .. && ninja --- CMakeLists.txt | 28 +++++++++++-------- src/algorithms/PVT/adapters/CMakeLists.txt | 2 +- .../PVT/gnuradio_blocks/CMakeLists.txt | 2 +- src/algorithms/PVT/libs/CMakeLists.txt | 2 +- .../acquisition/adapters/CMakeLists.txt | 2 +- .../gnuradio_blocks/CMakeLists.txt | 2 +- .../acquisition/libs/CMakeLists.txt | 2 +- .../channel/adapters/CMakeLists.txt | 2 +- src/algorithms/channel/libs/CMakeLists.txt | 2 +- .../conditioner/adapters/CMakeLists.txt | 2 +- .../data_type_adapter/adapters/CMakeLists.txt | 2 +- .../gnuradio_blocks/CMakeLists.txt | 2 +- .../input_filter/adapters/CMakeLists.txt | 2 +- .../gnuradio_blocks/CMakeLists.txt | 2 +- src/algorithms/libs/CMakeLists.txt | 2 +- src/algorithms/libs/rtklib/CMakeLists.txt | 2 +- .../observables/adapters/CMakeLists.txt | 2 +- .../gnuradio_blocks/CMakeLists.txt | 2 +- .../resampler/adapters/CMakeLists.txt | 2 +- .../resampler/gnuradio_blocks/CMakeLists.txt | 2 +- .../signal_generator/adapters/CMakeLists.txt | 2 +- .../gnuradio_blocks/CMakeLists.txt | 2 +- .../gnuradio_blocks/CMakeLists.txt | 2 +- .../signal_source/libs/CMakeLists.txt | 2 +- .../telemetry_decoder/adapters/CMakeLists.txt | 2 +- .../gnuradio_blocks/CMakeLists.txt | 2 +- .../telemetry_decoder/libs/CMakeLists.txt | 2 +- .../libs/libswiftcnav/CMakeLists.txt | 2 +- .../tracking/adapters/CMakeLists.txt | 2 +- .../tracking/gnuradio_blocks/CMakeLists.txt | 2 +- src/algorithms/tracking/libs/CMakeLists.txt | 2 +- src/core/libs/CMakeLists.txt | 2 +- src/core/receiver/CMakeLists.txt | 2 +- src/core/system_parameters/CMakeLists.txt | 2 +- src/tests/CMakeLists.txt | 9 ++++-- .../libs/CMakeLists.txt | 2 +- 36 files changed, 57 insertions(+), 48 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 12918282e..a0244d241 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -513,7 +513,7 @@ if(NOT VOLK_GNSSSDR_FOUND) endif(CMAKE_COMPILER_IS_GNUCXX AND NOT WIN32) endif(ENABLE_PACKAGING) - set(VOLK_GNSSSDR_BUILD_COMMAND "make") + set(VOLK_GNSSSDR_BUILD_COMMAND "${CMAKE_MAKE_PROGRAM}") if(PYTHON_EXECUTABLE) set(USE_THIS_PYTHON "-DPYTHON_EXECUTABLE=${PYTHON_EXECUTABLE}") endif(PYTHON_EXECUTABLE) @@ -554,7 +554,9 @@ if(NOT VOLK_GNSSSDR_FOUND) UPDATE_COMMAND "" PATCH_COMMAND "" BUILD_COMMAND ${VOLK_GNSSSDR_BUILD_COMMAND} volk_gnsssdr_profile - INSTALL_DIR ${CMAKE_CURRENT_BINARY_DIR}/volk_gnsssdr_module/install + BUILD_BYPRODUCTS ${CMAKE_CURRENT_BINARY_DIR}/volk_gnsssdr_module/install/lib/${CMAKE_FIND_LIBRARY_PREFIXES}volk_gnsssdr${CMAKE_STATIC_LIBRARY_SUFFIX} + ${CMAKE_CURRENT_BINARY_DIR}/volk_gnsssdr_module/install/bin/volk_gnsssdr_profile + INSTALL_DIR ${CMAKE_CURRENT_BINARY_DIR}/volk_gnsssdr_module/install ) find_package(ORC) if(NOT ORC_FOUND) @@ -563,13 +565,14 @@ if(NOT VOLK_GNSSSDR_FOUND) endif(NOT ORC_FOUND) add_library(volk_gnsssdr UNKNOWN IMPORTED) - set_property(TARGET volk_gnsssdr PROPERTY IMPORTED_LOCATION ${CMAKE_CURRENT_BINARY_DIR}/volk_gnsssdr_module/install/lib/libvolk_gnsssdr.a) + set_property(TARGET volk_gnsssdr PROPERTY IMPORTED_LOCATION ${CMAKE_CURRENT_BINARY_DIR}/volk_gnsssdr_module/install/lib/libvolk_gnsssdr${CMAKE_STATIC_LIBRARY_SUFFIX}) set(VOLK_GNSSSDR_INCLUDE_DIRS "${CMAKE_CURRENT_BINARY_DIR}/volk_gnsssdr_module/build/include/;${CMAKE_CURRENT_SOURCE_DIR}/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/include;${ORC_INCLUDE_DIRS}") set(VOLK_GNSSSDR_LIBRARIES volk_gnsssdr ${ORC_LIBRARIES}) add_custom_command(TARGET volk_gnsssdr_module POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/volk_gnsssdr_module/install/bin/volk_gnsssdr_profile - ${CMAKE_SOURCE_DIR}/install/volk_gnsssdr_profile) + ${CMAKE_SOURCE_DIR}/install/volk_gnsssdr_profile + BYPRODUCTS ${CMAKE_SOURCE_DIR}/install/volk_gnsssdr_profile) add_custom_command(TARGET volk_gnsssdr_module POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/volk_gnsssdr_module/install/bin/volk_gnsssdr-config-info @@ -597,7 +600,8 @@ if (NOT GFlags_FOUND) SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/thirdparty/gflags/gflags-${gflags_RELEASE} BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}/gflags-${gflags_RELEASE} CMAKE_ARGS -DBUILD_SHARED_LIBS=ON -DBUILD_STATIC_LIBS=ON -DBUILD_gflags_nothreads_LIB=OFF -DCMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER} - BUILD_COMMAND make + BUILD_COMMAND ${CMAKE_MAKE_PROGRAM} + BUILD_BYPRODUCTS ${CMAKE_CURRENT_BINARY_DIR}/gflags-${gflags_RELEASE}/lib/${CMAKE_FIND_LIBRARY_PREFIXES}gflags${CMAKE_STATIC_LIBRARY_SUFFIX} UPDATE_COMMAND "" PATCH_COMMAND "" INSTALL_COMMAND "" @@ -608,7 +612,7 @@ if (NOT GFlags_FOUND) ) add_library(gflags UNKNOWN IMPORTED) - set_property(TARGET gflags PROPERTY IMPORTED_LOCATION ${CMAKE_CURRENT_BINARY_DIR}/gflags-${gflags_RELEASE}/lib/${CMAKE_FIND_LIBRARY_PREFIXES}gflags.a) + set_property(TARGET gflags PROPERTY IMPORTED_LOCATION ${CMAKE_CURRENT_BINARY_DIR}/gflags-${gflags_RELEASE}/lib/${CMAKE_FIND_LIBRARY_PREFIXES}gflags${CMAKE_STATIC_LIBRARY_SUFFIX}) add_dependencies(gflags gflags-${gflags_RELEASE}) set(GFlags_LIBS gflags) file(GLOB GFlags_SHARED_LIBS "${CMAKE_CURRENT_BINARY_DIR}/gflags-${gflags_RELEASE}/lib/${CMAKE_FIND_LIBRARY_PREFIXES}gflags${CMAKE_SHARED_LIBRARY_SUFFIX}*") @@ -730,7 +734,8 @@ ${CMAKE_CURRENT_SOURCE_DIR}/thirdparty/glog/glog-${glog_RELEASE}/configure") SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/thirdparty/glog/glog-${glog_RELEASE} BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}/glog-${glog_RELEASE} CONFIGURE_COMMAND ${GLOG_CONFIGURE} --prefix= - BUILD_COMMAND make + BUILD_COMMAND "${CMAKE_MAKE_PROGRAM}" + BUILD_BYPRODUCTS ${CMAKE_CURRENT_BINARY_DIR}/glog-${glog_RELEASE}/.libs/${CMAKE_FIND_LIBRARY_PREFIXES}glog${CMAKE_STATIC_LIBRARY_SUFFIX} UPDATE_COMMAND "" PATCH_COMMAND "" INSTALL_COMMAND "" @@ -742,7 +747,7 @@ ${CMAKE_CURRENT_SOURCE_DIR}/thirdparty/glog/glog-${glog_RELEASE}/configure") ${CMAKE_CURRENT_BINARY_DIR}/glog-${glog_RELEASE}/src ) set(GLOG_LIBRARIES - ${CMAKE_CURRENT_BINARY_DIR}/glog-${glog_RELEASE}/.libs/${CMAKE_FIND_LIBRARY_PREFIXES}glog.a + ${CMAKE_CURRENT_BINARY_DIR}/glog-${glog_RELEASE}/.libs/${CMAKE_FIND_LIBRARY_PREFIXES}glog${CMAKE_STATIC_LIBRARY_SUFFIX} ) set(LOCAL_GLOG true CACHE STRING "Glog downloaded and built automatically" FORCE) else(NOT GLOG_FOUND OR ${LOCAL_GFLAGS}) @@ -901,7 +906,7 @@ if(NOT ARMADILLO_FOUND OR ENABLE_OWN_ARMADILLO) message(STATUS " Armadillo has not been found.") message(STATUS " Armadillo will be downloaded and built automatically") message(STATUS " when doing 'make'. ") - set(armadillo_BRANCH 7.900.x) + set(armadillo_BRANCH 7.950.x) set(armadillo_RELEASE ${armadillo_BRANCH}) ExternalProject_Add( @@ -912,7 +917,8 @@ if(NOT ARMADILLO_FOUND OR ENABLE_OWN_ARMADILLO) SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/thirdparty/armadillo/armadillo-${armadillo_RELEASE} BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}/armadillo-${armadillo_RELEASE} CMAKE_ARGS -DCMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER} -DBUILD_SHARED_LIBS=OFF -DCMAKE_CXX_FLAGS=-std=c++11 - BUILD_COMMAND make + BUILD_COMMAND ${CMAKE_MAKE_PROGRAM} + BUILD_BYPRODUCTS ${CMAKE_CURRENT_BINARY_DIR}/armadillo-${armadillo_RELEASE}/${CMAKE_FIND_LIBRARY_PREFIXES}armadillo${CMAKE_STATIC_LIBRARY_SUFFIX} UPDATE_COMMAND "" INSTALL_COMMAND "" ) @@ -931,7 +937,7 @@ if(NOT ARMADILLO_FOUND OR ENABLE_OWN_ARMADILLO) if(NOT GFORTRAN) set(GFORTRAN "") endif(NOT GFORTRAN) - set(ARMADILLO_LIBRARIES ${BLAS} ${LAPACK} ${GFORTRAN} ${binary_dir}/${CMAKE_FIND_LIBRARY_PREFIXES}armadillo.a) + set(ARMADILLO_LIBRARIES ${BLAS} ${LAPACK} ${GFORTRAN} ${binary_dir}/${CMAKE_FIND_LIBRARY_PREFIXES}armadillo${CMAKE_STATIC_LIBRARY_SUFFIX}) set(LOCAL_ARMADILLO true CACHE STRING "Armadillo downloaded and built automatically" FORCE) set(ARMADILLO_VERSION_STRING ${armadillo_RELEASE}) else(NOT ARMADILLO_FOUND OR ENABLE_OWN_ARMADILLO) diff --git a/src/algorithms/PVT/adapters/CMakeLists.txt b/src/algorithms/PVT/adapters/CMakeLists.txt index a051c7953..baf58e507 100644 --- a/src/algorithms/PVT/adapters/CMakeLists.txt +++ b/src/algorithms/PVT/adapters/CMakeLists.txt @@ -21,7 +21,7 @@ set(PVT_ADAPTER_SOURCES ) include_directories( - $(CMAKE_CURRENT_SOURCE_DIR) + ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/src/core/system_parameters ${CMAKE_SOURCE_DIR}/src/core/interfaces ${CMAKE_SOURCE_DIR}/src/core/receiver diff --git a/src/algorithms/PVT/gnuradio_blocks/CMakeLists.txt b/src/algorithms/PVT/gnuradio_blocks/CMakeLists.txt index a80c236a4..ad8c08e7c 100644 --- a/src/algorithms/PVT/gnuradio_blocks/CMakeLists.txt +++ b/src/algorithms/PVT/gnuradio_blocks/CMakeLists.txt @@ -21,7 +21,7 @@ set(PVT_GR_BLOCKS_SOURCES ) include_directories( - $(CMAKE_CURRENT_SOURCE_DIR) + ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/src/core/system_parameters ${CMAKE_SOURCE_DIR}/src/core/interfaces ${CMAKE_SOURCE_DIR}/src/core/receiver diff --git a/src/algorithms/PVT/libs/CMakeLists.txt b/src/algorithms/PVT/libs/CMakeLists.txt index d223454d3..5e30040d5 100644 --- a/src/algorithms/PVT/libs/CMakeLists.txt +++ b/src/algorithms/PVT/libs/CMakeLists.txt @@ -31,7 +31,7 @@ set(PVT_LIB_SOURCES ) include_directories( - $(CMAKE_CURRENT_SOURCE_DIR) + ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/src/core/system_parameters ${CMAKE_SOURCE_DIR}/src/core/interfaces ${CMAKE_SOURCE_DIR}/src/core/receiver diff --git a/src/algorithms/acquisition/adapters/CMakeLists.txt b/src/algorithms/acquisition/adapters/CMakeLists.txt index d7b00edc1..c0900d4ff 100644 --- a/src/algorithms/acquisition/adapters/CMakeLists.txt +++ b/src/algorithms/acquisition/adapters/CMakeLists.txt @@ -42,7 +42,7 @@ if(OPENCL_FOUND) endif(OPENCL_FOUND) include_directories( - $(CMAKE_CURRENT_SOURCE_DIR) + ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/src/core/system_parameters ${CMAKE_SOURCE_DIR}/src/core/interfaces ${CMAKE_SOURCE_DIR}/src/core/receiver diff --git a/src/algorithms/acquisition/gnuradio_blocks/CMakeLists.txt b/src/algorithms/acquisition/gnuradio_blocks/CMakeLists.txt index 667e6f70f..c67c6106d 100644 --- a/src/algorithms/acquisition/gnuradio_blocks/CMakeLists.txt +++ b/src/algorithms/acquisition/gnuradio_blocks/CMakeLists.txt @@ -39,7 +39,7 @@ if(OPENCL_FOUND) endif(OPENCL_FOUND) include_directories( - $(CMAKE_CURRENT_SOURCE_DIR) + ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/src/core/system_parameters ${CMAKE_SOURCE_DIR}/src/core/interfaces ${CMAKE_SOURCE_DIR}/src/core/receiver diff --git a/src/algorithms/acquisition/libs/CMakeLists.txt b/src/algorithms/acquisition/libs/CMakeLists.txt index 93d1f1e29..702ee57b8 100644 --- a/src/algorithms/acquisition/libs/CMakeLists.txt +++ b/src/algorithms/acquisition/libs/CMakeLists.txt @@ -51,7 +51,7 @@ set(ACQUISITION_LIB_SOURCES #endif(ENABLE_FPGA) include_directories( - $(CMAKE_CURRENT_SOURCE_DIR) + ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/src/core/system_parameters ${CMAKE_SOURCE_DIR}/src/core/interfaces ${CMAKE_SOURCE_DIR}/src/core/receiver diff --git a/src/algorithms/channel/adapters/CMakeLists.txt b/src/algorithms/channel/adapters/CMakeLists.txt index b3efdcff7..e7c1c8660 100644 --- a/src/algorithms/channel/adapters/CMakeLists.txt +++ b/src/algorithms/channel/adapters/CMakeLists.txt @@ -19,7 +19,7 @@ set(CHANNEL_ADAPTER_SOURCES channel.cc) include_directories( - $(CMAKE_CURRENT_SOURCE_DIR) + ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/src/core/system_parameters ${CMAKE_SOURCE_DIR}/src/core/interfaces ${CMAKE_SOURCE_DIR}/src/core/receiver diff --git a/src/algorithms/channel/libs/CMakeLists.txt b/src/algorithms/channel/libs/CMakeLists.txt index 40dfdbe26..7dddaa5e3 100644 --- a/src/algorithms/channel/libs/CMakeLists.txt +++ b/src/algorithms/channel/libs/CMakeLists.txt @@ -22,7 +22,7 @@ set(CHANNEL_FSM_SOURCES ) include_directories( - $(CMAKE_CURRENT_SOURCE_DIR) + ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/src/core/system_parameters ${CMAKE_SOURCE_DIR}/src/core/interfaces ${CMAKE_SOURCE_DIR}/src/core/receiver diff --git a/src/algorithms/conditioner/adapters/CMakeLists.txt b/src/algorithms/conditioner/adapters/CMakeLists.txt index 371a78dc8..f23f3b4f2 100644 --- a/src/algorithms/conditioner/adapters/CMakeLists.txt +++ b/src/algorithms/conditioner/adapters/CMakeLists.txt @@ -23,7 +23,7 @@ set(COND_ADAPTER_SOURCES ) include_directories( - $(CMAKE_CURRENT_SOURCE_DIR) + ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/src/core/system_parameters ${CMAKE_SOURCE_DIR}/src/core/interfaces ${CMAKE_SOURCE_DIR}/src/core/receiver diff --git a/src/algorithms/data_type_adapter/adapters/CMakeLists.txt b/src/algorithms/data_type_adapter/adapters/CMakeLists.txt index 659ebf728..a88ffd3e9 100644 --- a/src/algorithms/data_type_adapter/adapters/CMakeLists.txt +++ b/src/algorithms/data_type_adapter/adapters/CMakeLists.txt @@ -27,7 +27,7 @@ set(DATATYPE_ADAPTER_SOURCES ) include_directories( - $(CMAKE_CURRENT_SOURCE_DIR) + ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/src/core/system_parameters ${CMAKE_SOURCE_DIR}/src/core/interfaces ${CMAKE_SOURCE_DIR}/src/algorithms/data_type_adapter/gnuradio_blocks diff --git a/src/algorithms/data_type_adapter/gnuradio_blocks/CMakeLists.txt b/src/algorithms/data_type_adapter/gnuradio_blocks/CMakeLists.txt index 111c87cf4..afb7a12d7 100644 --- a/src/algorithms/data_type_adapter/gnuradio_blocks/CMakeLists.txt +++ b/src/algorithms/data_type_adapter/gnuradio_blocks/CMakeLists.txt @@ -24,7 +24,7 @@ set(DATA_TYPE_GR_BLOCKS_SOURCES ) include_directories( - $(CMAKE_CURRENT_SOURCE_DIR) + ${CMAKE_CURRENT_SOURCE_DIR} ${GNURADIO_RUNTIME_INCLUDE_DIRS} ${VOLK_INCLUDE_DIRS} ) diff --git a/src/algorithms/input_filter/adapters/CMakeLists.txt b/src/algorithms/input_filter/adapters/CMakeLists.txt index daafaf401..2631239a7 100644 --- a/src/algorithms/input_filter/adapters/CMakeLists.txt +++ b/src/algorithms/input_filter/adapters/CMakeLists.txt @@ -24,7 +24,7 @@ set(INPUT_FILTER_ADAPTER_SOURCES ) include_directories( - $(CMAKE_CURRENT_SOURCE_DIR) + ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/src/core/system_parameters ${CMAKE_SOURCE_DIR}/src/core/interfaces ${CMAKE_SOURCE_DIR}/src/algorithms/input_filter/gnuradio_blocks diff --git a/src/algorithms/input_filter/gnuradio_blocks/CMakeLists.txt b/src/algorithms/input_filter/gnuradio_blocks/CMakeLists.txt index e2c3a3674..e4c2ba85d 100644 --- a/src/algorithms/input_filter/gnuradio_blocks/CMakeLists.txt +++ b/src/algorithms/input_filter/gnuradio_blocks/CMakeLists.txt @@ -23,7 +23,7 @@ set(INPUT_FILTER_GR_BLOCKS_SOURCES ) include_directories( - $(CMAKE_CURRENT_SOURCE_DIR) + ${CMAKE_CURRENT_SOURCE_DIR} ${GNURADIO_RUNTIME_INCLUDE_DIRS} ${GNURADIO_BLOCKS_INCLUDE_DIRS} ${VOLK_GNSSSDR_INCLUDE_DIRS} diff --git a/src/algorithms/libs/CMakeLists.txt b/src/algorithms/libs/CMakeLists.txt index f15c9ddb8..e7d8b60bd 100644 --- a/src/algorithms/libs/CMakeLists.txt +++ b/src/algorithms/libs/CMakeLists.txt @@ -44,7 +44,7 @@ if(OPENCL_FOUND) endif(OPENCL_FOUND) include_directories( - $(CMAKE_CURRENT_SOURCE_DIR) + ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/src/core/system_parameters ${CMAKE_SOURCE_DIR}/src/core/receiver ${CMAKE_SOURCE_DIR}/src/core/interfaces diff --git a/src/algorithms/libs/rtklib/CMakeLists.txt b/src/algorithms/libs/rtklib/CMakeLists.txt index 3640f45e4..d2fbe78c9 100644 --- a/src/algorithms/libs/rtklib/CMakeLists.txt +++ b/src/algorithms/libs/rtklib/CMakeLists.txt @@ -39,7 +39,7 @@ set(RTKLIB_LIB_SOURCES ) include_directories( - $(CMAKE_CURRENT_SOURCE_DIR) + ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/src/core/system_parameters ${CMAKE_SOURCE_DIR}/src/core/interfaces ${CMAKE_SOURCE_DIR}/src/core/receiver diff --git a/src/algorithms/observables/adapters/CMakeLists.txt b/src/algorithms/observables/adapters/CMakeLists.txt index 087302d8c..5129e4157 100644 --- a/src/algorithms/observables/adapters/CMakeLists.txt +++ b/src/algorithms/observables/adapters/CMakeLists.txt @@ -21,7 +21,7 @@ set(OBS_ADAPTER_SOURCES ) include_directories( - $(CMAKE_CURRENT_SOURCE_DIR) + ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/src/core/system_parameters ${CMAKE_SOURCE_DIR}/src/core/interfaces ${CMAKE_SOURCE_DIR}/src/core/receiver diff --git a/src/algorithms/observables/gnuradio_blocks/CMakeLists.txt b/src/algorithms/observables/gnuradio_blocks/CMakeLists.txt index ec5247aab..d195adf03 100644 --- a/src/algorithms/observables/gnuradio_blocks/CMakeLists.txt +++ b/src/algorithms/observables/gnuradio_blocks/CMakeLists.txt @@ -21,7 +21,7 @@ set(OBS_GR_BLOCKS_SOURCES ) include_directories( - $(CMAKE_CURRENT_SOURCE_DIR) + ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/src/core/system_parameters ${CMAKE_SOURCE_DIR}/src/core/interfaces ${CMAKE_SOURCE_DIR}/src/core/receiver diff --git a/src/algorithms/resampler/adapters/CMakeLists.txt b/src/algorithms/resampler/adapters/CMakeLists.txt index de168eec5..f78d51464 100644 --- a/src/algorithms/resampler/adapters/CMakeLists.txt +++ b/src/algorithms/resampler/adapters/CMakeLists.txt @@ -19,7 +19,7 @@ set(RESAMPLER_ADAPTER_SOURCES direct_resampler_conditioner.cc ) include_directories( - $(CMAKE_CURRENT_SOURCE_DIR) + ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/src/core/interfaces ${CMAKE_SOURCE_DIR}/src/algorithms/resampler/gnuradio_blocks ${GLOG_INCLUDE_DIRS} diff --git a/src/algorithms/resampler/gnuradio_blocks/CMakeLists.txt b/src/algorithms/resampler/gnuradio_blocks/CMakeLists.txt index 13d8427fe..f7d08172e 100644 --- a/src/algorithms/resampler/gnuradio_blocks/CMakeLists.txt +++ b/src/algorithms/resampler/gnuradio_blocks/CMakeLists.txt @@ -24,7 +24,7 @@ set(RESAMPLER_GR_BLOCKS_SOURCES ) include_directories( - $(CMAKE_CURRENT_SOURCE_DIR) + ${CMAKE_CURRENT_SOURCE_DIR} ${GLOG_INCLUDE_DIRS} ${GFlags_INCLUDE_DIRS} ${GNURADIO_RUNTIME_INCLUDE_DIRS} diff --git a/src/algorithms/signal_generator/adapters/CMakeLists.txt b/src/algorithms/signal_generator/adapters/CMakeLists.txt index c55031d1a..e81249232 100644 --- a/src/algorithms/signal_generator/adapters/CMakeLists.txt +++ b/src/algorithms/signal_generator/adapters/CMakeLists.txt @@ -19,7 +19,7 @@ set(SIGNAL_GENERATOR_ADAPTER_SOURCES signal_generator.cc) include_directories( - $(CMAKE_CURRENT_SOURCE_DIR) + ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/src/core/system_parameters ${CMAKE_SOURCE_DIR}/src/core/interfaces ${CMAKE_SOURCE_DIR}/src/core/receiver diff --git a/src/algorithms/signal_generator/gnuradio_blocks/CMakeLists.txt b/src/algorithms/signal_generator/gnuradio_blocks/CMakeLists.txt index 8086e3672..f0417f7b4 100644 --- a/src/algorithms/signal_generator/gnuradio_blocks/CMakeLists.txt +++ b/src/algorithms/signal_generator/gnuradio_blocks/CMakeLists.txt @@ -19,7 +19,7 @@ set(SIGNAL_GENERATOR_BLOCK_SOURCES signal_generator_c.cc) include_directories( - $(CMAKE_CURRENT_SOURCE_DIR) + ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/src/core/system_parameters ${CMAKE_SOURCE_DIR}/src/core/interfaces ${CMAKE_SOURCE_DIR}/src/core/receiver diff --git a/src/algorithms/signal_source/gnuradio_blocks/CMakeLists.txt b/src/algorithms/signal_source/gnuradio_blocks/CMakeLists.txt index 417f08d17..4159321f3 100644 --- a/src/algorithms/signal_source/gnuradio_blocks/CMakeLists.txt +++ b/src/algorithms/signal_source/gnuradio_blocks/CMakeLists.txt @@ -26,7 +26,7 @@ set(SIGNAL_SOURCE_GR_BLOCKS_SOURCES ) include_directories( - $(CMAKE_CURRENT_SOURCE_DIR) + ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/src/algorithms/signal_source/libs ${GLOG_INCLUDE_DIRS} ${GFlags_INCLUDE_DIRS} diff --git a/src/algorithms/signal_source/libs/CMakeLists.txt b/src/algorithms/signal_source/libs/CMakeLists.txt index 7d6c9b4ef..1ecb1edfd 100644 --- a/src/algorithms/signal_source/libs/CMakeLists.txt +++ b/src/algorithms/signal_source/libs/CMakeLists.txt @@ -21,7 +21,7 @@ set (SIGNAL_SOURCE_LIB_SOURCES rtl_tcp_dongle_info.cc) include_directories( - $(CMAKE_CURRENT_SOURCE_DIR) + ${CMAKE_CURRENT_SOURCE_DIR} ${Boost_INCLUDE_DIRS} ) diff --git a/src/algorithms/telemetry_decoder/adapters/CMakeLists.txt b/src/algorithms/telemetry_decoder/adapters/CMakeLists.txt index 24c7374f1..974adfb53 100644 --- a/src/algorithms/telemetry_decoder/adapters/CMakeLists.txt +++ b/src/algorithms/telemetry_decoder/adapters/CMakeLists.txt @@ -25,7 +25,7 @@ set(TELEMETRY_DECODER_ADAPTER_SOURCES ) include_directories( - $(CMAKE_CURRENT_SOURCE_DIR) + ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/src/core/system_parameters ${CMAKE_SOURCE_DIR}/src/core/interfaces ${CMAKE_SOURCE_DIR}/src/core/receiver diff --git a/src/algorithms/telemetry_decoder/gnuradio_blocks/CMakeLists.txt b/src/algorithms/telemetry_decoder/gnuradio_blocks/CMakeLists.txt index e7c8aee05..7de1a365b 100644 --- a/src/algorithms/telemetry_decoder/gnuradio_blocks/CMakeLists.txt +++ b/src/algorithms/telemetry_decoder/gnuradio_blocks/CMakeLists.txt @@ -25,7 +25,7 @@ set(TELEMETRY_DECODER_GR_BLOCKS_SOURCES ) include_directories( - $(CMAKE_CURRENT_SOURCE_DIR) + ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/src/core/system_parameters ${CMAKE_SOURCE_DIR}/src/core/receiver ${CMAKE_SOURCE_DIR}/src/algorithms/telemetry_decoder/libs diff --git a/src/algorithms/telemetry_decoder/libs/CMakeLists.txt b/src/algorithms/telemetry_decoder/libs/CMakeLists.txt index 091283038..f5b70e4f7 100644 --- a/src/algorithms/telemetry_decoder/libs/CMakeLists.txt +++ b/src/algorithms/telemetry_decoder/libs/CMakeLists.txt @@ -24,7 +24,7 @@ set(TELEMETRY_DECODER_LIB_SOURCES ) include_directories( - $(CMAKE_CURRENT_SOURCE_DIR) + ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/src/core/system_parameters ${CMAKE_SOURCE_DIR}/src/core/interfaces ${CMAKE_SOURCE_DIR}/src/core/receiver diff --git a/src/algorithms/telemetry_decoder/libs/libswiftcnav/CMakeLists.txt b/src/algorithms/telemetry_decoder/libs/libswiftcnav/CMakeLists.txt index 1ef372aa8..836db1304 100644 --- a/src/algorithms/telemetry_decoder/libs/libswiftcnav/CMakeLists.txt +++ b/src/algorithms/telemetry_decoder/libs/libswiftcnav/CMakeLists.txt @@ -24,7 +24,7 @@ set(TELEMETRY_DECODER_LIBSWIFTCNAV_SOURCES ) include_directories( - $(CMAKE_CURRENT_SOURCE_DIR) + ${CMAKE_CURRENT_SOURCE_DIR} ) file(GLOB TELEMETRY_DECODER_LIBSWIFTCNAV_HEADERS "*.h") diff --git a/src/algorithms/tracking/adapters/CMakeLists.txt b/src/algorithms/tracking/adapters/CMakeLists.txt index 49ef6b7f4..da2051114 100644 --- a/src/algorithms/tracking/adapters/CMakeLists.txt +++ b/src/algorithms/tracking/adapters/CMakeLists.txt @@ -37,7 +37,7 @@ set(TRACKING_ADAPTER_SOURCES ) include_directories( - $(CMAKE_CURRENT_SOURCE_DIR) + ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/src/core/system_parameters ${CMAKE_SOURCE_DIR}/src/core/interfaces ${CMAKE_SOURCE_DIR}/src/core/receiver diff --git a/src/algorithms/tracking/gnuradio_blocks/CMakeLists.txt b/src/algorithms/tracking/gnuradio_blocks/CMakeLists.txt index 32b0be6eb..d7c8981c6 100644 --- a/src/algorithms/tracking/gnuradio_blocks/CMakeLists.txt +++ b/src/algorithms/tracking/gnuradio_blocks/CMakeLists.txt @@ -39,7 +39,7 @@ set(TRACKING_GR_BLOCKS_SOURCES ) include_directories( - $(CMAKE_CURRENT_SOURCE_DIR) + ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/src/core/system_parameters ${CMAKE_SOURCE_DIR}/src/core/interfaces ${CMAKE_SOURCE_DIR}/src/core/receiver diff --git a/src/algorithms/tracking/libs/CMakeLists.txt b/src/algorithms/tracking/libs/CMakeLists.txt index 1e057b4d7..88236920a 100644 --- a/src/algorithms/tracking/libs/CMakeLists.txt +++ b/src/algorithms/tracking/libs/CMakeLists.txt @@ -49,7 +49,7 @@ if(ENABLE_FPGA) endif(ENABLE_FPGA) include_directories( - $(CMAKE_CURRENT_SOURCE_DIR) + ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/src/core/system_parameters ${CMAKE_SOURCE_DIR}/src/core/interfaces ${CMAKE_SOURCE_DIR}/src/core/receiver diff --git a/src/core/libs/CMakeLists.txt b/src/core/libs/CMakeLists.txt index 11c71cedf..d99bdbde6 100644 --- a/src/core/libs/CMakeLists.txt +++ b/src/core/libs/CMakeLists.txt @@ -30,7 +30,7 @@ set(CORE_LIBS_SOURCES ) include_directories( - $(CMAKE_CURRENT_SOURCE_DIR) + ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/src/core/system_parameters ${CMAKE_SOURCE_DIR}/src/core/libs/supl ${CMAKE_SOURCE_DIR}/src/core/libs/supl/asn-rrlp diff --git a/src/core/receiver/CMakeLists.txt b/src/core/receiver/CMakeLists.txt index e4cc6896c..7c3992785 100644 --- a/src/core/receiver/CMakeLists.txt +++ b/src/core/receiver/CMakeLists.txt @@ -42,7 +42,7 @@ endif(ENABLE_FPGA) include_directories( - $(CMAKE_CURRENT_SOURCE_DIR) + ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/src/core/system_parameters ${CMAKE_SOURCE_DIR}/src/core/interfaces ${CMAKE_SOURCE_DIR}/src/core/libs diff --git a/src/core/system_parameters/CMakeLists.txt b/src/core/system_parameters/CMakeLists.txt index 68b6862cf..df419aebd 100644 --- a/src/core/system_parameters/CMakeLists.txt +++ b/src/core/system_parameters/CMakeLists.txt @@ -43,7 +43,7 @@ set(SYSTEM_PARAMETERS_SOURCES include_directories( - $(CMAKE_CURRENT_SOURCE_DIR) + ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/src/core/receiver ${CMAKE_SOURCE_DIR}/src/algorithms/PVT/libs ${CMAKE_SOURCE_DIR}/src/algorithms/libs/rtklib diff --git a/src/tests/CMakeLists.txt b/src/tests/CMakeLists.txt index d48c6eda0..7d2dbe577 100644 --- a/src/tests/CMakeLists.txt +++ b/src/tests/CMakeLists.txt @@ -57,7 +57,10 @@ if(NOT ${GTEST_DIR_LOCAL}) CMAKE_ARGS ${GTEST_COMPILER} -DBUILD_GTEST=ON -DBUILD_GMOCK=OFF ${TOOLCHAIN_ARG} UPDATE_COMMAND "" PATCH_COMMAND "" + BUILD_BYPRODUCTS ${CMAKE_CURRENT_BINARY_DIR}/../../gtest-${gtest_RELEASE}/googletest/${CMAKE_FIND_LIBRARY_PREFIXES}gtest${CMAKE_STATIC_LIBRARY_SUFFIX} + ${CMAKE_CURRENT_BINARY_DIR}/../../gtest-${gtest_RELEASE}/googletest/${CMAKE_FIND_LIBRARY_PREFIXES}gtest_main${CMAKE_STATIC_LIBRARY_SUFFIX} INSTALL_COMMAND "" + ) # Set up variables # Set recently downloaded and build Googletest root folder @@ -73,11 +76,11 @@ if(NOT ${GTEST_DIR_LOCAL}) set(binary_dir "${binary_dir}/Debug") endif(CMAKE_GENERATOR STREQUAL Xcode) endif(OS_IS_MACOSX) - set(GTEST_LIBRARY_PATH "${binary_dir}/googletest/${CMAKE_FIND_LIBRARY_PREFIXES}gtest.a;${binary_dir}/googletest/${CMAKE_FIND_LIBRARY_PREFIXES}gtest_main.a") + set(GTEST_LIBRARY_PATH "${binary_dir}/googletest/${CMAKE_FIND_LIBRARY_PREFIXES}gtest${CMAKE_STATIC_LIBRARY_SUFFIX};${binary_dir}/googletest/${CMAKE_FIND_LIBRARY_PREFIXES}gtest_main${CMAKE_STATIC_LIBRARY_SUFFIX}") set(GTEST_LIBRARY gtest-${gtest_RELEASE}) set(GTEST_LIBRARIES - ${binary_dir}/googletest/${CMAKE_FIND_LIBRARY_PREFIXES}gtest.a - ${binary_dir}/googletest/${CMAKE_FIND_LIBRARY_PREFIXES}gtest_main.a + ${binary_dir}/googletest/${CMAKE_FIND_LIBRARY_PREFIXES}gtest${CMAKE_STATIC_LIBRARY_SUFFIX} + ${binary_dir}/googletest/${CMAKE_FIND_LIBRARY_PREFIXES}gtest_main${CMAKE_STATIC_LIBRARY_SUFFIX} ) set(GTEST_LIB_DIR "${CMAKE_CURRENT_BINARY_DIR}/../../gtest-${gtest_RELEASE}/googletest") else(NOT ${GTEST_DIR_LOCAL}) diff --git a/src/tests/unit-tests/signal-processing-blocks/libs/CMakeLists.txt b/src/tests/unit-tests/signal-processing-blocks/libs/CMakeLists.txt index aae96cedc..0ee8ec658 100644 --- a/src/tests/unit-tests/signal-processing-blocks/libs/CMakeLists.txt +++ b/src/tests/unit-tests/signal-processing-blocks/libs/CMakeLists.txt @@ -26,7 +26,7 @@ set(SIGNAL_PROCESSING_TESTING_LIB_SOURCES ) include_directories( - $(CMAKE_CURRENT_SOURCE_DIR) + ${CMAKE_CURRENT_SOURCE_DIR} ${GLOG_INCLUDE_DIRS} ${GFlags_INCLUDE_DIRS} ) From 54c4f595b24e71ad365123cabb10a4bdec2cde09 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Wed, 21 Jun 2017 15:41:04 +0200 Subject: [PATCH 046/171] Fix GPSTk building with Ninja --- src/tests/CMakeLists.txt | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/src/tests/CMakeLists.txt b/src/tests/CMakeLists.txt index 7d2dbe577..46f417e9b 100644 --- a/src/tests/CMakeLists.txt +++ b/src/tests/CMakeLists.txt @@ -60,7 +60,7 @@ if(NOT ${GTEST_DIR_LOCAL}) BUILD_BYPRODUCTS ${CMAKE_CURRENT_BINARY_DIR}/../../gtest-${gtest_RELEASE}/googletest/${CMAKE_FIND_LIBRARY_PREFIXES}gtest${CMAKE_STATIC_LIBRARY_SUFFIX} ${CMAKE_CURRENT_BINARY_DIR}/../../gtest-${gtest_RELEASE}/googletest/${CMAKE_FIND_LIBRARY_PREFIXES}gtest_main${CMAKE_STATIC_LIBRARY_SUFFIX} INSTALL_COMMAND "" - + ) # Set up variables # Set recently downloaded and build Googletest root folder @@ -193,6 +193,7 @@ if(ENABLE_UNIT_TESTING_EXTRA OR ENABLE_SYSTEM_TESTING_EXTRA OR ENABLE_FPGA) SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../../thirdparty/gpstk-${gpstk_RELEASE} BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}/../../gpstk-${gpstk_RELEASE} CMAKE_ARGS ${GTEST_COMPILER} ${TOOLCHAIN_ARG} -DCMAKE_INSTALL_PREFIX=${CMAKE_SOURCE_DIR}/thirdparty/gpstk-${gpstk_RELEASE}/install -DBUILD_EXT=OFF -DBUILD_PYTHON=OFF + BUILD_BYPRODUCTS ${CMAKE_SOURCE_DIR}/thirdparty/gpstk-${gpstk_RELEASE}/install/lib/${CMAKE_FIND_LIBRARY_PREFIXES}gpstk${CMAKE_SHARED_LIBRARY_SUFFIX} UPDATE_COMMAND "" PATCH_COMMAND "" ) @@ -207,7 +208,7 @@ if(ENABLE_UNIT_TESTING_EXTRA OR ENABLE_SYSTEM_TESTING_EXTRA OR ENABLE_FPGA) else(NOT ENABLE_FPGA) message(STATUS "GPSTk has not been found, try to install it on target.") message(STATUS "Some extra tests requiring GPSTk will not be built.") - endif(NOT ENABLE_FPGA) + endif(NOT ENABLE_FPGA) else(NOT GPSTK_FOUND OR ENABLE_OWN_GPSTK) set(gpstk_libs ${GPSTK_LIBRARIES}) set(GPSTK_INCLUDE_DIRS ${GPSTK_INCLUDE_DIR}) @@ -223,7 +224,7 @@ if(ENABLE_UNIT_TESTING_EXTRA) message(STATUS "Downloading some data files for testing...") file(DOWNLOAD https://sourceforge.net/projects/gnss-sdr/files/data/gps_l2c_m_prn7_5msps.dat ${CMAKE_CURRENT_SOURCE_DIR}/../../thirdparty/signal_samples/gps_l2c_m_prn7_5msps.dat SHOW_PROGRESS - EXPECTED_HASH MD5=a6fcbefe155137945d3c33c5ef7bd0f9 ) + EXPECTED_HASH MD5=a6fcbefe155137945d3c33c5ef7bd0f9 ) endif(NOT EXISTS ${CMAKE_SOURCE_DIR}/thirdparty/signal_samples/gps_l2c_m_prn7_5msps.dat) if(ENABLE_INSTALL_TESTS) install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/../../thirdparty/signal_samples/gps_l2c_m_prn7_5msps.dat DESTINATION share/gnss-sdr/signal_samples) @@ -324,7 +325,7 @@ if(ENABLE_UNIT_TESTING) if(NOT ${GTEST_DIR_LOCAL}) add_dependencies(run_tests gtest-${gtest_RELEASE}) endif(NOT ${GTEST_DIR_LOCAL}) - + if(ENABLE_INSTALL_TESTS) if(EXISTS ${CMAKE_SOURCE_DIR}/install/run_tests) file(REMOVE ${CMAKE_SOURCE_DIR}/install/run_tests) @@ -441,7 +442,7 @@ if(ENABLE_SYSTEM_TESTING) COMMAND ${CMAKE_COMMAND} -E copy $ ${CMAKE_SOURCE_DIR}/install/$ ) endif(ENABLE_INSTALL_TESTS) - + if(GPSTK_FOUND OR OWN_GPSTK) add_executable(obs_gps_l1_system_test ${CMAKE_CURRENT_SOURCE_DIR}/system-tests/obs_gps_l1_system_test.cc) if(NOT ${GTEST_DIR_LOCAL}) @@ -462,14 +463,14 @@ if(ENABLE_SYSTEM_TESTING) file(REMOVE ${CMAKE_SOURCE_DIR}/install/obs_gps_l1_system_test) endif(EXISTS ${CMAKE_SOURCE_DIR}/install/obs_gps_l1_system_test) install(TARGETS obs_gps_l1_system_test RUNTIME DESTINATION bin COMPONENT "obs_gps_l1_system_test") - else(ENABLE_INSTALL_TESTS) + else(ENABLE_INSTALL_TESTS) add_custom_command(TARGET obs_gps_l1_system_test POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy $ ${CMAKE_SOURCE_DIR}/install/$ ) endif(ENABLE_INSTALL_TESTS) - endif(GPSTK_FOUND OR OWN_GPSTK) + endif(GPSTK_FOUND OR OWN_GPSTK) endif(ENABLE_SYSTEM_TESTING_EXTRA) - + endif(ENABLE_SYSTEM_TESTING) @@ -501,9 +502,9 @@ if(NOT ${ENABLE_PACKAGING}) endif(NOT ${GTEST_DIR_LOCAL}) set_property(TEST control_thread_test PROPERTY TIMEOUT 30) set_property(TARGET control_thread_test PROPERTY EXCLUDE_FROM_ALL TRUE) - + ######################################################### - + add_executable(flowgraph_test ${CMAKE_CURRENT_SOURCE_DIR}/single_test_main.cc ${CMAKE_CURRENT_SOURCE_DIR}/unit-tests/control-plane/gnss_flowgraph_test.cc ) set_property(TARGET flowgraph_test PROPERTY EXCLUDE_FROM_ALL TRUE) @@ -523,9 +524,9 @@ if(NOT ${ENABLE_PACKAGING}) endif(NOT ${GTEST_DIR_LOCAL}) set_property(TEST flowgraph_test PROPERTY TIMEOUT 30) set_property(TARGET flowgraph_test PROPERTY EXCLUDE_FROM_ALL TRUE) - + ######################################################### - + add_executable(gnss_block_test ${CMAKE_CURRENT_SOURCE_DIR}/single_test_main.cc ${CMAKE_CURRENT_SOURCE_DIR}/unit-tests/signal-processing-blocks/sources/file_signal_source_test.cc ${CMAKE_CURRENT_SOURCE_DIR}/unit-tests/signal-processing-blocks/filter/fir_filter_test.cc @@ -630,4 +631,4 @@ if(${ENABLE_PACKAGING}) else(${ENABLE_PACKAGING}) add_dependencies(check control_thread_test flowgraph_test gnss_block_test gnuradio_block_test trk_test) -endif(${ENABLE_PACKAGING}) \ No newline at end of file +endif(${ENABLE_PACKAGING}) From caae6434627c2abc7144a43df7a6d16e13dee47e Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Thu, 22 Jun 2017 20:17:37 +0200 Subject: [PATCH 047/171] Workaround for CMake < 3.2 (e.g. Ubuntu 15.04) --- CMakeLists.txt | 78 +++++++++++++++++++++++++++++++++++----- src/tests/CMakeLists.txt | 40 ++++++++++++++++++--- 2 files changed, 105 insertions(+), 13 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a0244d241..4d99a9d8d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -545,7 +545,20 @@ if(NOT VOLK_GNSSSDR_FOUND) -DCMAKE_TOOLCHAIN_FILE=${CMAKE_CURRENT_SOURCE_DIR}/cmake/Toolchains/oe-sdk_cross.cmake -DCROSSCOMPILE_MULTILIB=TRUE ) endif(EXISTS $ENV{OECORE_TARGET_SYSROOT}) - ExternalProject_Add(volk_gnsssdr_module + if(CMAKE_VERSION VERSION_LESS 3.2) + ExternalProject_Add(volk_gnsssdr_module + PREFIX ${CMAKE_CURRENT_BINARY_DIR}/volk_gnsssdr_module + SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr + BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}/volk_gnsssdr_module/build + CMAKE_ARGS ${VOLK_GNSSSDR_CMAKE_ARGS} + DOWNLOAD_COMMAND "" + UPDATE_COMMAND "" + PATCH_COMMAND "" + BUILD_COMMAND ${VOLK_GNSSSDR_BUILD_COMMAND} volk_gnsssdr_profile + INSTALL_DIR ${CMAKE_CURRENT_BINARY_DIR}/volk_gnsssdr_module/install + ) + else(CMAKE_VERSION VERSION_LESS 3.2) + ExternalProject_Add(volk_gnsssdr_module PREFIX ${CMAKE_CURRENT_BINARY_DIR}/volk_gnsssdr_module SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}/volk_gnsssdr_module/build @@ -558,6 +571,7 @@ if(NOT VOLK_GNSSSDR_FOUND) ${CMAKE_CURRENT_BINARY_DIR}/volk_gnsssdr_module/install/bin/volk_gnsssdr_profile INSTALL_DIR ${CMAKE_CURRENT_BINARY_DIR}/volk_gnsssdr_module/install ) + endif(CMAKE_VERSION VERSION_LESS 3.2) find_package(ORC) if(NOT ORC_FOUND) set(ORC_LIBRARIES "") @@ -591,7 +605,22 @@ if (NOT GFlags_FOUND) message (STATUS " gflags library has not been found.") message (STATUS " gflags will be downloaded and built automatically ") message (STATUS " when doing 'make'. ") - + + if(CMAKE_VERSION VERSION_LESS 3.2) + ExternalProject_Add( + gflags-${gflags_RELEASE} + PREFIX ${CMAKE_CURRENT_BINARY_DIR}/gflags-${gflags_RELEASE} + GIT_REPOSITORY git://github.com/gflags/gflags.git + GIT_TAG v${gflags_RELEASE} + SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/thirdparty/gflags/gflags-${gflags_RELEASE} + BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}/gflags-${gflags_RELEASE} + CMAKE_ARGS -DBUILD_SHARED_LIBS=ON -DBUILD_STATIC_LIBS=ON -DBUILD_gflags_nothreads_LIB=OFF -DCMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER} + BUILD_COMMAND ${CMAKE_MAKE_PROGRAM} + UPDATE_COMMAND "" + PATCH_COMMAND "" + INSTALL_COMMAND "" + ) + else(CMAKE_VERSION VERSION_LESS 3.2) ExternalProject_Add( gflags-${gflags_RELEASE} PREFIX ${CMAKE_CURRENT_BINARY_DIR}/gflags-${gflags_RELEASE} @@ -606,7 +635,8 @@ if (NOT GFlags_FOUND) PATCH_COMMAND "" INSTALL_COMMAND "" ) - + endif(CMAKE_VERSION VERSION_LESS 3.2) + set(GFlags_INCLUDE_DIRS ${CMAKE_CURRENT_BINARY_DIR}/gflags-${gflags_RELEASE}/include CACHE PATH "Local Gflags headers" ) @@ -725,7 +755,23 @@ ${CMAKE_CURRENT_SOURCE_DIR}/thirdparty/glog/glog-${glog_RELEASE}/configure") endif(EXISTS "/usr/bin/libtoolize") endif(OS_IS_LINUX) - ExternalProject_Add( + if(CMAKE_VERSION VERSION_LESS 3.2) + ExternalProject_Add( + glog-${glog_RELEASE} + DEPENDS ${TARGET_GFLAGS} + PREFIX ${CMAKE_CURRENT_BINARY_DIR}/glog-${glog_RELEASE} + GIT_REPOSITORY https://github.com/google/glog/ + GIT_TAG v${glog_RELEASE} + SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/thirdparty/glog/glog-${glog_RELEASE} + BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}/glog-${glog_RELEASE} + CONFIGURE_COMMAND ${GLOG_CONFIGURE} --prefix= + BUILD_COMMAND "${CMAKE_MAKE_PROGRAM}" + UPDATE_COMMAND "" + PATCH_COMMAND "" + INSTALL_COMMAND "" + ) + else(CMAKE_VERSION VERSION_LESS 3.2) + ExternalProject_Add( glog-${glog_RELEASE} DEPENDS ${TARGET_GFLAGS} PREFIX ${CMAKE_CURRENT_BINARY_DIR}/glog-${glog_RELEASE} @@ -739,7 +785,8 @@ ${CMAKE_CURRENT_SOURCE_DIR}/thirdparty/glog/glog-${glog_RELEASE}/configure") UPDATE_COMMAND "" PATCH_COMMAND "" INSTALL_COMMAND "" - ) + ) + endif(CMAKE_VERSION VERSION_LESS 3.2) # Set up variables set(GLOG_INCLUDE_DIRS @@ -906,10 +953,24 @@ if(NOT ARMADILLO_FOUND OR ENABLE_OWN_ARMADILLO) message(STATUS " Armadillo has not been found.") message(STATUS " Armadillo will be downloaded and built automatically") message(STATUS " when doing 'make'. ") - set(armadillo_BRANCH 7.950.x) + set(armadillo_BRANCH unstable) set(armadillo_RELEASE ${armadillo_BRANCH}) - ExternalProject_Add( + if(CMAKE_VERSION VERSION_LESS 3.2) + ExternalProject_Add( + armadillo-${armadillo_RELEASE} + PREFIX ${CMAKE_CURRENT_BINARY_DIR}/armadillo-${armadillo_RELEASE} + GIT_REPOSITORY https://github.com/conradsnicta/armadillo-code.git + GIT_TAG ${armadillo_BRANCH} + SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/thirdparty/armadillo/armadillo-${armadillo_RELEASE} + BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}/armadillo-${armadillo_RELEASE} + CMAKE_ARGS -DCMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER} -DBUILD_SHARED_LIBS=OFF -DCMAKE_CXX_FLAGS=-std=c++11 + BUILD_COMMAND ${CMAKE_MAKE_PROGRAM} + UPDATE_COMMAND "" + INSTALL_COMMAND "" + ) + else(CMAKE_VERSION VERSION_LESS 3.2) + ExternalProject_Add( armadillo-${armadillo_RELEASE} PREFIX ${CMAKE_CURRENT_BINARY_DIR}/armadillo-${armadillo_RELEASE} GIT_REPOSITORY https://github.com/conradsnicta/armadillo-code.git @@ -921,7 +982,8 @@ if(NOT ARMADILLO_FOUND OR ENABLE_OWN_ARMADILLO) BUILD_BYPRODUCTS ${CMAKE_CURRENT_BINARY_DIR}/armadillo-${armadillo_RELEASE}/${CMAKE_FIND_LIBRARY_PREFIXES}armadillo${CMAKE_STATIC_LIBRARY_SUFFIX} UPDATE_COMMAND "" INSTALL_COMMAND "" - ) + ) + endif(CMAKE_VERSION VERSION_LESS 3.2) # Set up variables ExternalProject_Get_Property(armadillo-${armadillo_RELEASE} binary_dir) diff --git a/src/tests/CMakeLists.txt b/src/tests/CMakeLists.txt index 46f417e9b..34239d4e0 100644 --- a/src/tests/CMakeLists.txt +++ b/src/tests/CMakeLists.txt @@ -48,7 +48,21 @@ endif(EXISTS $ENV{OECORE_TARGET_SYSROOT}) if(NOT ${GTEST_DIR_LOCAL}) # if GTEST_DIR is not defined, we download and build it set(gtest_RELEASE 1.8.0) - ExternalProject_Add( + + if(CMAKE_VERSION VERSION_LESS 3.2) + ExternalProject_Add( + gtest-${gtest_RELEASE} + GIT_REPOSITORY https://github.com/google/googletest + GIT_TAG release-${gtest_RELEASE} + SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../../thirdparty/gtest/gtest-${gtest_RELEASE} + BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}/../../gtest-${gtest_RELEASE} + CMAKE_ARGS ${GTEST_COMPILER} -DBUILD_GTEST=ON -DBUILD_GMOCK=OFF ${TOOLCHAIN_ARG} + UPDATE_COMMAND "" + PATCH_COMMAND "" + INSTALL_COMMAND "" + ) + else(CMAKE_VERSION VERSION_LESS 3.2) + ExternalProject_Add( gtest-${gtest_RELEASE} GIT_REPOSITORY https://github.com/google/googletest GIT_TAG release-${gtest_RELEASE} @@ -60,8 +74,9 @@ if(NOT ${GTEST_DIR_LOCAL}) BUILD_BYPRODUCTS ${CMAKE_CURRENT_BINARY_DIR}/../../gtest-${gtest_RELEASE}/googletest/${CMAKE_FIND_LIBRARY_PREFIXES}gtest${CMAKE_STATIC_LIBRARY_SUFFIX} ${CMAKE_CURRENT_BINARY_DIR}/../../gtest-${gtest_RELEASE}/googletest/${CMAKE_FIND_LIBRARY_PREFIXES}gtest_main${CMAKE_STATIC_LIBRARY_SUFFIX} INSTALL_COMMAND "" - - ) + ) + endif(CMAKE_VERSION VERSION_LESS 3.2) + # Set up variables # Set recently downloaded and build Googletest root folder set(GTEST_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../../thirdparty/gtest/gtest-${gtest_RELEASE}/googletest") @@ -186,7 +201,20 @@ if(ENABLE_UNIT_TESTING_EXTRA OR ENABLE_SYSTEM_TESTING_EXTRA OR ENABLE_FPGA) if(NOT GPSTK_FOUND OR ENABLE_OWN_GPSTK) if(NOT ENABLE_FPGA) set(gpstk_RELEASE "2.9") - ExternalProject_Add( + + if(CMAKE_VERSION VERSION_LESS 3.2) + ExternalProject_Add( + gpstk-${gpstk_RELEASE} + GIT_REPOSITORY https://github.com/SGL-UT/GPSTk + GIT_TAG v${gpstk_RELEASE} + SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../../thirdparty/gpstk-${gpstk_RELEASE} + BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}/../../gpstk-${gpstk_RELEASE} + CMAKE_ARGS ${GTEST_COMPILER} ${TOOLCHAIN_ARG} -DCMAKE_INSTALL_PREFIX=${CMAKE_SOURCE_DIR}/thirdparty/gpstk-${gpstk_RELEASE}/install -DBUILD_EXT=OFF -DBUILD_PYTHON=OFF + UPDATE_COMMAND "" + PATCH_COMMAND "" + ) + else(CMAKE_VERSION VERSION_LESS 3.2) + ExternalProject_Add( gpstk-${gpstk_RELEASE} GIT_REPOSITORY https://github.com/SGL-UT/GPSTk GIT_TAG v${gpstk_RELEASE} @@ -196,7 +224,9 @@ if(ENABLE_UNIT_TESTING_EXTRA OR ENABLE_SYSTEM_TESTING_EXTRA OR ENABLE_FPGA) BUILD_BYPRODUCTS ${CMAKE_SOURCE_DIR}/thirdparty/gpstk-${gpstk_RELEASE}/install/lib/${CMAKE_FIND_LIBRARY_PREFIXES}gpstk${CMAKE_SHARED_LIBRARY_SUFFIX} UPDATE_COMMAND "" PATCH_COMMAND "" - ) + ) + endif(CMAKE_VERSION VERSION_LESS 3.2) + set(GPSTK_INCLUDE_DIRS ${CMAKE_CURRENT_SOURCE_DIR}/../../thirdparty/gpstk-${gpstk_RELEASE}/install/include CACHE PATH "Local GPSTK headers") add_library(gpstk UNKNOWN IMPORTED) set_property(TARGET gpstk PROPERTY IMPORTED_LOCATION ${CMAKE_CURRENT_SOURCE_DIR}/../../thirdparty/gpstk-${gpstk_RELEASE}/install/lib/${CMAKE_FIND_LIBRARY_PREFIXES}gpstk${CMAKE_SHARED_LIBRARY_SUFFIX}) From 2ab963ff49d5e12b24e40fbc446c8930b303e7c0 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Thu, 22 Jun 2017 20:59:45 +0200 Subject: [PATCH 048/171] Add another workaround for CMake < 3.2 --- CMakeLists.txt | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d99a9d8d..954503f7e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -583,11 +583,17 @@ if(NOT VOLK_GNSSSDR_FOUND) set(VOLK_GNSSSDR_INCLUDE_DIRS "${CMAKE_CURRENT_BINARY_DIR}/volk_gnsssdr_module/build/include/;${CMAKE_CURRENT_SOURCE_DIR}/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/include;${ORC_INCLUDE_DIRS}") set(VOLK_GNSSSDR_LIBRARIES volk_gnsssdr ${ORC_LIBRARIES}) - add_custom_command(TARGET volk_gnsssdr_module POST_BUILD + if(CMAKE_VERSION VERSION_LESS 3.2) + add_custom_command(TARGET volk_gnsssdr_module POST_BUILD + COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/volk_gnsssdr_module/install/bin/volk_gnsssdr_profile + ${CMAKE_SOURCE_DIR}/install/volk_gnsssdr_profile) + else(CMAKE_VERSION VERSION_LESS 3.2) + add_custom_command(TARGET volk_gnsssdr_module POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/volk_gnsssdr_module/install/bin/volk_gnsssdr_profile ${CMAKE_SOURCE_DIR}/install/volk_gnsssdr_profile BYPRODUCTS ${CMAKE_SOURCE_DIR}/install/volk_gnsssdr_profile) - + endif(CMAKE_VERSION VERSION_LESS 3.2) + add_custom_command(TARGET volk_gnsssdr_module POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/volk_gnsssdr_module/install/bin/volk_gnsssdr-config-info ${CMAKE_SOURCE_DIR}/install/volk_gnsssdr-config-info) From 40f02e30c2c2dcdeffdd53272eea7bb38bc3fd30 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Sun, 25 Jun 2017 22:53:11 +0200 Subject: [PATCH 049/171] Avoid underscores in Test Cases and Test Names According to https://github.com/google/googletest/blob/master/googletest/docs/FAQ.md#why-should-not-test-case-names-and-test-names-contain-underscore --- .../arithmetic/code_generation_test.cc | 6 +-- .../arithmetic/complex_carrier_test.cc | 6 +-- .../unit-tests/arithmetic/conjugate_test.cc | 8 ++-- .../unit-tests/arithmetic/fft_length_test.cc | 2 +- .../arithmetic/magnitude_squared_test.cc | 8 ++-- .../unit-tests/arithmetic/multiply_test.cc | 12 +++--- .../control_message_factory_test.cc | 6 +-- .../control-plane/control_thread_test.cc | 10 ++--- .../control-plane/file_configuration_test.cc | 6 +-- .../control-plane/gnss_block_factory_test.cc | 42 +++++++++---------- .../control-plane/string_converter_test.cc | 12 ++---- .../adapter/pass_through_test.cc | 2 +- .../filter/fir_filter_test.cc | 34 +++++++-------- .../pvt/rinex_printer_test.cc | 12 +++--- .../pvt/rtcm_printer_test.cc | 4 +- .../signal-processing-blocks/pvt/rtcm_test.cc | 36 ++++++++-------- .../direct_resampler_conditioner_cc_test.cc | 2 +- .../sources/gnss_sdr_valve_test.cc | 2 +- .../tracking/cpu_multicorrelator_test.cc | 2 +- 19 files changed, 104 insertions(+), 108 deletions(-) diff --git a/src/tests/unit-tests/arithmetic/code_generation_test.cc b/src/tests/unit-tests/arithmetic/code_generation_test.cc index 204947e5e..d7369f643 100644 --- a/src/tests/unit-tests/arithmetic/code_generation_test.cc +++ b/src/tests/unit-tests/arithmetic/code_generation_test.cc @@ -37,7 +37,7 @@ -TEST(CodeGenGPSL1_Test, CodeGeneration) +TEST(CodeGenGPSL1Test, CodeGeneration) { std::complex* _dest = new std::complex[1023]; signed int _prn = 1; @@ -83,7 +83,7 @@ TEST(CodeGenGPSL1_Test, CodeGeneration) -TEST(CodeGenGPSL1Sampled_Test, CodeGeneration) +TEST(CodeGenGPSL1SampledTest, CodeGeneration) { signed int _prn = 1; unsigned int _chip_shift = 4; @@ -132,7 +132,7 @@ TEST(CodeGenGPSL1Sampled_Test, CodeGeneration) } -TEST(ComplexCarrier_Test, CodeGeneration) +TEST(ComplexCarrierTest, CodeGeneration) { double _fs = 8000000; double _f = 4000; diff --git a/src/tests/unit-tests/arithmetic/complex_carrier_test.cc b/src/tests/unit-tests/arithmetic/complex_carrier_test.cc index a472ba367..d42d4af52 100644 --- a/src/tests/unit-tests/arithmetic/complex_carrier_test.cc +++ b/src/tests/unit-tests/arithmetic/complex_carrier_test.cc @@ -38,7 +38,7 @@ DEFINE_int32(size_carrier_test, 100000, "Size of the arrays used for complex carrier testing"); -TEST(ComplexCarrier_Test, StandardComplexImplementation) +TEST(ComplexCarrierTest, StandardComplexImplementation) { // Dynamic allocation creates new usable space on the program STACK // (an area of RAM specifically allocated to the program) @@ -80,7 +80,7 @@ TEST(ComplexCarrier_Test, StandardComplexImplementation) } -TEST(ComplexCarrier_Test, C11ComplexImplementation) +TEST(ComplexCarrierTest, C11ComplexImplementation) { // declaration: load data onto the program data segment std::vector> output(FLAGS_size_carrier_test); @@ -115,7 +115,7 @@ TEST(ComplexCarrier_Test, C11ComplexImplementation) -TEST(ComplexCarrier_Test, OwnComplexImplementation) +TEST(ComplexCarrierTest, OwnComplexImplementation) { std::complex* output = new std::complex[FLAGS_size_carrier_test]; double _f = 2000; diff --git a/src/tests/unit-tests/arithmetic/conjugate_test.cc b/src/tests/unit-tests/arithmetic/conjugate_test.cc index 11bf86932..cef5f0a7f 100644 --- a/src/tests/unit-tests/arithmetic/conjugate_test.cc +++ b/src/tests/unit-tests/arithmetic/conjugate_test.cc @@ -40,7 +40,7 @@ DEFINE_int32(size_conjugate_test, 100000, "Size of the arrays used for conjugate -TEST(Conjugate_Test, StandardCComplexImplementation) +TEST(ConjugateTest, StandardCComplexImplementation) { std::complex* input = new std::complex[FLAGS_size_conjugate_test]; std::complex* output = new std::complex[FLAGS_size_conjugate_test]; @@ -68,7 +68,7 @@ TEST(Conjugate_Test, StandardCComplexImplementation) } -TEST(Conjugate_Test, C11ComplexImplementation) +TEST(ConjugateTest, C11ComplexImplementation) { const std::vector> input(FLAGS_size_conjugate_test); std::vector> output(FLAGS_size_conjugate_test); @@ -97,7 +97,7 @@ TEST(Conjugate_Test, C11ComplexImplementation) } -TEST(Conjugate_Test, ArmadilloComplexImplementation) +TEST(ConjugateTest, ArmadilloComplexImplementation) { arma::cx_fvec input(FLAGS_size_conjugate_test, arma::fill::zeros); arma::cx_fvec output(FLAGS_size_conjugate_test); @@ -117,7 +117,7 @@ TEST(Conjugate_Test, ArmadilloComplexImplementation) } -TEST(Conjugate_Test, VolkComplexImplementation) +TEST(ConjugateTest, VolkComplexImplementation) { std::complex* input = static_cast*>(volk_gnsssdr_malloc(FLAGS_size_conjugate_test * sizeof(std::complex), volk_gnsssdr_get_alignment())); std::complex* output = static_cast*>(volk_gnsssdr_malloc(FLAGS_size_conjugate_test * sizeof(std::complex), volk_gnsssdr_get_alignment())); diff --git a/src/tests/unit-tests/arithmetic/fft_length_test.cc b/src/tests/unit-tests/arithmetic/fft_length_test.cc index 649cd7a90..ef8fc5701 100644 --- a/src/tests/unit-tests/arithmetic/fft_length_test.cc +++ b/src/tests/unit-tests/arithmetic/fft_length_test.cc @@ -35,7 +35,7 @@ DEFINE_int32(fft_iterations_test, 1000, "Number of averaged iterations in FFT length timing test"); -TEST(FFT_Length_Test, MeasureExecutionTime) +TEST(FFTLengthTest, MeasureExecutionTime) { unsigned int d_fft_size; struct timeval tv; diff --git a/src/tests/unit-tests/arithmetic/magnitude_squared_test.cc b/src/tests/unit-tests/arithmetic/magnitude_squared_test.cc index 08cde0527..e8c69a0d4 100644 --- a/src/tests/unit-tests/arithmetic/magnitude_squared_test.cc +++ b/src/tests/unit-tests/arithmetic/magnitude_squared_test.cc @@ -40,7 +40,7 @@ DEFINE_int32(size_magnitude_test, 100000, "Size of the arrays used for magnitude testing"); -TEST(MagnitudeSquared_Test, StandardCComplexImplementation) +TEST(MagnitudeSquaredTest, StandardCComplexImplementation) { std::complex* input = new std::complex[FLAGS_size_magnitude_test]; float* output = new float[FLAGS_size_magnitude_test]; @@ -64,7 +64,7 @@ TEST(MagnitudeSquared_Test, StandardCComplexImplementation) ASSERT_LE(0, end - begin); } -TEST(MagnitudeSquared_Test, C11ComplexImplementation) +TEST(MagnitudeSquaredTest, C11ComplexImplementation) { const std::vector> input(FLAGS_size_magnitude_test); std::vector output(FLAGS_size_magnitude_test); @@ -95,7 +95,7 @@ TEST(MagnitudeSquared_Test, C11ComplexImplementation) } -TEST(MagnitudeSquared_Test, ArmadilloComplexImplementation) +TEST(MagnitudeSquaredTest, ArmadilloComplexImplementation) { arma::cx_fvec input(FLAGS_size_magnitude_test, arma::fill::zeros); arma::fvec output(FLAGS_size_magnitude_test); @@ -115,7 +115,7 @@ TEST(MagnitudeSquared_Test, ArmadilloComplexImplementation) -TEST(MagnitudeSquared_Test, VolkComplexImplementation) +TEST(MagnitudeSquaredTest, VolkComplexImplementation) { std::complex* input = static_cast*>(volk_gnsssdr_malloc(FLAGS_size_magnitude_test * sizeof(std::complex), volk_gnsssdr_get_alignment())); memset(input, 0, sizeof(std::complex) * FLAGS_size_magnitude_test); diff --git a/src/tests/unit-tests/arithmetic/multiply_test.cc b/src/tests/unit-tests/arithmetic/multiply_test.cc index 64e9e4a90..f60132583 100644 --- a/src/tests/unit-tests/arithmetic/multiply_test.cc +++ b/src/tests/unit-tests/arithmetic/multiply_test.cc @@ -41,7 +41,7 @@ DEFINE_int32(size_multiply_test, 100000, "Size of the arrays used for multiply testing"); -TEST(Multiply_Test, StandardCDoubleImplementation) +TEST(MultiplyTest, StandardCDoubleImplementation) { double* input = new double[FLAGS_size_multiply_test]; double* output = new double[FLAGS_size_multiply_test]; @@ -74,7 +74,7 @@ TEST(Multiply_Test, StandardCDoubleImplementation) } -TEST(Multiply_Test, ArmadilloImplementation) +TEST(MultiplyTest, ArmadilloImplementation) { arma::vec input(FLAGS_size_multiply_test, arma::fill::zeros); arma::vec output(FLAGS_size_multiply_test); @@ -96,7 +96,7 @@ TEST(Multiply_Test, ArmadilloImplementation) -TEST(Multiply_Test, StandardCComplexImplementation) +TEST(MultiplyTest, StandardCComplexImplementation) { std::complex* input = new std::complex[FLAGS_size_multiply_test]; std::complex* output = new std::complex[FLAGS_size_multiply_test]; @@ -130,7 +130,7 @@ TEST(Multiply_Test, StandardCComplexImplementation) -TEST(Multiply_Test, C11ComplexImplementation) +TEST(MultiplyTest, C11ComplexImplementation) { const std::vector> input(FLAGS_size_multiply_test); std::vector> output(FLAGS_size_multiply_test); @@ -158,7 +158,7 @@ TEST(Multiply_Test, C11ComplexImplementation) } -TEST(Multiply_Test, ArmadilloComplexImplementation) +TEST(MultiplyTest, ArmadilloComplexImplementation) { arma::cx_fvec input(FLAGS_size_multiply_test, arma::fill::zeros); arma::cx_fvec output(FLAGS_size_multiply_test); @@ -181,7 +181,7 @@ TEST(Multiply_Test, ArmadilloComplexImplementation) -TEST(Multiply_Test, VolkComplexImplementation) +TEST(MultiplyTest, VolkComplexImplementation) { std::complex* input = static_cast*>(volk_gnsssdr_malloc(FLAGS_size_multiply_test * sizeof(std::complex), volk_gnsssdr_get_alignment())); std::complex* output = static_cast*>(volk_gnsssdr_malloc(FLAGS_size_multiply_test * sizeof(std::complex), volk_gnsssdr_get_alignment())); diff --git a/src/tests/unit-tests/control-plane/control_message_factory_test.cc b/src/tests/unit-tests/control-plane/control_message_factory_test.cc index a9dde3a02..ebbaac176 100644 --- a/src/tests/unit-tests/control-plane/control_message_factory_test.cc +++ b/src/tests/unit-tests/control-plane/control_message_factory_test.cc @@ -38,7 +38,7 @@ -TEST(Control_Message_Factory_Test, GetQueueMessage) +TEST(ControlMessageFactoryTest, GetQueueMessage) { std::shared_ptr factory = std::make_shared(); gr::message::sptr queue_message = factory->GetQueueMessage(0, 2); @@ -53,7 +53,7 @@ TEST(Control_Message_Factory_Test, GetQueueMessage) -TEST(Control_Message_Factory_Test, GetControlMessages) +TEST(ControlMessageFactoryTest, GetControlMessages) { std::shared_ptr factory = std::make_shared(); gr::message::sptr queue_message = gr::message::make(0, 0, 0, sizeof(ControlMessage)); @@ -74,7 +74,7 @@ TEST(Control_Message_Factory_Test, GetControlMessages) /* -TEST(Control_Message_Factory_Test, GetControlMessagesWrongSize) +TEST(ControlMessageFactoryTest, GetControlMessagesWrongSize) { std::shared_ptr factory = std::make_shared(); diff --git a/src/tests/unit-tests/control-plane/control_thread_test.cc b/src/tests/unit-tests/control-plane/control_thread_test.cc index accd4f24c..fc9800d6c 100644 --- a/src/tests/unit-tests/control-plane/control_thread_test.cc +++ b/src/tests/unit-tests/control-plane/control_thread_test.cc @@ -53,7 +53,7 @@ #include "control_message_factory.h" -class Control_Thread_Test: public ::testing::Test +class ControlThreadTest: public ::testing::Test { public: static int stop_receiver(); @@ -64,7 +64,7 @@ public: }; -int Control_Thread_Test::stop_receiver() +int ControlThreadTest::stop_receiver() { message_buffer msg_stop; msg_stop.mtype = 1; @@ -86,7 +86,7 @@ int Control_Thread_Test::stop_receiver() } -TEST_F(Control_Thread_Test, InstantiateRunControlMessages) +TEST_F(ControlThreadTest, InstantiateRunControlMessages) { std::shared_ptr config = std::make_shared(); @@ -147,7 +147,7 @@ TEST_F(Control_Thread_Test, InstantiateRunControlMessages) } -TEST_F(Control_Thread_Test, InstantiateRunControlMessages2) +TEST_F(ControlThreadTest, InstantiateRunControlMessages2) { std::shared_ptr config = std::make_shared(); config->set_property("SignalSource.implementation", "File_Signal_Source"); @@ -211,7 +211,7 @@ TEST_F(Control_Thread_Test, InstantiateRunControlMessages2) -TEST_F(Control_Thread_Test, StopReceiverProgrammatically) +TEST_F(ControlThreadTest, StopReceiverProgrammatically) { std::shared_ptr config = std::make_shared(); config->set_property("SignalSource.implementation", "File_Signal_Source"); diff --git a/src/tests/unit-tests/control-plane/file_configuration_test.cc b/src/tests/unit-tests/control-plane/file_configuration_test.cc index eba589357..173b7f18b 100644 --- a/src/tests/unit-tests/control-plane/file_configuration_test.cc +++ b/src/tests/unit-tests/control-plane/file_configuration_test.cc @@ -36,7 +36,7 @@ -TEST(File_Configuration_Test, OverridedProperties) +TEST(FileConfigurationTest, OverridedProperties) { std::string path = std::string(TEST_PATH); std::string filename = path + "data/config_file_sample.txt"; @@ -52,7 +52,7 @@ TEST(File_Configuration_Test, OverridedProperties) -TEST(File_Configuration_Test, LoadFromNonExistentFile) +TEST(FileConfigurationTest, LoadFromNonExistentFile) { std::unique_ptr configuration(new FileConfiguration("./i_dont_exist.conf")); std::string default_value = "default_value"; @@ -62,7 +62,7 @@ TEST(File_Configuration_Test, LoadFromNonExistentFile) -TEST(File_Configuration_Test, PropertyDoesNotExist) +TEST(FileConfigurationTest, PropertyDoesNotExist) { std::string path = std::string(TEST_PATH); std::string filename = path + "data/config_file_sample.txt"; diff --git a/src/tests/unit-tests/control-plane/gnss_block_factory_test.cc b/src/tests/unit-tests/control-plane/gnss_block_factory_test.cc index 4477e56ac..ce82fbbde 100644 --- a/src/tests/unit-tests/control-plane/gnss_block_factory_test.cc +++ b/src/tests/unit-tests/control-plane/gnss_block_factory_test.cc @@ -46,7 +46,7 @@ #include "gnss_block_factory.h" #include "channel.h" -TEST(GNSS_Block_Factory_Test, InstantiateFileSignalSource) +TEST(GNSSBlockFactoryTest, InstantiateFileSignalSource) { std::shared_ptr configuration = std::make_shared(); configuration->set_property("SignalSource.implementation", "File_Signal_Source"); @@ -63,7 +63,7 @@ TEST(GNSS_Block_Factory_Test, InstantiateFileSignalSource) } -TEST(GNSS_Block_Factory_Test, InstantiateWrongSignalSource) +TEST(GNSSBlockFactoryTest, InstantiateWrongSignalSource) { std::shared_ptr configuration = std::make_shared(); configuration->set_property("SignalSource.implementation", "Pepito"); @@ -76,7 +76,7 @@ TEST(GNSS_Block_Factory_Test, InstantiateWrongSignalSource) } -TEST(GNSS_Block_Factory_Test, InstantiateSignalConditioner) +TEST(GNSSBlockFactoryTest, InstantiateSignalConditioner) { std::shared_ptr configuration = std::make_shared(); configuration->set_property("SignalConditioner.implementation", "Signal_Conditioner"); @@ -87,7 +87,7 @@ TEST(GNSS_Block_Factory_Test, InstantiateSignalConditioner) } -TEST(GNSS_Block_Factory_Test, InstantiateFIRFilter) +TEST(GNSSBlockFactoryTest, InstantiateFIRFilter) { std::shared_ptr configuration = std::make_shared(); gr::msg_queue::sptr queue = gr::msg_queue::make(0); @@ -120,7 +120,7 @@ TEST(GNSS_Block_Factory_Test, InstantiateFIRFilter) EXPECT_STREQ("Fir_Filter", input_filter->implementation().c_str()); } -TEST(GNSS_Block_Factory_Test, InstantiateFreqXlatingFIRFilter) +TEST(GNSSBlockFactoryTest, InstantiateFreqXlatingFIRFilter) { std::shared_ptr configuration = std::make_shared(); gr::msg_queue::sptr queue = gr::msg_queue::make(0); @@ -155,7 +155,7 @@ TEST(GNSS_Block_Factory_Test, InstantiateFreqXlatingFIRFilter) EXPECT_STREQ("Freq_Xlating_Fir_Filter", input_filter->implementation().c_str()); } -TEST(GNSS_Block_Factory_Test, InstantiateDirectResampler) +TEST(GNSSBlockFactoryTest, InstantiateDirectResampler) { std::shared_ptr configuration = std::make_shared(); configuration->set_property("Resampler.implementation", "Direct_Resampler"); @@ -165,7 +165,7 @@ TEST(GNSS_Block_Factory_Test, InstantiateDirectResampler) EXPECT_STREQ("Direct_Resampler", resampler->implementation().c_str()); } -TEST(GNSS_Block_Factory_Test, InstantiateGpsL1CaPcpsAcquisition) +TEST(GNSSBlockFactoryTest, InstantiateGpsL1CaPcpsAcquisition) { std::shared_ptr configuration = std::make_shared(); configuration->set_property("Acquisition.implementation", "GPS_L1_CA_PCPS_Acquisition"); @@ -177,7 +177,7 @@ TEST(GNSS_Block_Factory_Test, InstantiateGpsL1CaPcpsAcquisition) } -TEST(GNSS_Block_Factory_Test, InstantiateGpsL1CaPcpsQuickSyncAcquisition) +TEST(GNSSBlockFactoryTest, InstantiateGpsL1CaPcpsQuickSyncAcquisition) { std::shared_ptr configuration = std::make_shared(); configuration->set_property("Acquisition.implementation", "GPS_L1_CA_PCPS_QuickSync_Acquisition"); @@ -188,7 +188,7 @@ TEST(GNSS_Block_Factory_Test, InstantiateGpsL1CaPcpsQuickSyncAcquisition) EXPECT_STREQ("GPS_L1_CA_PCPS_QuickSync_Acquisition", acquisition->implementation().c_str()); } -TEST(GNSS_Block_Factory_Test, InstantiateGalileoE1PcpsQuickSyncAmbiguousAcquisition) +TEST(GNSSBlockFactoryTest, InstantiateGalileoE1PcpsQuickSyncAmbiguousAcquisition) { std::shared_ptr configuration = std::make_shared(); configuration->set_property("Acquisition.implementation", "Galileo_E1_PCPS_QuickSync_Ambiguous_Acquisition"); @@ -200,7 +200,7 @@ TEST(GNSS_Block_Factory_Test, InstantiateGalileoE1PcpsQuickSyncAmbiguousAcquisit } -TEST(GNSS_Block_Factory_Test, InstantiateGalileoE1PcpsAmbiguousAcquisition) +TEST(GNSSBlockFactoryTest, InstantiateGalileoE1PcpsAmbiguousAcquisition) { std::shared_ptr configuration = std::make_shared(); configuration->set_property("Acquisition.implementation", "Galileo_E1_PCPS_Ambiguous_Acquisition"); @@ -212,7 +212,7 @@ TEST(GNSS_Block_Factory_Test, InstantiateGalileoE1PcpsAmbiguousAcquisition) } -TEST(GNSS_Block_Factory_Test, InstantiateGpsL1CaDllPllCAidTracking) +TEST(GNSSBlockFactoryTest, InstantiateGpsL1CaDllPllCAidTracking) { std::shared_ptr configuration = std::make_shared(); configuration->set_property("Tracking.implementation", "GPS_L1_CA_DLL_PLL_C_Aid_Tracking"); @@ -224,7 +224,7 @@ TEST(GNSS_Block_Factory_Test, InstantiateGpsL1CaDllPllCAidTracking) } -TEST(GNSS_Block_Factory_Test, InstantiateGpsL1CaDllPllTracking) +TEST(GNSSBlockFactoryTest, InstantiateGpsL1CaDllPllTracking) { std::shared_ptr configuration = std::make_shared(); configuration->set_property("Tracking.implementation", "GPS_L1_CA_DLL_PLL_Tracking"); @@ -236,7 +236,7 @@ TEST(GNSS_Block_Factory_Test, InstantiateGpsL1CaDllPllTracking) } -TEST(GNSS_Block_Factory_Test, InstantiateGpsL1CaTcpConnectorTracking) +TEST(GNSSBlockFactoryTest, InstantiateGpsL1CaTcpConnectorTracking) { std::shared_ptr configuration = std::make_shared(); configuration->set_property("Tracking.implementation", "GPS_L1_CA_TCP_CONNECTOR_Tracking"); @@ -248,7 +248,7 @@ TEST(GNSS_Block_Factory_Test, InstantiateGpsL1CaTcpConnectorTracking) } -TEST(GNSS_Block_Factory_Test, InstantiateGalileoE1DllPllVemlTracking) +TEST(GNSSBlockFactoryTest, InstantiateGalileoE1DllPllVemlTracking) { std::shared_ptr configuration = std::make_shared(); configuration->set_property("Tracking.implementation", "Galileo_E1_DLL_PLL_VEML_Tracking"); @@ -260,7 +260,7 @@ TEST(GNSS_Block_Factory_Test, InstantiateGalileoE1DllPllVemlTracking) } -TEST(GNSS_Block_Factory_Test, InstantiateGpsL1CaTelemetryDecoder) +TEST(GNSSBlockFactoryTest, InstantiateGpsL1CaTelemetryDecoder) { std::shared_ptr configuration = std::make_shared(); configuration->set_property("TelemetryDecoder.implementation", "GPS_L1_CA_Telemetry_Decoder"); @@ -271,7 +271,7 @@ TEST(GNSS_Block_Factory_Test, InstantiateGpsL1CaTelemetryDecoder) } -TEST(GNSS_Block_Factory_Test, InstantiateChannels) +TEST(GNSSBlockFactoryTest, InstantiateChannels) { std::shared_ptr configuration = std::make_shared(); configuration->set_property("Channels_1C.count", "2"); @@ -290,7 +290,7 @@ TEST(GNSS_Block_Factory_Test, InstantiateChannels) } -TEST(GNSS_Block_Factory_Test, InstantiateObservables) +TEST(GNSSBlockFactoryTest, InstantiateObservables) { std::shared_ptr configuration = std::make_shared(); configuration->set_property("Observables.implementation", "Pass_Through"); @@ -301,7 +301,7 @@ TEST(GNSS_Block_Factory_Test, InstantiateObservables) } -TEST(GNSS_Block_Factory_Test, InstantiateGpsL1CaObservables) +TEST(GNSSBlockFactoryTest, InstantiateGpsL1CaObservables) { std::shared_ptr configuration = std::make_shared(); configuration->set_property("Observables.implementation", "Hybrid_Observables"); @@ -314,7 +314,7 @@ TEST(GNSS_Block_Factory_Test, InstantiateGpsL1CaObservables) -TEST(GNSS_Block_Factory_Test, InstantiatePvt) +TEST(GNSSBlockFactoryTest, InstantiatePvt) { std::shared_ptr configuration = std::make_shared(); configuration->set_property("PVT.implementation", "Pass_Through"); @@ -325,7 +325,7 @@ TEST(GNSS_Block_Factory_Test, InstantiatePvt) } -TEST(GNSS_Block_Factory_Test, InstantiateGpsL1CaPvt) +TEST(GNSSBlockFactoryTest, InstantiateGpsL1CaPvt) { std::shared_ptr configuration = std::make_shared(); configuration->set_property("PVT.implementation", "Hybrid_PVT"); @@ -337,7 +337,7 @@ TEST(GNSS_Block_Factory_Test, InstantiateGpsL1CaPvt) } -TEST(GNSS_Block_Factory_Test, InstantiateWrongPvt) +TEST(GNSSBlockFactoryTest, InstantiateWrongPvt) { std::shared_ptr configuration = std::make_shared(); configuration->set_property("PVT.implementation", "Pepito"); diff --git a/src/tests/unit-tests/control-plane/string_converter_test.cc b/src/tests/unit-tests/control-plane/string_converter_test.cc index 65ceb93f7..8393e3248 100644 --- a/src/tests/unit-tests/control-plane/string_converter_test.cc +++ b/src/tests/unit-tests/control-plane/string_converter_test.cc @@ -34,7 +34,7 @@ -TEST(String_Converter_Test, StringToBool) +TEST(StringConverterTest, StringToBool) { std::unique_ptr converter(new StringConverter()); bool conversion_result = converter->convert("false", true); @@ -43,7 +43,7 @@ TEST(String_Converter_Test, StringToBool) } -TEST(String_Converter_Test, StringToSizeT) +TEST(StringConverterTest, StringToSizeT) { // Example using a raw pointer StringConverter* converter; @@ -55,9 +55,7 @@ TEST(String_Converter_Test, StringToSizeT) } - - -TEST(String_Converter_Test, StringToBoolFail) +TEST(StringConverterTest, StringToBoolFail) { std::unique_ptr converter(new StringConverter()); bool conversion_result = converter->convert("lse", true); @@ -66,9 +64,7 @@ TEST(String_Converter_Test, StringToBoolFail) } - - -TEST(String_Converter_Test, StringToSizeTFail) +TEST(StringConverterTest, StringToSizeTFail) { std::unique_ptr converter(new StringConverter()); size_t conversion_result = converter->convert("false", 1); diff --git a/src/tests/unit-tests/signal-processing-blocks/adapter/pass_through_test.cc b/src/tests/unit-tests/signal-processing-blocks/adapter/pass_through_test.cc index 08429b657..656a0d688 100644 --- a/src/tests/unit-tests/signal-processing-blocks/adapter/pass_through_test.cc +++ b/src/tests/unit-tests/signal-processing-blocks/adapter/pass_through_test.cc @@ -37,7 +37,7 @@ -TEST(Pass_Through_Test, Instantiate) +TEST(PassThroughTest, Instantiate) { std::shared_ptr config = std::make_shared(); config->set_property("Test.item_type", "gr_complex"); diff --git a/src/tests/unit-tests/signal-processing-blocks/filter/fir_filter_test.cc b/src/tests/unit-tests/signal-processing-blocks/filter/fir_filter_test.cc index 9a90fa4bd..40b77e308 100644 --- a/src/tests/unit-tests/signal-processing-blocks/filter/fir_filter_test.cc +++ b/src/tests/unit-tests/signal-processing-blocks/filter/fir_filter_test.cc @@ -51,16 +51,16 @@ DEFINE_int32(filter_test_nsamples, 1000000 , "Number of samples to filter in the tests (max: 2147483647)"); -class Fir_Filter_Test: public ::testing::Test +class FirFilterTest: public ::testing::Test { protected: - Fir_Filter_Test() + FirFilterTest() { queue = gr::msg_queue::make(0); item_size = sizeof(gr_complex); config = std::make_shared(); } - ~Fir_Filter_Test() + ~FirFilterTest() {} void init(); @@ -75,7 +75,7 @@ protected: int nsamples = FLAGS_filter_test_nsamples; }; -void Fir_Filter_Test::init() +void FirFilterTest::init() { config->set_property("InputFilter.taps_item_type", "float"); config->set_property("InputFilter.number_of_taps", "5"); @@ -99,32 +99,32 @@ void Fir_Filter_Test::init() //config->set_property("InputFilter.dump", "true"); } -void Fir_Filter_Test::configure_cbyte_cbyte() +void FirFilterTest::configure_cbyte_cbyte() { config->set_property("InputFilter.input_item_type", "cbyte"); config->set_property("InputFilter.output_item_type", "cbyte"); } -void Fir_Filter_Test::configure_gr_complex_gr_complex() +void FirFilterTest::configure_gr_complex_gr_complex() { config->set_property("InputFilter.input_item_type", "gr_complex"); config->set_property("InputFilter.output_item_type", "gr_complex"); } -void Fir_Filter_Test::configure_cshort_cshort() +void FirFilterTest::configure_cshort_cshort() { config->set_property("InputFilter.input_item_type", "cshort"); config->set_property("InputFilter.output_item_type", "cshort"); } -void Fir_Filter_Test::configure_cbyte_gr_complex() +void FirFilterTest::configure_cbyte_gr_complex() { config->set_property("InputFilter.input_item_type", "cbyte"); config->set_property("InputFilter.output_item_type", "gr_complex"); } -TEST_F(Fir_Filter_Test, Instantiate_gr_complex_gr_complex) +TEST_F(FirFilterTest, InstantiateGrComplexGrComplex) { init(); configure_gr_complex_gr_complex(); @@ -134,7 +134,7 @@ TEST_F(Fir_Filter_Test, Instantiate_gr_complex_gr_complex) ASSERT_EQ(1, res); } -TEST_F(Fir_Filter_Test, Instantiate_cshort_cshort) +TEST_F(FirFilterTest, InstantiateCshortCshort) { init(); configure_cshort_cshort(); @@ -144,7 +144,7 @@ TEST_F(Fir_Filter_Test, Instantiate_cshort_cshort) ASSERT_EQ(1, res); } -TEST_F(Fir_Filter_Test, Instantiate_cbyte_cbyte) +TEST_F(FirFilterTest, InstantiateCbyteCbyte) { init(); configure_cbyte_cbyte(); @@ -154,7 +154,7 @@ TEST_F(Fir_Filter_Test, Instantiate_cbyte_cbyte) ASSERT_EQ(1, res); } -TEST_F(Fir_Filter_Test, Instantiate_cbyte_gr_complex) +TEST_F(FirFilterTest, InstantiateCbyteGrComplex) { init(); configure_cbyte_gr_complex(); @@ -164,7 +164,7 @@ TEST_F(Fir_Filter_Test, Instantiate_cbyte_gr_complex) ASSERT_EQ(1, res); } -TEST_F(Fir_Filter_Test, ConnectAndRun) +TEST_F(FirFilterTest, ConnectAndRun) { int fs_in = 4000000; struct timeval tv; @@ -198,7 +198,7 @@ TEST_F(Fir_Filter_Test, ConnectAndRun) } -TEST_F(Fir_Filter_Test, ConnectAndRunGrcomplex) +TEST_F(FirFilterTest, ConnectAndRunGrcomplex) { struct timeval tv; long long int begin = 0; @@ -241,7 +241,7 @@ TEST_F(Fir_Filter_Test, ConnectAndRunGrcomplex) std::cout << "Filtered " << nsamples << " gr_complex samples in " << (end-begin) << " microseconds" << std::endl; } -TEST_F(Fir_Filter_Test, ConnectAndRunCshorts) +TEST_F(FirFilterTest, ConnectAndRunCshorts) { struct timeval tv; long long int begin = 0; @@ -288,7 +288,7 @@ TEST_F(Fir_Filter_Test, ConnectAndRunCshorts) -TEST_F(Fir_Filter_Test, ConnectAndRunCbytes) +TEST_F(FirFilterTest, ConnectAndRunCbytes) { struct timeval tv; long long int begin = 0; @@ -334,7 +334,7 @@ TEST_F(Fir_Filter_Test, ConnectAndRunCbytes) } -TEST_F(Fir_Filter_Test, ConnectAndRunCbyteGrcomplex) +TEST_F(FirFilterTest, ConnectAndRunCbyteGrcomplex) { struct timeval tv; long long int begin = 0; diff --git a/src/tests/unit-tests/signal-processing-blocks/pvt/rinex_printer_test.cc b/src/tests/unit-tests/signal-processing-blocks/pvt/rinex_printer_test.cc index dfd62d5dd..3a4bda179 100644 --- a/src/tests/unit-tests/signal-processing-blocks/pvt/rinex_printer_test.cc +++ b/src/tests/unit-tests/signal-processing-blocks/pvt/rinex_printer_test.cc @@ -33,7 +33,7 @@ #include "rinex_printer.h" -TEST(Rinex_Printer_Test, GalileoObsHeader) +TEST(RinexPrinterTest, GalileoObsHeader) { std::string line_aux; std::string line_str; @@ -89,7 +89,7 @@ TEST(Rinex_Printer_Test, GalileoObsHeader) -TEST(Rinex_Printer_Test, MixedObsHeader) +TEST(RinexPrinterTest, MixedObsHeader) { std::string line_aux; std::string line_aux2; @@ -133,7 +133,7 @@ TEST(Rinex_Printer_Test, MixedObsHeader) } -TEST(Rinex_Printer_Test, GalileoObsLog) +TEST(RinexPrinterTest, GalileoObsLog) { std::string line_aux; std::string line_str; @@ -201,7 +201,7 @@ TEST(Rinex_Printer_Test, GalileoObsLog) } -TEST(Rinex_Printer_Test, GpsObsLogDualBand) +TEST(RinexPrinterTest, GpsObsLogDualBand) { std::string line_aux; std::string line_str; @@ -283,7 +283,7 @@ TEST(Rinex_Printer_Test, GpsObsLogDualBand) } -TEST(Rinex_Printer_Test, GalileoObsLogDualBand) +TEST(RinexPrinterTest, GalileoObsLogDualBand) { std::string line_aux; std::string line_str; @@ -365,7 +365,7 @@ TEST(Rinex_Printer_Test, GalileoObsLogDualBand) -TEST(Rinex_Printer_Test, MixedObsLog) +TEST(RinexPrinterTest, MixedObsLog) { std::string line_aux; std::string line_str; diff --git a/src/tests/unit-tests/signal-processing-blocks/pvt/rtcm_printer_test.cc b/src/tests/unit-tests/signal-processing-blocks/pvt/rtcm_printer_test.cc index 268c05630..e550e1fa3 100644 --- a/src/tests/unit-tests/signal-processing-blocks/pvt/rtcm_printer_test.cc +++ b/src/tests/unit-tests/signal-processing-blocks/pvt/rtcm_printer_test.cc @@ -37,7 +37,7 @@ //#include "gps_ephemeris.h" -TEST(Rtcm_Printer_Test, Instantiate) +TEST(RtcmPrinterTest, Instantiate) { std::string filename = "hello.rtcm"; bool flag_rtcm_tty_port = false; @@ -49,7 +49,7 @@ TEST(Rtcm_Printer_Test, Instantiate) } -TEST(Rtcm_Printer_Test, Run) +TEST(RtcmPrinterTest, Run) { // std::string file_name = "./gps_ephemeris_rx.xml"; // std::map gps_ephemeris_map; diff --git a/src/tests/unit-tests/signal-processing-blocks/pvt/rtcm_test.cc b/src/tests/unit-tests/signal-processing-blocks/pvt/rtcm_test.cc index 0680dbfc7..a72cf2871 100644 --- a/src/tests/unit-tests/signal-processing-blocks/pvt/rtcm_test.cc +++ b/src/tests/unit-tests/signal-processing-blocks/pvt/rtcm_test.cc @@ -34,7 +34,7 @@ #include "rtcm.h" #include "Galileo_E1.h" -TEST(Rtcm_Test, Hex_to_bin) +TEST(RtcmTest, HexToBin) { auto rtcm = std::make_shared(); @@ -64,7 +64,7 @@ TEST(Rtcm_Test, Hex_to_bin) } -TEST(Rtcm_Test, Bin_to_hex) +TEST(RtcmTest, BinToHex) { auto rtcm = std::make_shared(); @@ -99,7 +99,7 @@ TEST(Rtcm_Test, Bin_to_hex) -TEST(Rtcm_Test, Hex_to_int) +TEST(RtcmTest, HexToInt) { auto rtcm = std::make_shared(); @@ -110,7 +110,7 @@ TEST(Rtcm_Test, Hex_to_int) } -TEST(Rtcm_Test, Hex_to_uint) +TEST(RtcmTest, HexToUint) { auto rtcm = std::make_shared(); long unsigned int expected1 = 42; @@ -118,7 +118,7 @@ TEST(Rtcm_Test, Hex_to_uint) } -TEST(Rtcm_Test, Bin_to_double) +TEST(RtcmTest, BinToDouble) { auto rtcm = std::make_shared(); @@ -135,7 +135,7 @@ TEST(Rtcm_Test, Bin_to_double) } -TEST(Rtcm_Test, Bin_to_uint) +TEST(RtcmTest, BinToUint) { auto rtcm = std::make_shared(); long unsigned int expected1 = 42; @@ -145,7 +145,7 @@ TEST(Rtcm_Test, Bin_to_uint) } -TEST(Rtcm_Test, Bin_to_int) +TEST(RtcmTest, BinToInt) { auto rtcm = std::make_shared(); long unsigned int expected1 = 42; @@ -155,7 +155,7 @@ TEST(Rtcm_Test, Bin_to_int) } -TEST(Rtcm_Test, Bin_to_binary_data) +TEST(RtcmTest, BinToBinaryData) { auto rtcm = std::make_shared(); std::string bin_str("1101101011010110"); @@ -171,7 +171,7 @@ TEST(Rtcm_Test, Bin_to_binary_data) } -TEST(Rtcm_Test, Check_CRC) +TEST(RtcmTest, CheckCRC) { auto rtcm = std::make_shared(); bool expected_true = true; @@ -186,7 +186,7 @@ TEST(Rtcm_Test, Check_CRC) } -TEST(Rtcm_Test, MT1001) +TEST(RtcmTest, MT1001) { auto rtcm = std::make_shared(); Gps_Ephemeris gps_eph = Gps_Ephemeris(); @@ -209,7 +209,7 @@ TEST(Rtcm_Test, MT1001) } -TEST(Rtcm_Test, MT1005) +TEST(RtcmTest, MT1005) { auto rtcm = std::make_shared(); std::string reference_msg = rtcm->print_MT1005_test(); @@ -254,7 +254,7 @@ TEST(Rtcm_Test, MT1005) -TEST(Rtcm_Test, MT1019) +TEST(RtcmTest, MT1019) { auto rtcm = std::make_shared(); bool expected_true = true; @@ -277,7 +277,7 @@ TEST(Rtcm_Test, MT1019) } -TEST(Rtcm_Test, MT1029) +TEST(RtcmTest, MT1029) { auto rtcm = std::make_shared(); std::string s_test("UTF-8 проверка wörter"); @@ -295,7 +295,7 @@ TEST(Rtcm_Test, MT1029) } -TEST(Rtcm_Test, MT1045) +TEST(RtcmTest, MT1045) { auto rtcm = std::make_shared(); bool expected_true = true; @@ -317,7 +317,7 @@ TEST(Rtcm_Test, MT1045) } -TEST(Rtcm_Test, MSMCell) +TEST(RtcmTest, MSMCell) { auto rtcm = std::make_shared(); Gps_Ephemeris gps_eph = Gps_Ephemeris(); @@ -446,7 +446,7 @@ TEST(Rtcm_Test, MSMCell) } -TEST(Rtcm_Test, MSM1) +TEST(RtcmTest, MSM1) { auto rtcm = std::make_shared(); bool expected_true = true; @@ -561,7 +561,7 @@ TEST(Rtcm_Test, MSM1) } -TEST(Rtcm_Test, InstantiateServer) +TEST(RtcmTest, InstantiateServer) { auto rtcm = std::make_shared(); rtcm->run_server(); @@ -585,7 +585,7 @@ TEST(Rtcm_Test, InstantiateServer) } -TEST(Rtcm_Test, InstantiateServerWithoutClosing) +TEST(RtcmTest, InstantiateServerWithoutClosing) { auto rtcm = std::make_shared(); rtcm->run_server(); diff --git a/src/tests/unit-tests/signal-processing-blocks/resampler/direct_resampler_conditioner_cc_test.cc b/src/tests/unit-tests/signal-processing-blocks/resampler/direct_resampler_conditioner_cc_test.cc index 017d7bace..8f2fda8df 100644 --- a/src/tests/unit-tests/signal-processing-blocks/resampler/direct_resampler_conditioner_cc_test.cc +++ b/src/tests/unit-tests/signal-processing-blocks/resampler/direct_resampler_conditioner_cc_test.cc @@ -43,7 +43,7 @@ #include "direct_resampler_conditioner_cc.h" -TEST(Direct_Resampler_Conditioner_Cc_Test, InstantiationAndRunTest) +TEST(DirectResamplerConditionerCcTest, InstantiationAndRunTest) { double fs_in = 8000000.0; // Input sampling frequency in Hz double fs_out = 4000000.0; // sampling freuqncy of the resampled signal in Hz diff --git a/src/tests/unit-tests/signal-processing-blocks/sources/gnss_sdr_valve_test.cc b/src/tests/unit-tests/signal-processing-blocks/sources/gnss_sdr_valve_test.cc index 55886c56c..19ba9c2e5 100644 --- a/src/tests/unit-tests/signal-processing-blocks/sources/gnss_sdr_valve_test.cc +++ b/src/tests/unit-tests/signal-processing-blocks/sources/gnss_sdr_valve_test.cc @@ -38,7 +38,7 @@ #include #include "gnss_sdr_valve.h" -TEST(Valve_Test, CheckEventSentAfter100Samples) +TEST(ValveTest, CheckEventSentAfter100Samples) { gr::msg_queue::sptr queue = gr::msg_queue::make(0); diff --git a/src/tests/unit-tests/signal-processing-blocks/tracking/cpu_multicorrelator_test.cc b/src/tests/unit-tests/signal-processing-blocks/tracking/cpu_multicorrelator_test.cc index 5e65cf0db..2c2dc4fcf 100644 --- a/src/tests/unit-tests/signal-processing-blocks/tracking/cpu_multicorrelator_test.cc +++ b/src/tests/unit-tests/signal-processing-blocks/tracking/cpu_multicorrelator_test.cc @@ -59,7 +59,7 @@ void run_correlator_cpu(cpu_multicorrelator* correlator, } } -TEST(CPU_multicorrelator_test, MeasureExecutionTime) +TEST(CPUMulticorrelatorTest, MeasureExecutionTime) { struct timeval tv; int max_threads=FLAGS_cpu_multicorrelator_max_threads_test; From 130de7acace2a02c098bda8d1e57008ead080eac Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Sun, 25 Jun 2017 23:59:47 +0200 Subject: [PATCH 050/171] Avoid underscores in Test Cases and Test Names According to https://github.com/google/googletest/blob/master/googletest/docs/FAQ.md#why-should-not-test-case-names-and-test-names-contain-underscore --- .../system-tests/obs_gps_l1_system_test.cc | 30 +++++++++---------- src/tests/system-tests/position_test.cc | 28 ++++++++--------- src/tests/system-tests/ttff_gps_l1.cc | 12 ++++---- .../tracking/cpu_multicorrelator_test.cc | 2 +- .../tracking/gpu_multicorrelator_test.cc | 2 +- 5 files changed, 37 insertions(+), 37 deletions(-) diff --git a/src/tests/system-tests/obs_gps_l1_system_test.cc b/src/tests/system-tests/obs_gps_l1_system_test.cc index 5a63924f3..4948e17b7 100644 --- a/src/tests/system-tests/obs_gps_l1_system_test.cc +++ b/src/tests/system-tests/obs_gps_l1_system_test.cc @@ -60,7 +60,7 @@ concurrent_queue global_gps_acq_assist_queue; concurrent_map global_gps_acq_assist_map; -class Obs_Gps_L1_System_Test: public ::testing::Test +class ObsGpsL1SystemTest: public ::testing::Test { public: std::string generator_binary; @@ -88,7 +88,7 @@ public: }; -bool Obs_Gps_L1_System_Test::check_valid_rinex_nav(std::string filename) +bool ObsGpsL1SystemTest::check_valid_rinex_nav(std::string filename) { bool res = false; res = gpstk::isRinexNavFile(filename); @@ -96,7 +96,7 @@ bool Obs_Gps_L1_System_Test::check_valid_rinex_nav(std::string filename) } -double Obs_Gps_L1_System_Test::compute_stdev(const std::vector & vec) +double ObsGpsL1SystemTest::compute_stdev(const std::vector & vec) { double sum__ = std::accumulate(vec.begin(), vec.end(), 0.0); double mean__ = sum__ / vec.size(); @@ -109,7 +109,7 @@ double Obs_Gps_L1_System_Test::compute_stdev(const std::vector & vec) } -bool Obs_Gps_L1_System_Test::check_valid_rinex_obs(std::string filename) +bool ObsGpsL1SystemTest::check_valid_rinex_obs(std::string filename) { bool res = false; res = gpstk::isRinexObsFile(filename); @@ -117,7 +117,7 @@ bool Obs_Gps_L1_System_Test::check_valid_rinex_obs(std::string filename) } -int Obs_Gps_L1_System_Test::configure_generator() +int ObsGpsL1SystemTest::configure_generator() { // Configure signal generator generator_binary = FLAGS_generator_binary; @@ -139,7 +139,7 @@ int Obs_Gps_L1_System_Test::configure_generator() } -int Obs_Gps_L1_System_Test::generate_signal() +int ObsGpsL1SystemTest::generate_signal() { pid_t wait_result; int child_status; @@ -164,7 +164,7 @@ int Obs_Gps_L1_System_Test::generate_signal() } -int Obs_Gps_L1_System_Test::configure_receiver() +int ObsGpsL1SystemTest::configure_receiver() { config = std::make_shared(); @@ -322,7 +322,7 @@ int Obs_Gps_L1_System_Test::configure_receiver() } -int Obs_Gps_L1_System_Test::run_receiver() +int ObsGpsL1SystemTest::run_receiver() { std::shared_ptr control_thread; control_thread = std::make_shared(config); @@ -353,14 +353,14 @@ int Obs_Gps_L1_System_Test::run_receiver() while (fgets(buffer, sizeof(buffer), fp) != NULL) { std::string aux = std::string(buffer); - Obs_Gps_L1_System_Test::generated_rinex_obs = aux.erase(aux.length() - 1, 1); + ObsGpsL1SystemTest::generated_rinex_obs = aux.erase(aux.length() - 1, 1); } pclose(fp); return 0; } -void Obs_Gps_L1_System_Test::check_results() +void ObsGpsL1SystemTest::check_results() { std::vector> > pseudorange_ref(33); std::vector> > carrierphase_ref(33); @@ -433,7 +433,7 @@ void Obs_Gps_L1_System_Test::check_results() try { - std::string arg2_gen = std::string("./") + Obs_Gps_L1_System_Test::generated_rinex_obs; + std::string arg2_gen = std::string("./") + ObsGpsL1SystemTest::generated_rinex_obs; gpstk::Rinex3ObsStream r_meas(arg2_gen); r_meas.exceptions(std::ios::failbit); gpstk::Rinex3ObsData r_meas_data; @@ -658,7 +658,7 @@ void Obs_Gps_L1_System_Test::check_results() } -TEST_F(Obs_Gps_L1_System_Test, Observables_system_test) +TEST_F(ObsGpsL1SystemTest, Observables_system_test) { std::cout << "Validating input RINEX nav file: " << FLAGS_rinex_nav_file << " ..." << std::endl; bool is_rinex_nav_valid = check_valid_rinex_nav(FLAGS_rinex_nav_file); @@ -685,9 +685,9 @@ TEST_F(Obs_Gps_L1_System_Test, Observables_system_test) // Run the receiver EXPECT_EQ( run_receiver(), 0) << "Problem executing the software-defined signal generator"; - std::cout << "Validating RINEX obs file obtained by GNSS-SDR: " << Obs_Gps_L1_System_Test::generated_rinex_obs << " ..." << std::endl; - is_gen_rinex_obs_valid = check_valid_rinex_obs( "./" + Obs_Gps_L1_System_Test::generated_rinex_obs); - EXPECT_EQ(true, is_gen_rinex_obs_valid) << "The RINEX observation file " << Obs_Gps_L1_System_Test::generated_rinex_obs << ", generated by GNSS-SDR, is not well formed."; + std::cout << "Validating RINEX obs file obtained by GNSS-SDR: " << ObsGpsL1SystemTest::generated_rinex_obs << " ..." << std::endl; + is_gen_rinex_obs_valid = check_valid_rinex_obs( "./" + ObsGpsL1SystemTest::generated_rinex_obs); + EXPECT_EQ(true, is_gen_rinex_obs_valid) << "The RINEX observation file " << ObsGpsL1SystemTest::generated_rinex_obs << ", generated by GNSS-SDR, is not well formed."; std::cout << "The file is valid." << std::endl; // Check results diff --git a/src/tests/system-tests/position_test.cc b/src/tests/system-tests/position_test.cc index abf9b971d..4c6a04970 100644 --- a/src/tests/system-tests/position_test.cc +++ b/src/tests/system-tests/position_test.cc @@ -51,7 +51,7 @@ DEFINE_string(config_file_ptest, std::string(""), "File containing the configura concurrent_queue global_gps_acq_assist_queue; concurrent_map global_gps_acq_assist_map; -class Static_Position_System_Test: public ::testing::Test +class StaticPositionSystemTest: public ::testing::Test { public: std::string generator_binary; @@ -92,7 +92,7 @@ private: -void Static_Position_System_Test::geodetic2Ecef(const double latitude, const double longitude, const double altitude, +void StaticPositionSystemTest::geodetic2Ecef(const double latitude, const double longitude, const double altitude, double* x, double* y, double* z) { const double a = 6378137.0; // WGS84 @@ -117,7 +117,7 @@ void Static_Position_System_Test::geodetic2Ecef(const double latitude, const dou } -void Static_Position_System_Test::geodetic2Enu(const double latitude, const double longitude, const double altitude, +void StaticPositionSystemTest::geodetic2Enu(const double latitude, const double longitude, const double altitude, double* east, double* north, double* up) { double x, y, z; @@ -160,7 +160,7 @@ void Static_Position_System_Test::geodetic2Enu(const double latitude, const doub } -double Static_Position_System_Test::compute_stdev_precision(const std::vector & vec) +double StaticPositionSystemTest::compute_stdev_precision(const std::vector & vec) { double sum__ = std::accumulate(vec.begin(), vec.end(), 0.0); double mean__ = sum__ / vec.size(); @@ -173,7 +173,7 @@ double Static_Position_System_Test::compute_stdev_precision(const std::vector & vec, const double ref) +double StaticPositionSystemTest::compute_stdev_accuracy(const std::vector & vec, const double ref) { const double mean__ = ref; double accum__ = 0.0; @@ -185,7 +185,7 @@ double Static_Position_System_Test::compute_stdev_accuracy(const std::vector control_thread; if(FLAGS_config_file_ptest.empty()) @@ -440,17 +440,17 @@ int Static_Position_System_Test::run_receiver() { std::string aux = std::string(buffer); EXPECT_EQ(aux.empty(), false); - Static_Position_System_Test::generated_kml_file = aux.erase(aux.length() - 1, 1); + StaticPositionSystemTest::generated_kml_file = aux.erase(aux.length() - 1, 1); } pclose(fp); - EXPECT_EQ(Static_Position_System_Test::generated_kml_file.empty(), false); + EXPECT_EQ(StaticPositionSystemTest::generated_kml_file.empty(), false); return 0; } -void Static_Position_System_Test::check_results() +void StaticPositionSystemTest::check_results() { - std::fstream myfile(Static_Position_System_Test::generated_kml_file, std::ios_base::in); + std::fstream myfile(StaticPositionSystemTest::generated_kml_file, std::ios_base::in); std::string line; std::vector pos_e; @@ -544,7 +544,7 @@ void Static_Position_System_Test::check_results() } -TEST_F(Static_Position_System_Test, Position_system_test) +TEST_F(StaticPositionSystemTest, Position_system_test) { if(FLAGS_config_file_ptest.empty()) { diff --git a/src/tests/system-tests/ttff_gps_l1.cc b/src/tests/system-tests/ttff_gps_l1.cc index 37a21d9d2..c3dbc2598 100644 --- a/src/tests/system-tests/ttff_gps_l1.cc +++ b/src/tests/system-tests/ttff_gps_l1.cc @@ -75,7 +75,7 @@ typedef struct { } ttff_msgbuf; -class TTFF_GPS_L1_CA_Test: public ::testing::Test +class TfttGpsL1CATest: public ::testing::Test { public: void config_1(); @@ -124,7 +124,7 @@ public: }; -void TTFF_GPS_L1_CA_Test::config_1() +void TfttGpsL1CATest::config_1() { config = std::make_shared(); @@ -235,7 +235,7 @@ void TTFF_GPS_L1_CA_Test::config_1() } -void TTFF_GPS_L1_CA_Test::config_2() +void TfttGpsL1CATest::config_2() { if(FLAGS_config_file_ttff.empty()) { @@ -296,7 +296,7 @@ void receive_msg() } -void TTFF_GPS_L1_CA_Test::print_TTFF_report(const std::vector & ttff_v, std::shared_ptr config_) +void TfttGpsL1CATest::print_TTFF_report(const std::vector & ttff_v, std::shared_ptr config_) { std::ofstream ttff_report_file; std::string filename = "ttff_report"; @@ -455,7 +455,7 @@ void TTFF_GPS_L1_CA_Test::print_TTFF_report(const std::vector & ttff_v, } -TEST_F(TTFF_GPS_L1_CA_Test, ColdStart) +TEST_F(TfttGpsL1CATest, ColdStart) { unsigned int num_measurements = 0; @@ -540,7 +540,7 @@ TEST_F(TTFF_GPS_L1_CA_Test, ColdStart) } -TEST_F(TTFF_GPS_L1_CA_Test, HotStart) +TEST_F(TfttGpsL1CATest, HotStart) { unsigned int num_measurements = 0; TTFF_v.clear(); diff --git a/src/tests/unit-tests/signal-processing-blocks/tracking/cpu_multicorrelator_test.cc b/src/tests/unit-tests/signal-processing-blocks/tracking/cpu_multicorrelator_test.cc index 2c2dc4fcf..71f1605b1 100644 --- a/src/tests/unit-tests/signal-processing-blocks/tracking/cpu_multicorrelator_test.cc +++ b/src/tests/unit-tests/signal-processing-blocks/tracking/cpu_multicorrelator_test.cc @@ -59,7 +59,7 @@ void run_correlator_cpu(cpu_multicorrelator* correlator, } } -TEST(CPUMulticorrelatorTest, MeasureExecutionTime) +TEST(CpuMulticorrelatorTest, MeasureExecutionTime) { struct timeval tv; int max_threads=FLAGS_cpu_multicorrelator_max_threads_test; diff --git a/src/tests/unit-tests/signal-processing-blocks/tracking/gpu_multicorrelator_test.cc b/src/tests/unit-tests/signal-processing-blocks/tracking/gpu_multicorrelator_test.cc index 17fcdb68f..08ff7e02b 100644 --- a/src/tests/unit-tests/signal-processing-blocks/tracking/gpu_multicorrelator_test.cc +++ b/src/tests/unit-tests/signal-processing-blocks/tracking/gpu_multicorrelator_test.cc @@ -62,7 +62,7 @@ void run_correlator_gpu(cuda_multicorrelator* correlator, } } -TEST(GPU_multicorrelator_test, MeasureExecutionTime) +TEST(GpuMulticorrelatorTest, MeasureExecutionTime) { struct timeval tv; int max_threads=FLAGS_gpu_multicorrelator_max_threads_test; From b1f880c19a7eaa41c721460f2fcb7cd8413e0c10 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Mon, 3 Jul 2017 12:42:22 +0200 Subject: [PATCH 051/171] Fix test --- src/tests/unit-tests/control-plane/gnss_block_factory_test.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/tests/unit-tests/control-plane/gnss_block_factory_test.cc b/src/tests/unit-tests/control-plane/gnss_block_factory_test.cc index ce82fbbde..d13902716 100644 --- a/src/tests/unit-tests/control-plane/gnss_block_factory_test.cc +++ b/src/tests/unit-tests/control-plane/gnss_block_factory_test.cc @@ -333,7 +333,7 @@ TEST(GNSSBlockFactoryTest, InstantiateGpsL1CaPvt) std::shared_ptr pvt_ = factory->GetPVT(configuration); std::shared_ptr pvt = std::dynamic_pointer_cast(pvt_); EXPECT_STREQ("PVT", pvt->role().c_str()); - EXPECT_STREQ("Hybrid_PVT", pvt->implementation().c_str()); + EXPECT_STREQ("RTKLIB_PVT", pvt->implementation().c_str()); } @@ -346,4 +346,3 @@ TEST(GNSSBlockFactoryTest, InstantiateWrongPvt) std::shared_ptr pvt = std::dynamic_pointer_cast(pvt_); EXPECT_EQ(nullptr, pvt); } - From e7149acf6ec50f49d5c5ee0a3924b9e421b21551 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Mon, 3 Jul 2017 12:43:25 +0200 Subject: [PATCH 052/171] Better use of Test Case name --- .../arithmetic/code_generation_test.cc | 32 +++---------------- 1 file changed, 5 insertions(+), 27 deletions(-) diff --git a/src/tests/unit-tests/arithmetic/code_generation_test.cc b/src/tests/unit-tests/arithmetic/code_generation_test.cc index d7369f643..f18f65aa6 100644 --- a/src/tests/unit-tests/arithmetic/code_generation_test.cc +++ b/src/tests/unit-tests/arithmetic/code_generation_test.cc @@ -37,7 +37,7 @@ -TEST(CodeGenGPSL1Test, CodeGeneration) +TEST(CodeGenerationTest, CodeGenGPSL1Test) { std::complex* _dest = new std::complex[1023]; signed int _prn = 1; @@ -58,7 +58,7 @@ TEST(CodeGenGPSL1Test, CodeGeneration) long long int end = tv.tv_sec * 1000000 + tv.tv_usec; ASSERT_LE(0, end - begin); std::cout << "Generation completed in " << (end - begin) << " microseconds" << std::endl; - + /* std::complex* _dest2 = new std::complex[1023];gettimeofday(&tv, NULL); @@ -83,7 +83,7 @@ TEST(CodeGenGPSL1Test, CodeGeneration) -TEST(CodeGenGPSL1SampledTest, CodeGeneration) +TEST(CodeGenerationTest, CodeGenGPSL1SampledTest) { signed int _prn = 1; unsigned int _chip_shift = 4; @@ -132,7 +132,7 @@ TEST(CodeGenGPSL1SampledTest, CodeGeneration) } -TEST(ComplexCarrierTest, CodeGeneration) +TEST(CodeGenerationTest, ComplexConjugateTest) { double _fs = 8000000; double _f = 4000; @@ -154,29 +154,7 @@ TEST(ComplexCarrierTest, CodeGeneration) gettimeofday(&tv, NULL); long long int end = tv.tv_sec * 1000000 + tv.tv_usec; - delete[] _dest; + delete[] _dest; ASSERT_LE(0, end - begin); std::cout << "Carrier generation completed in " << (end - begin) << " microseconds" << std::endl; - - /* std::complex* _dest2 = new std::complex[_samplesPerCode]; - gettimeofday(&tv, NULL); - long long int begin2 = tv.tv_sec * 1000000 + tv.tv_usec; - - for(int i = 0; i < iterations; i++) - { - complex_exp_gen_conj2( _dest2, _f, _fs, _samplesPerCode); - } - - gettimeofday(&tv, NULL); - long long int end2 = tv.tv_sec * 1000000 + tv.tv_usec; - std::cout << "Carrier generation completed in " << (end2 - begin2) << " microseconds (New)" << std::endl; - - for (int j=0; j<_samplesPerCode;j++) - { - if(std::abs(_dest[j] - _dest2[j]) > 0.1) std::cout << "Error!" << std::endl; - } - - std::cout << _dest[10] << "and " << _dest2[10] << std::endl; - delete[] _dest2;*/ - } From 8316aa6892e27efb2a5cf0f3f6845c622c73c949 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Thu, 6 Jul 2017 19:29:29 +0200 Subject: [PATCH 053/171] Add more consistent messages for Ninja users --- CMakeLists.txt | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 954503f7e..cab613523 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -278,6 +278,15 @@ if(UNIX) -D_LARGE_FILES ) endif(UNIX) +if(CMAKE_MAKE_PROGRAM MATCHES "make") + set(CMAKE_MAKE_PROGRAM_PRETTY_NAME "make") +endif(CMAKE_MAKE_PROGRAM MATCHES "make") +if(CMAKE_MAKE_PROGRAM MATCHES "ninja") + set(CMAKE_MAKE_PROGRAM_PRETTY_NAME "ninja") +endif(CMAKE_MAKE_PROGRAM MATCHES "ninja") +if(NOT CMAKE_MAKE_PROGRAM_PRETTY_NAME) + set(CMAKE_MAKE_PROGRAM_PRETTY_NAME "${CMAKE_MAKE_PROGRAM}") +endif(NOT CMAKE_MAKE_PROGRAM_PRETTY_NAME) @@ -364,7 +373,7 @@ if(ENABLE_UNIT_TESTING OR ENABLE_SYSTEM_TESTING) else(LIBGTEST_DEV_DIR) message (STATUS " Googletest has not been found.") message (STATUS " Googletest will be downloaded and built automatically ") - message (STATUS " when doing 'make'. ") + message (STATUS " when doing '${CMAKE_MAKE_PROGRAM_PRETTY_NAME}'. ") endif(LIBGTEST_DEV_DIR) endif(GTEST_DIR) endif(ENABLE_UNIT_TESTING OR ENABLE_SYSTEM_TESTING) @@ -466,7 +475,7 @@ endif() find_package(VolkGnssSdr) if(NOT VOLK_GNSSSDR_FOUND) - message(STATUS " volk_gnsssdr will be built along with gnss-sdr when doing 'make'") + message(STATUS " volk_gnsssdr will be built along with gnss-sdr when doing '${CMAKE_MAKE_PROGRAM_PRETTY_NAME}'") ############################### # Find Python required modules ############################### @@ -958,7 +967,7 @@ find_package(Armadillo) if(NOT ARMADILLO_FOUND OR ENABLE_OWN_ARMADILLO) message(STATUS " Armadillo has not been found.") message(STATUS " Armadillo will be downloaded and built automatically") - message(STATUS " when doing 'make'. ") + message(STATUS " when doing '${CMAKE_MAKE_PROGRAM_PRETTY_NAME}'. ") set(armadillo_BRANCH unstable) set(armadillo_RELEASE ${armadillo_BRANCH}) @@ -1100,7 +1109,7 @@ endif(NOT UHD_FOUND) find_package(Doxygen) if(DOXYGEN_FOUND) message(STATUS "Doxygen found.") - message(STATUS "You can build the documentation with 'make doc'." ) + message(STATUS "You can build the documentation with '${CMAKE_MAKE_PROGRAM_PRETTY_NAME} doc'." ) message(STATUS "When done, point your browser to ${CMAKE_BINARY_DIR}/html/index.html") set(HAVE_DOT ${DOXYGEN_DOT_FOUND}) file(TO_NATIVE_PATH ${CMAKE_SOURCE_DIR} top_srcdir) @@ -1123,7 +1132,7 @@ if(DOXYGEN_FOUND) COMMENT "Generating API documentation with Doxygen." VERBATIM ) if(LATEX_COMPILER) - message(STATUS "'make pdfmanual' will generate a manual at ${CMAKE_BINARY_DIR}/docs/GNSS-SDR_manual.pdf") + message(STATUS "'${CMAKE_MAKE_PROGRAM_PRETTY_NAME} pdfmanual' will generate a manual at ${CMAKE_BINARY_DIR}/docs/GNSS-SDR_manual.pdf") add_custom_target(pdfmanual COMMAND ${CMAKE_MAKE_PROGRAM} COMMAND ${CMAKE_COMMAND} -E copy refman.pdf ${CMAKE_BINARY_DIR}/docs/GNSS-SDR_manual.pdf @@ -1133,7 +1142,7 @@ if(DOXYGEN_FOUND) COMMENT "Generating PDF manual with Doxygen." VERBATIM ) endif(LATEX_COMPILER) - message(STATUS "'make doc-clean' will clean the documentation.") + message(STATUS "'${CMAKE_MAKE_PROGRAM_PRETTY_NAME} doc-clean' will clean the documentation.") add_custom_target(doc-clean COMMAND ${CMAKE_COMMAND} -E remove_directory ${CMAKE_BINARY_DIR}/docs/html COMMAND ${CMAKE_COMMAND} -E remove_directory ${CMAKE_BINARY_DIR}/docs/latex From 0c03d36093b9b16490be0565f8d1f1fcd4082b71 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Fri, 7 Jul 2017 12:38:24 +0200 Subject: [PATCH 054/171] Fix test --- .../gps_l1_ca_pcps_acquisition_test.cc | 24 +++++++++---------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/src/tests/unit-tests/signal-processing-blocks/acquisition/gps_l1_ca_pcps_acquisition_test.cc b/src/tests/unit-tests/signal-processing-blocks/acquisition/gps_l1_ca_pcps_acquisition_test.cc index 23b5e42f5..e9a776164 100644 --- a/src/tests/unit-tests/signal-processing-blocks/acquisition/gps_l1_ca_pcps_acquisition_test.cc +++ b/src/tests/unit-tests/signal-processing-blocks/acquisition/gps_l1_ca_pcps_acquisition_test.cc @@ -144,21 +144,21 @@ void GpsL1CaPcpsAcquisitionTest::init() config->set_property("Acquisition.coherent_integration_time_ms", "1"); config->set_property("Acquisition.dump", "false"); config->set_property("Acquisition.implementation", "GPS_L1_CA_PCPS_Acquisition"); - config->set_property("Acquisition.threshold", "0.001"); + config->set_property("Acquisition.threshold", "0.00001"); config->set_property("Acquisition.doppler_max", "5000"); config->set_property("Acquisition.doppler_step", "500"); config->set_property("Acquisition.repeat_satellite", "false"); - config->set_property("Acquisition.pfa", "0.0"); + //config->set_property("Acquisition.pfa", "0.0"); } - TEST_F(GpsL1CaPcpsAcquisitionTest, Instantiate) { init(); boost::shared_ptr acquisition = boost::make_shared(config.get(), "Acquisition", 1, 1); } + TEST_F(GpsL1CaPcpsAcquisitionTest, ConnectAndRun) { int fs_in = 4000000; @@ -194,6 +194,7 @@ TEST_F(GpsL1CaPcpsAcquisitionTest, ConnectAndRun) std::cout << "Processed " << nsamples << " samples in " << (end - begin) << " microseconds" << std::endl; } + TEST_F(GpsL1CaPcpsAcquisitionTest, ValidationOfResults) { struct timeval tv; @@ -203,9 +204,10 @@ TEST_F(GpsL1CaPcpsAcquisitionTest, ValidationOfResults) double expected_delay_samples = 524; double expected_doppler_hz = 1680; - init(); - std::shared_ptr acquisition = std::make_shared(config.get(), "Acquisition", 1, 1); + init(); + + std::shared_ptr acquisition = std::make_shared(config.get(), "Acquisition", 1, 1); boost::shared_ptr msg_rx = GpsL1CaPcpsAcquisitionTest_msg_rx_make(); ASSERT_NO_THROW( { @@ -217,15 +219,15 @@ TEST_F(GpsL1CaPcpsAcquisitionTest, ValidationOfResults) }) << "Failure setting gnss_synchro." << std::endl; ASSERT_NO_THROW( { - acquisition->set_threshold(0.1); + acquisition->set_threshold(0.001); }) << "Failure setting threshold." << std::endl; ASSERT_NO_THROW( { - acquisition->set_doppler_max(10000); + acquisition->set_doppler_max(5000); }) << "Failure setting doppler_max." << std::endl; ASSERT_NO_THROW( { - acquisition->set_doppler_step(250); + acquisition->set_doppler_step(100); }) << "Failure setting doppler_step." << std::endl; ASSERT_NO_THROW( { @@ -234,7 +236,6 @@ TEST_F(GpsL1CaPcpsAcquisitionTest, ValidationOfResults) ASSERT_NO_THROW( { std::string path = std::string(TEST_PATH); - //std::string file = path + "signal_samples/GSoC_CTTC_capture_2012_07_26_4Msps_4ms.dat"; std::string file = path + "signal_samples/GPS_L1_CA_ID_1_Fs_4Msps_2ms.dat"; const char * file_name = file.c_str(); gr::blocks::file_source::sptr file_source = gr::blocks::file_source::make(sizeof(gr_complex), file_name, false); @@ -242,7 +243,7 @@ TEST_F(GpsL1CaPcpsAcquisitionTest, ValidationOfResults) top_block->msg_connect(acquisition->get_right_block(), pmt::mp("events"), msg_rx, pmt::mp("events")); }) << "Failure connecting the blocks of acquisition test." << std::endl; - + acquisition->set_local_code(); acquisition->set_state(1); // Ensure that acquisition starts at the first sample acquisition->init(); @@ -254,10 +255,8 @@ TEST_F(GpsL1CaPcpsAcquisitionTest, ValidationOfResults) end = tv.tv_sec * 1000000 + tv.tv_usec; }) << "Failure running the top_block." << std::endl; - unsigned long int nsamples = gnss_synchro.Acq_samplestamp_samples; std::cout << "Acquired " << nsamples << " samples in " << (end - begin) << " microseconds" << std::endl; - ASSERT_EQ(1, msg_rx->rx_message) << "Acquisition failure. Expected message: 1=ACQ SUCCESS."; double delay_error_samples = std::abs(expected_delay_samples - gnss_synchro.Acq_delay_samples); @@ -266,5 +265,4 @@ TEST_F(GpsL1CaPcpsAcquisitionTest, ValidationOfResults) EXPECT_LE(doppler_error_hz, 666) << "Doppler error exceeds the expected value: 666 Hz = 2/(3*integration period)"; EXPECT_LT(delay_error_chips, 0.5) << "Delay error exceeds the expected value: 0.5 chips"; - } From 51cd1d0c29921e6a443760b477aec4db401beef2 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Mon, 10 Jul 2017 23:59:18 +0200 Subject: [PATCH 055/171] Add unit tests for Data Type Adapter blocks --- src/tests/test_main.cc | 1 + .../adapter/adapter_test.cc | 407 ++++++++++++++++++ 2 files changed, 408 insertions(+) create mode 100644 src/tests/unit-tests/signal-processing-blocks/adapter/adapter_test.cc diff --git a/src/tests/test_main.cc b/src/tests/test_main.cc index b78051a69..49e9138b6 100644 --- a/src/tests/test_main.cc +++ b/src/tests/test_main.cc @@ -82,6 +82,7 @@ DECLARE_string(log_dir); #include "unit-tests/signal-processing-blocks/sources/gnss_sdr_valve_test.cc" #include "unit-tests/signal-processing-blocks/adapter/pass_through_test.cc" +#include "unit-tests/signal-processing-blocks/adapter/adapter_test.cc" #include "unit-tests/signal-processing-blocks/filter/fir_filter_test.cc" diff --git a/src/tests/unit-tests/signal-processing-blocks/adapter/adapter_test.cc b/src/tests/unit-tests/signal-processing-blocks/adapter/adapter_test.cc new file mode 100644 index 000000000..b2d917fbc --- /dev/null +++ b/src/tests/unit-tests/signal-processing-blocks/adapter/adapter_test.cc @@ -0,0 +1,407 @@ +/*! + * \file adapter_test.cc + * \brief This file implements tests for the DataTypeAdapter block + * \author Carles Fernandez-Prades, 2017. cfernandez(at)cttc.es + * + * + * ------------------------------------------------------------------------- + * + * Copyright (C) 2010-2017 (see AUTHORS file for a list of contributors) + * + * GNSS-SDR is a software defined Global Navigation + * Satellite Systems receiver + * + * This file is part of GNSS-SDR. + * + * GNSS-SDR is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * GNSS-SDR is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with GNSS-SDR. If not, see . + * + * ------------------------------------------------------------------------- + */ + +#include +#include +#include +#include +#include +#include +#include +#include "byte_to_short.h" +#include "ibyte_to_cbyte.h" +#include "ibyte_to_complex.h" +#include "ibyte_to_cshort.h" +#include "ishort_to_complex.h" +#include "ishort_to_cshort.h" +#include "in_memory_configuration.h" + + +class DataTypeAdapter: public ::testing::Test +{ +public: + DataTypeAdapter(); + ~DataTypeAdapter(); + int run_byte_to_short_block(); + int run_ibyte_to_cbyte_block(); + int run_ibyte_to_complex_block(); + int run_ibyte_to_cshort_block(); + int run_ishort_to_complex_block(); + int run_ishort_to_cshort_block(); + std::string file_name_input; + std::string file_name_output; + std::vector input_data_bytes; + std::vector input_data_shorts; +}; + + +DataTypeAdapter::DataTypeAdapter() +{ + file_name_input = "adapter_test_input.dat"; + file_name_output = "adapter_test_output.dat"; + int8_t input_bytes[] = {2, 23, -1, 127, -127, 0}; + short input_shorts[] = {2, 23, -1, 127, -127, 0, 255, 255}; + + const std::vector input_data_bytes_(input_bytes, input_bytes + sizeof(input_bytes) / sizeof(int8_t)); + input_data_bytes = input_data_bytes_; + + const std::vector input_data_shorts_(input_shorts, input_shorts + sizeof(input_shorts) / sizeof(short)); + input_data_shorts = input_data_shorts_; +} + + +DataTypeAdapter::~DataTypeAdapter() +{} + + +int DataTypeAdapter::run_ishort_to_cshort_block() +{ + std::shared_ptr config = std::make_shared(); + config->set_property("Test.implementation", "Ishort_To_Cshort"); + std::shared_ptr ishort_to_cshort = std::make_shared(config.get(), "Test", 1, 1); + std::string expected_implementation = "Ishort_To_Cshort"; + EXPECT_EQ(expected_implementation, ishort_to_cshort->implementation()); + + std::ofstream ofs(file_name_input.c_str(), std::ofstream::binary); + for(std::vector::const_iterator i = input_data_shorts.begin(); i != input_data_shorts.end(); ++i) + { + short aux = *i; + ofs.write(reinterpret_cast(&aux), sizeof(short)); + } + ofs.close(); + + auto top_block = gr::make_top_block("Ishort_To_Cshort test"); + auto file_source = gr::blocks::file_source::make(sizeof(short), file_name_input.c_str()); + auto sink = gr::blocks::file_sink::make(sizeof(lv_16sc_t), file_name_output.c_str(), false); + + EXPECT_NO_THROW( { + top_block->connect(file_source, 0, ishort_to_cshort->get_left_block(), 0); + top_block->connect(ishort_to_cshort->get_right_block(), 0, sink, 0); + top_block->run(); + }); + return 0; +} + + +int DataTypeAdapter::run_ishort_to_complex_block() +{ + std::shared_ptr config = std::make_shared(); + config->set_property("Test.implementation", "Ishort_To_Complex"); + std::shared_ptr ishort_to_complex = std::make_shared(config.get(), "Test", 1, 1); + std::string expected_implementation = "Ishort_To_Complex"; + EXPECT_EQ(expected_implementation, ishort_to_complex->implementation()); + + std::ofstream ofs(file_name_input.c_str(), std::ofstream::binary); + for(std::vector::const_iterator i = input_data_shorts.begin(); i != input_data_shorts.end(); ++i) + { + short aux = *i; + ofs.write(reinterpret_cast(&aux), sizeof(short)); + } + ofs.close(); + + auto top_block = gr::make_top_block("Ishort_To_Complex test"); + auto file_source = gr::blocks::file_source::make(sizeof(short), file_name_input.c_str()); + auto sink = gr::blocks::file_sink::make(sizeof(gr_complex), file_name_output.c_str(), false); + + EXPECT_NO_THROW( { + top_block->connect(file_source, 0, ishort_to_complex->get_left_block(), 0); + top_block->connect(ishort_to_complex->get_right_block(), 0, sink, 0); + top_block->run(); + }); + return 0; +} + + +int DataTypeAdapter::run_ibyte_to_cshort_block() +{ + std::shared_ptr config = std::make_shared(); + config->set_property("Test.implementation", "Ibyte_To_Cshort"); + std::shared_ptr ibyte_to_cshort = std::make_shared(config.get(), "Test", 1, 1); + std::string expected_implementation = "Ibyte_To_Cshort"; + EXPECT_EQ(expected_implementation, ibyte_to_cshort->implementation()); + + std::ofstream ofs(file_name_input.c_str()); + for(std::vector::const_iterator i = input_data_bytes.begin(); i != input_data_bytes.end(); ++i) + { + ofs << *i; + } + ofs.close(); + + auto top_block = gr::make_top_block("Ibyte_To_Cshort test"); + auto file_source = gr::blocks::file_source::make(sizeof(int8_t), file_name_input.c_str()); + auto sink = gr::blocks::file_sink::make(sizeof(lv_16sc_t), file_name_output.c_str(), false); + + EXPECT_NO_THROW( { + top_block->connect(file_source, 0, ibyte_to_cshort->get_left_block(), 0); + top_block->connect(ibyte_to_cshort->get_right_block(), 0, sink, 0); + top_block->run(); + }); + return 0; +} + + +int DataTypeAdapter::run_ibyte_to_complex_block() +{ + std::shared_ptr config = std::make_shared(); + config->set_property("Test.implementation", "Ibyte_To_Complex"); + std::shared_ptr ibyte_to_complex = std::make_shared(config.get(), "Test", 1, 1); + std::string expected_implementation = "Ibyte_To_Complex"; + EXPECT_EQ(expected_implementation, ibyte_to_complex->implementation()); + + std::ofstream ofs(file_name_input.c_str() ); + for(std::vector::const_iterator i = input_data_bytes.begin(); i != input_data_bytes.end(); ++i) + { + ofs << *i; + } + ofs.close(); + + auto top_block = gr::make_top_block("Ibyte_To_Complex test"); + auto file_source = gr::blocks::file_source::make(sizeof(int8_t), file_name_input.c_str()); + auto sink = gr::blocks::file_sink::make(sizeof(gr_complex), file_name_output.c_str(), false); + + EXPECT_NO_THROW( { + top_block->connect(file_source, 0, ibyte_to_complex->get_left_block(), 0); + top_block->connect(ibyte_to_complex->get_right_block(), 0, sink, 0); + top_block->run(); + }); + return 0; +} + + +int DataTypeAdapter::run_ibyte_to_cbyte_block() +{ + std::shared_ptr config = std::make_shared(); + config->set_property("Test.implementation", "Ibyte_To_Cbyte"); + std::shared_ptr ibyte_to_cbyte = std::make_shared(config.get(), "Test", 1, 1); + std::string expected_implementation = "Ibyte_To_Cbyte"; + EXPECT_EQ(expected_implementation, ibyte_to_cbyte->implementation()); + + std::ofstream ofs(file_name_input.c_str()); + for(std::vector::const_iterator i = input_data_bytes.begin(); i != input_data_bytes.end(); ++i) + { + ofs << *i; + } + ofs.close(); + + auto top_block = gr::make_top_block("Ibyte_To_Cbyte test"); + auto file_source = gr::blocks::file_source::make(sizeof(int8_t), file_name_input.c_str()); + auto sink = gr::blocks::file_sink::make(sizeof(short), file_name_output.c_str(), false); + + EXPECT_NO_THROW( { + top_block->connect(file_source, 0, ibyte_to_cbyte->get_left_block(), 0); + top_block->connect(ibyte_to_cbyte->get_right_block(), 0, sink, 0); + top_block->run(); + }); + return 0; +} + + +int DataTypeAdapter::run_byte_to_short_block() +{ + std::shared_ptr config = std::make_shared(); + config->set_property("Test.implementation", "Byte_To_Short"); + std::shared_ptr byte_to_short = std::make_shared(config.get(), "Test", 1, 1); + std::string expected_implementation = "Byte_To_Short"; + EXPECT_EQ(expected_implementation, byte_to_short->implementation()); + + std::ofstream ofs(file_name_input.c_str()); + for(std::vector::const_iterator i = input_data_bytes.begin(); i != input_data_bytes.end(); ++i) + { + ofs << *i; + } + ofs.close(); + + auto top_block = gr::make_top_block("Byte_To_Short test"); + auto file_source = gr::blocks::file_source::make(sizeof(int8_t), file_name_input.c_str()); + auto sink = gr::blocks::file_sink::make(sizeof(int16_t), file_name_output.c_str(), false); + + EXPECT_NO_THROW( { + top_block->connect(file_source, 0, byte_to_short->get_left_block(), 0); + top_block->connect(byte_to_short->get_right_block(), 0, sink, 0); + top_block->run(); + }); + return 0; +} + + +TEST_F(DataTypeAdapter, ByteToShortValidationOfResults) +{ + run_byte_to_short_block(); + std::ifstream ifs(file_name_output.data(), std::ifstream::binary | std::ifstream::in ); + + int16_t iSample; + int i = 0; + try + { + while(ifs.read(reinterpret_cast(&iSample), sizeof(int16_t))) + { + EXPECT_EQ(input_data_bytes.at(i), static_cast(iSample / 256)); // Scale down! + i++; + } + } + catch(std::system_error& e) + { + std::cerr << e.code().message() << std::endl; + } + ifs.close(); + remove(file_name_input.c_str()); + remove(file_name_output.c_str()); +} + + +TEST_F(DataTypeAdapter, IbyteToCbyteValidationOfResults) +{ + run_ibyte_to_cbyte_block(); + std::ifstream ifs(file_name_output.data(), std::ifstream::binary | std::ifstream::in ); + lv_8sc_t iSample; + int i = 0; + try + { + while(ifs.read(reinterpret_cast(&iSample), sizeof(lv_8sc_t))) + { + EXPECT_EQ(input_data_bytes.at(i), iSample.real()); + i++; + EXPECT_EQ(input_data_bytes.at(i), iSample.imag()); + i++; + } + } + catch(std::system_error& e) + { + std::cerr << e.code().message() << std::endl; + } + ifs.close(); + remove(file_name_input.c_str()); + remove(file_name_output.c_str()); +} + + +TEST_F(DataTypeAdapter, IbyteToComplexValidationOfResults) +{ + run_ibyte_to_cbyte_block(); + std::ifstream ifs(file_name_output.data(), std::ifstream::binary | std::ifstream::in ); + gr_complex iSample; + int i = 0; + try + { + while(ifs.read(reinterpret_cast(&iSample), sizeof(gr_complex))) + { + EXPECT_EQ(input_data_bytes.at(i), static_cast(iSample.real())); + i++; + EXPECT_EQ(input_data_bytes.at(i), static_cast(iSample.imag())); + i++; + } + } + catch(std::system_error& e) + { + std::cerr << e.code().message() << std::endl; + } + ifs.close(); + remove(file_name_input.c_str()); + remove(file_name_output.c_str()); +} + + +TEST_F(DataTypeAdapter, IbyteToCshortValidationOfResults) +{ + run_ibyte_to_cshort_block(); + std::ifstream ifs(file_name_output.data(), std::ifstream::binary | std::ifstream::in ); + lv_16sc_t iSample; + int i = 0; + try + { + while(ifs.read(reinterpret_cast(&iSample), sizeof(lv_16sc_t))) + { + EXPECT_EQ(input_data_bytes.at(i), static_cast(iSample.real())); + i++; + EXPECT_EQ(input_data_bytes.at(i), static_cast(iSample.imag())); + i++; + } + } + catch(std::system_error& e) + { + std::cerr << e.code().message() << std::endl; + } + ifs.close(); + remove(file_name_input.c_str()); + remove(file_name_output.c_str()); +} + + +TEST_F(DataTypeAdapter, IshortToComplexValidationOfResults) +{ + run_ishort_to_complex_block(); + std::ifstream ifs(file_name_output.data(), std::ifstream::binary | std::ifstream::in ); + gr_complex iSample; + int i = 0; + try + { + while(ifs.read(reinterpret_cast(&iSample), sizeof(gr_complex))) + { + EXPECT_EQ(input_data_shorts.at(i), static_cast(iSample.real())); + i++; + EXPECT_EQ(input_data_shorts.at(i), static_cast(iSample.imag())); + i++; + } + } + catch(std::system_error& e) + { + std::cerr << e.code().message() << std::endl; + } + ifs.close(); + remove(file_name_input.c_str()); + remove(file_name_output.c_str()); +} + + +TEST_F(DataTypeAdapter, IshortToCshortValidationOfResults) +{ + run_ishort_to_cshort_block(); + std::ifstream ifs(file_name_output.data(), std::ifstream::binary | std::ifstream::in ); + lv_16sc_t iSample; + int i = 0; + try + { + while(ifs.read(reinterpret_cast(&iSample), sizeof(lv_16sc_t))) + { + EXPECT_EQ(input_data_shorts.at(i), static_cast(iSample.real())); + i++; + EXPECT_EQ(input_data_shorts.at(i), static_cast(iSample.imag())); + i++; + } + } + catch(std::system_error& e) + { + std::cerr << e.code().message() << std::endl; + } + ifs.close(); + remove(file_name_input.c_str()); + remove(file_name_output.c_str()); +} From d469961f09609cd8ce227de9a7ae8ac7ddb8be79 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Tue, 11 Jul 2017 00:31:40 +0200 Subject: [PATCH 056/171] Fix test --- .../acquisition/galileo_e1_pcps_ambiguous_acquisition_test.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tests/unit-tests/signal-processing-blocks/acquisition/galileo_e1_pcps_ambiguous_acquisition_test.cc b/src/tests/unit-tests/signal-processing-blocks/acquisition/galileo_e1_pcps_ambiguous_acquisition_test.cc index 3adec6673..1dd5c8fe9 100644 --- a/src/tests/unit-tests/signal-processing-blocks/acquisition/galileo_e1_pcps_ambiguous_acquisition_test.cc +++ b/src/tests/unit-tests/signal-processing-blocks/acquisition/galileo_e1_pcps_ambiguous_acquisition_test.cc @@ -241,6 +241,7 @@ TEST_F(GalileoE1PcpsAmbiguousAcquisitionTest, ValidationOfResults) top_block->msg_connect(acquisition->get_right_block(), pmt::mp("events"), msg_rx, pmt::mp("events")); }) << "Failure connecting the blocks of acquisition test." << std::endl; + acquisition->set_local_code(); acquisition->init(); acquisition->reset(); acquisition->set_state(1); From 39253893d4c084ab72b63ca01944557fe097f543 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Tue, 11 Jul 2017 08:59:54 +0200 Subject: [PATCH 057/171] Add missing include --- .../unit-tests/signal-processing-blocks/adapter/adapter_test.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tests/unit-tests/signal-processing-blocks/adapter/adapter_test.cc b/src/tests/unit-tests/signal-processing-blocks/adapter/adapter_test.cc index b2d917fbc..f4cbdc3d8 100644 --- a/src/tests/unit-tests/signal-processing-blocks/adapter/adapter_test.cc +++ b/src/tests/unit-tests/signal-processing-blocks/adapter/adapter_test.cc @@ -33,6 +33,7 @@ #include #include #include +#include #include #include #include From d89be37c4a046b8f904ca4a0d43724e52f913d26 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Tue, 11 Jul 2017 11:56:54 +0200 Subject: [PATCH 058/171] Fix tests --- .../galileo_e1_pcps_ambiguous_acquisition_gsoc_test.cc | 1 + .../acquisition/gps_l2_m_pcps_acquisition_test.cc | 1 + 2 files changed, 2 insertions(+) diff --git a/src/tests/unit-tests/signal-processing-blocks/acquisition/galileo_e1_pcps_ambiguous_acquisition_gsoc_test.cc b/src/tests/unit-tests/signal-processing-blocks/acquisition/galileo_e1_pcps_ambiguous_acquisition_gsoc_test.cc index 6fe61c632..1e5e95160 100644 --- a/src/tests/unit-tests/signal-processing-blocks/acquisition/galileo_e1_pcps_ambiguous_acquisition_gsoc_test.cc +++ b/src/tests/unit-tests/signal-processing-blocks/acquisition/galileo_e1_pcps_ambiguous_acquisition_gsoc_test.cc @@ -292,6 +292,7 @@ TEST_F(GalileoE1PcpsAmbiguousAcquisitionGSoCTest, ValidationOfResults) ASSERT_NO_THROW( { start_queue(); + acquisition->set_local_code(); acquisition->init(); acquisition->reset(); acquisition->set_state(1); diff --git a/src/tests/unit-tests/signal-processing-blocks/acquisition/gps_l2_m_pcps_acquisition_test.cc b/src/tests/unit-tests/signal-processing-blocks/acquisition/gps_l2_m_pcps_acquisition_test.cc index bdfc0dd9a..a099976c1 100644 --- a/src/tests/unit-tests/signal-processing-blocks/acquisition/gps_l2_m_pcps_acquisition_test.cc +++ b/src/tests/unit-tests/signal-processing-blocks/acquisition/gps_l2_m_pcps_acquisition_test.cc @@ -257,6 +257,7 @@ TEST_F(GpsL2MPcpsAcquisitionTest, ValidationOfResults) ASSERT_NO_THROW( { + acquisition->set_local_code(); acquisition->set_state(1); // Ensure that acquisition starts at the first sample acquisition->init(); }) << "Failure set_state and init acquisition test" << std::endl; From f84fe9e31f766cc699e5edc0b6186b3ff5fe26f9 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Tue, 11 Jul 2017 12:22:05 +0200 Subject: [PATCH 059/171] Avoid underscores in Test Cases and Test Names According to https://github.com/google/googletest/blob/master/googletest/docs/FAQ.md#why-should-not-test-case-names-and-test-names-contain-underscore --- .../sources/unpack_2bit_samples_test.cc | 60 +++++++++---------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/src/tests/unit-tests/signal-processing-blocks/sources/unpack_2bit_samples_test.cc b/src/tests/unit-tests/signal-processing-blocks/sources/unpack_2bit_samples_test.cc index 9d7dfefed..683388e25 100644 --- a/src/tests/unit-tests/signal-processing-blocks/sources/unpack_2bit_samples_test.cc +++ b/src/tests/unit-tests/signal-processing-blocks/sources/unpack_2bit_samples_test.cc @@ -79,7 +79,7 @@ std::vector< uint8_t > packData( std::vector< int8_t > const & raw_data, } -TEST(Unpack_2bit_Samples_Test, CheckBigEndianByte) +TEST(Unpack2bitSamplesTest, CheckBigEndianByte) { bool big_endian_bytes = true; size_t item_size = 1; @@ -90,13 +90,13 @@ TEST(Unpack_2bit_Samples_Test, CheckBigEndianByte) std::vector< uint8_t > packed_data = packData( raw_data, big_endian_bytes ); std::vector< uint8_t > unpacked_data; - gr::top_block_sptr top_block = gr::make_top_block("unpack_2bit_samples_test"); + gr::top_block_sptr top_block = gr::make_top_block("Unpack2bitSamplesTest"); - gr::blocks::vector_source_b::sptr source = + gr::blocks::vector_source_b::sptr source = gr::blocks::vector_source_b::make( packed_data ); - - boost::shared_ptr unpacker = + + boost::shared_ptr unpacker = make_unpack_2bit_samples(big_endian_bytes, item_size, big_endian_items ); @@ -104,7 +104,7 @@ TEST(Unpack_2bit_Samples_Test, CheckBigEndianByte) gr::blocks::stream_to_vector::sptr stov = gr::blocks::stream_to_vector::make( item_size, raw_data.size() ); - gr::blocks::vector_sink_b::sptr sink = + gr::blocks::vector_sink_b::sptr sink = gr::blocks::vector_sink_b::make( raw_data.size() ); @@ -126,7 +126,7 @@ TEST(Unpack_2bit_Samples_Test, CheckBigEndianByte) } -TEST(Unpack_2bit_Samples_Test, CheckLittleEndianByte) +TEST(Unpack2bitSamplesTest, CheckLittleEndianByte) { bool big_endian_bytes = false; size_t item_size = 1; @@ -137,13 +137,13 @@ TEST(Unpack_2bit_Samples_Test, CheckLittleEndianByte) std::vector< uint8_t > packed_data = packData( raw_data, big_endian_bytes ); std::vector< uint8_t > unpacked_data; - gr::top_block_sptr top_block = gr::make_top_block("unpack_2bit_samples_test"); + gr::top_block_sptr top_block = gr::make_top_block("Unpack2bitSamplesTest"); - gr::blocks::vector_source_b::sptr source = + gr::blocks::vector_source_b::sptr source = gr::blocks::vector_source_b::make( packed_data ); - - boost::shared_ptr unpacker = + + boost::shared_ptr unpacker = make_unpack_2bit_samples(big_endian_bytes, item_size, big_endian_items ); @@ -151,7 +151,7 @@ TEST(Unpack_2bit_Samples_Test, CheckLittleEndianByte) gr::blocks::stream_to_vector::sptr stov = gr::blocks::stream_to_vector::make( item_size, raw_data.size() ); - gr::blocks::vector_sink_b::sptr sink = + gr::blocks::vector_sink_b::sptr sink = gr::blocks::vector_sink_b::make( raw_data.size() ); @@ -173,7 +173,7 @@ TEST(Unpack_2bit_Samples_Test, CheckLittleEndianByte) } -TEST(Unpack_2bit_Samples_Test, CheckBigEndianShortBigEndianByte) +TEST(Unpack2bitSamplesTest, CheckBigEndianShortBigEndianByte) { bool big_endian_bytes = true; size_t item_size = 2; @@ -199,19 +199,19 @@ TEST(Unpack_2bit_Samples_Test, CheckBigEndianShortBigEndianByte) // Now create a new big endian buffer: std::vector< int16_t > packed_data_short( - reinterpret_cast< int16_t *>( &packed_data[0] ), - reinterpret_cast< int16_t * >( &packed_data[0] ) + reinterpret_cast< int16_t *>( &packed_data[0] ), + reinterpret_cast< int16_t * >( &packed_data[0] ) + packed_data.size()/item_size); - + std::vector< uint8_t > unpacked_data; - gr::top_block_sptr top_block = gr::make_top_block("unpack_2bit_samples_test"); + gr::top_block_sptr top_block = gr::make_top_block("Unpack2bitSamplesTest"); - gr::blocks::vector_source_s::sptr source = + gr::blocks::vector_source_s::sptr source = gr::blocks::vector_source_s::make( packed_data_short ); - - boost::shared_ptr unpacker = + + boost::shared_ptr unpacker = make_unpack_2bit_samples(big_endian_bytes, item_size, big_endian_items ); @@ -219,7 +219,7 @@ TEST(Unpack_2bit_Samples_Test, CheckBigEndianShortBigEndianByte) gr::blocks::stream_to_vector::sptr stov = gr::blocks::stream_to_vector::make( 1, raw_data.size() ); - gr::blocks::vector_sink_b::sptr sink = + gr::blocks::vector_sink_b::sptr sink = gr::blocks::vector_sink_b::make( raw_data.size() ); @@ -241,7 +241,7 @@ TEST(Unpack_2bit_Samples_Test, CheckBigEndianShortBigEndianByte) } -TEST(Unpack_2bit_Samples_Test, CheckBigEndianShortLittleEndianByte) +TEST(Unpack2bitSamplesTest, CheckBigEndianShortLittleEndianByte) { bool big_endian_bytes = false; size_t item_size = 2; @@ -267,19 +267,19 @@ TEST(Unpack_2bit_Samples_Test, CheckBigEndianShortLittleEndianByte) // Now create a new big endian buffer: std::vector< int16_t > packed_data_short( - reinterpret_cast< int16_t *>( &packed_data[0] ), - reinterpret_cast< int16_t * >( &packed_data[0] ) + reinterpret_cast< int16_t *>( &packed_data[0] ), + reinterpret_cast< int16_t * >( &packed_data[0] ) + packed_data.size()/item_size); - + std::vector< uint8_t > unpacked_data; - gr::top_block_sptr top_block = gr::make_top_block("unpack_2bit_samples_test"); + gr::top_block_sptr top_block = gr::make_top_block("Unpack2bitSamplesTest"); - gr::blocks::vector_source_s::sptr source = + gr::blocks::vector_source_s::sptr source = gr::blocks::vector_source_s::make( packed_data_short ); - - boost::shared_ptr unpacker = + + boost::shared_ptr unpacker = make_unpack_2bit_samples(big_endian_bytes, item_size, big_endian_items ); @@ -287,7 +287,7 @@ TEST(Unpack_2bit_Samples_Test, CheckBigEndianShortLittleEndianByte) gr::blocks::stream_to_vector::sptr stov = gr::blocks::stream_to_vector::make( 1, raw_data.size() ); - gr::blocks::vector_sink_b::sptr sink = + gr::blocks::vector_sink_b::sptr sink = gr::blocks::vector_sink_b::make( raw_data.size() ); From d7e6b5a941d7edabcd5e5f69c870786933bba4e8 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Tue, 11 Jul 2017 12:50:20 +0200 Subject: [PATCH 060/171] Add include required by make check --- .../unit-tests/signal-processing-blocks/adapter/adapter_test.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tests/unit-tests/signal-processing-blocks/adapter/adapter_test.cc b/src/tests/unit-tests/signal-processing-blocks/adapter/adapter_test.cc index f4cbdc3d8..1fcd98d7b 100644 --- a/src/tests/unit-tests/signal-processing-blocks/adapter/adapter_test.cc +++ b/src/tests/unit-tests/signal-processing-blocks/adapter/adapter_test.cc @@ -36,6 +36,7 @@ #include #include #include +#include #include #include "byte_to_short.h" #include "ibyte_to_cbyte.h" From 15a807380ecbc30e25e4fb4c661c659675224c44 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Tue, 11 Jul 2017 12:51:19 +0200 Subject: [PATCH 061/171] List Unpack2bitSamplesTest --- src/tests/test_main.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tests/test_main.cc b/src/tests/test_main.cc index 49e9138b6..c149edc2c 100644 --- a/src/tests/test_main.cc +++ b/src/tests/test_main.cc @@ -80,6 +80,7 @@ DECLARE_string(log_dir); #include "unit-tests/signal-processing-blocks/sources/file_signal_source_test.cc" #include "unit-tests/signal-processing-blocks/sources/gnss_sdr_valve_test.cc" +#include "unit-tests/signal-processing-blocks/sources/unpack_2bit_samples_test.cc" #include "unit-tests/signal-processing-blocks/adapter/pass_through_test.cc" #include "unit-tests/signal-processing-blocks/adapter/adapter_test.cc" From 92cc77306760d04825aace2d23db27e76bcad0a6 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Tue, 11 Jul 2017 12:52:45 +0200 Subject: [PATCH 062/171] Add DataTypeAdapter tests to make check --- src/tests/CMakeLists.txt | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/tests/CMakeLists.txt b/src/tests/CMakeLists.txt index 34239d4e0..6448a5388 100644 --- a/src/tests/CMakeLists.txt +++ b/src/tests/CMakeLists.txt @@ -48,7 +48,7 @@ endif(EXISTS $ENV{OECORE_TARGET_SYSROOT}) if(NOT ${GTEST_DIR_LOCAL}) # if GTEST_DIR is not defined, we download and build it set(gtest_RELEASE 1.8.0) - + if(CMAKE_VERSION VERSION_LESS 3.2) ExternalProject_Add( gtest-${gtest_RELEASE} @@ -74,9 +74,9 @@ if(NOT ${GTEST_DIR_LOCAL}) BUILD_BYPRODUCTS ${CMAKE_CURRENT_BINARY_DIR}/../../gtest-${gtest_RELEASE}/googletest/${CMAKE_FIND_LIBRARY_PREFIXES}gtest${CMAKE_STATIC_LIBRARY_SUFFIX} ${CMAKE_CURRENT_BINARY_DIR}/../../gtest-${gtest_RELEASE}/googletest/${CMAKE_FIND_LIBRARY_PREFIXES}gtest_main${CMAKE_STATIC_LIBRARY_SUFFIX} INSTALL_COMMAND "" - ) + ) endif(CMAKE_VERSION VERSION_LESS 3.2) - + # Set up variables # Set recently downloaded and build Googletest root folder set(GTEST_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../../thirdparty/gtest/gtest-${gtest_RELEASE}/googletest") @@ -201,7 +201,7 @@ if(ENABLE_UNIT_TESTING_EXTRA OR ENABLE_SYSTEM_TESTING_EXTRA OR ENABLE_FPGA) if(NOT GPSTK_FOUND OR ENABLE_OWN_GPSTK) if(NOT ENABLE_FPGA) set(gpstk_RELEASE "2.9") - + if(CMAKE_VERSION VERSION_LESS 3.2) ExternalProject_Add( gpstk-${gpstk_RELEASE} @@ -226,7 +226,7 @@ if(ENABLE_UNIT_TESTING_EXTRA OR ENABLE_SYSTEM_TESTING_EXTRA OR ENABLE_FPGA) PATCH_COMMAND "" ) endif(CMAKE_VERSION VERSION_LESS 3.2) - + set(GPSTK_INCLUDE_DIRS ${CMAKE_CURRENT_SOURCE_DIR}/../../thirdparty/gpstk-${gpstk_RELEASE}/install/include CACHE PATH "Local GPSTK headers") add_library(gpstk UNKNOWN IMPORTED) set_property(TARGET gpstk PROPERTY IMPORTED_LOCATION ${CMAKE_CURRENT_SOURCE_DIR}/../../thirdparty/gpstk-${gpstk_RELEASE}/install/lib/${CMAKE_FIND_LIBRARY_PREFIXES}gpstk${CMAKE_SHARED_LIBRARY_SUFFIX}) @@ -561,6 +561,7 @@ if(NOT ${ENABLE_PACKAGING}) ${CMAKE_CURRENT_SOURCE_DIR}/unit-tests/signal-processing-blocks/sources/file_signal_source_test.cc ${CMAKE_CURRENT_SOURCE_DIR}/unit-tests/signal-processing-blocks/filter/fir_filter_test.cc ${CMAKE_CURRENT_SOURCE_DIR}/unit-tests/signal-processing-blocks/adapter/pass_through_test.cc + ${CMAKE_CURRENT_SOURCE_DIR}/unit-tests/signal-processing-blocks/adapter/adapter_test.cc ${CMAKE_CURRENT_SOURCE_DIR}/unit-tests/control-plane/gnss_block_factory_test.cc ) set_property(TARGET gnss_block_test PROPERTY EXCLUDE_FROM_ALL TRUE) From ec83f384bfaf6b09115e7b4ae7196df764b64412 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Wed, 12 Jul 2017 10:01:20 +0200 Subject: [PATCH 063/171] Add minor fixes --- src/tests/unit-tests/control-plane/control_thread_test.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/tests/unit-tests/control-plane/control_thread_test.cc b/src/tests/unit-tests/control-plane/control_thread_test.cc index fc9800d6c..bc9e71009 100644 --- a/src/tests/unit-tests/control-plane/control_thread_test.cc +++ b/src/tests/unit-tests/control-plane/control_thread_test.cc @@ -40,7 +40,6 @@ #include #include #include -#include #include #include #include @@ -77,7 +76,7 @@ int ControlThreadTest::stop_receiver() while(((msqid_stop = msgget(key_stop, 0644))) == -1){ } // wait for a couple of seconds - std::this_thread::sleep_until(std::chrono::system_clock::now() + std::chrono::seconds(2)); + std::this_thread::sleep_for(std::chrono::seconds(2)); // Stop the receiver msgsnd(msqid_stop, &msg_stop, msgsend_size, IPC_NOWAIT); @@ -240,7 +239,7 @@ TEST_F(ControlThreadTest, StopReceiverProgrammatically) config->set_property("PVT.implementation", "Hybrid_PVT"); config->set_property("PVT.item_type", "gr_complex"); - std::unique_ptr control_thread(new ControlThread(config)); + std::shared_ptr control_thread = std::make_shared(config); gr::msg_queue::sptr control_queue = gr::msg_queue::make(0); control_thread->set_control_queue(control_queue); From 7bc57587d871f2664507b3bc9240c6079184cc3a Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Wed, 12 Jul 2017 20:02:34 +0200 Subject: [PATCH 064/171] Fix bugs and defects detected by coverity scan --- .../adapter/adapter_test.cc | 20 ++-- .../libs/tracking_dump_reader.cc | 3 +- .../libs/tracking_dump_reader.h | 2 + .../observables/hybrid_observables_test.cc | 25 ++--- .../gps_l1_ca_telemetry_decoder_test.cc | 19 ++-- .../gps_l1_ca_dll_pll_tracking_test.cc | 102 ++++++++++-------- 6 files changed, 94 insertions(+), 77 deletions(-) diff --git a/src/tests/unit-tests/signal-processing-blocks/adapter/adapter_test.cc b/src/tests/unit-tests/signal-processing-blocks/adapter/adapter_test.cc index 1fcd98d7b..b9f1760c1 100644 --- a/src/tests/unit-tests/signal-processing-blocks/adapter/adapter_test.cc +++ b/src/tests/unit-tests/signal-processing-blocks/adapter/adapter_test.cc @@ -300,8 +300,8 @@ TEST_F(DataTypeAdapter, IbyteToCbyteValidationOfResults) std::cerr << e.code().message() << std::endl; } ifs.close(); - remove(file_name_input.c_str()); - remove(file_name_output.c_str()); + ASSERT_EQ(remove(file_name_input.c_str()), 0) << "Problem deleting temporary file"; + ASSERT_EQ(remove(file_name_output.c_str()), 0) << "Problem deleting temporary file"; } @@ -326,8 +326,8 @@ TEST_F(DataTypeAdapter, IbyteToComplexValidationOfResults) std::cerr << e.code().message() << std::endl; } ifs.close(); - remove(file_name_input.c_str()); - remove(file_name_output.c_str()); + ASSERT_EQ(remove(file_name_input.c_str()), 0) << "Problem deleting temporary file"; + ASSERT_EQ(remove(file_name_output.c_str()), 0) << "Problem deleting temporary file"; } @@ -352,8 +352,8 @@ TEST_F(DataTypeAdapter, IbyteToCshortValidationOfResults) std::cerr << e.code().message() << std::endl; } ifs.close(); - remove(file_name_input.c_str()); - remove(file_name_output.c_str()); + ASSERT_EQ(remove(file_name_input.c_str()), 0) << "Problem deleting temporary file"; + ASSERT_EQ(remove(file_name_output.c_str()), 0) << "Problem deleting temporary file"; } @@ -378,8 +378,8 @@ TEST_F(DataTypeAdapter, IshortToComplexValidationOfResults) std::cerr << e.code().message() << std::endl; } ifs.close(); - remove(file_name_input.c_str()); - remove(file_name_output.c_str()); + ASSERT_EQ(remove(file_name_input.c_str()), 0) << "Problem deleting temporary file"; + ASSERT_EQ(remove(file_name_output.c_str()), 0) << "Problem deleting temporary file"; } @@ -404,6 +404,6 @@ TEST_F(DataTypeAdapter, IshortToCshortValidationOfResults) std::cerr << e.code().message() << std::endl; } ifs.close(); - remove(file_name_input.c_str()); - remove(file_name_output.c_str()); + ASSERT_EQ(remove(file_name_input.c_str()), 0) << "Problem deleting temporary file"; + ASSERT_EQ(remove(file_name_output.c_str()), 0) << "Problem deleting temporary file"; } diff --git a/src/tests/unit-tests/signal-processing-blocks/libs/tracking_dump_reader.cc b/src/tests/unit-tests/signal-processing-blocks/libs/tracking_dump_reader.cc index 3c3c2ac85..ff981a418 100644 --- a/src/tests/unit-tests/signal-processing-blocks/libs/tracking_dump_reader.cc +++ b/src/tests/unit-tests/signal-processing-blocks/libs/tracking_dump_reader.cc @@ -52,7 +52,7 @@ bool tracking_dump_reader::read_binary_obs() d_dump_file.read((char *) &carrier_lock_test, sizeof(double)); d_dump_file.read((char *) &aux1, sizeof(double)); d_dump_file.read((char *) &aux2, sizeof(double)); - + d_dump_file.read((char *) &PRN, sizeof(unsigned int)); } catch (const std::exception &e) { @@ -61,6 +61,7 @@ bool tracking_dump_reader::read_binary_obs() return true; } + bool tracking_dump_reader::restart() { if (d_dump_file.is_open()) diff --git a/src/tests/unit-tests/signal-processing-blocks/libs/tracking_dump_reader.h b/src/tests/unit-tests/signal-processing-blocks/libs/tracking_dump_reader.h index 6ec71ebb2..1c84ed9e3 100644 --- a/src/tests/unit-tests/signal-processing-blocks/libs/tracking_dump_reader.h +++ b/src/tests/unit-tests/signal-processing-blocks/libs/tracking_dump_reader.h @@ -79,6 +79,8 @@ public: double aux1; double aux2; + unsigned int PRN; + private: std::string d_dump_filename; std::ifstream d_dump_file; diff --git a/src/tests/unit-tests/signal-processing-blocks/observables/hybrid_observables_test.cc b/src/tests/unit-tests/signal-processing-blocks/observables/hybrid_observables_test.cc index 8af9e8480..bbc5ec0af 100644 --- a/src/tests/unit-tests/signal-processing-blocks/observables/hybrid_observables_test.cc +++ b/src/tests/unit-tests/signal-processing-blocks/observables/hybrid_observables_test.cc @@ -195,11 +195,11 @@ public: int configure_generator(); int generate_signal(); void check_results( - arma::vec true_ch0_dist_m, arma::vec true_ch1_dist_m, - arma::vec true_ch0_tow_s, - arma::vec measuded_ch0_Pseudorange_m, - arma::vec measuded_ch1_Pseudorange_m, - arma::vec measuded_ch0_RX_time_s); + arma::vec & true_ch0_dist_m, arma::vec & true_ch1_dist_m, + arma::vec & true_ch0_tow_s, + arma::vec & measuded_ch0_Pseudorange_m, + arma::vec & measuded_ch1_Pseudorange_m, + arma::vec & measuded_ch0_RX_time_s); HybridObservablesTest() { @@ -303,12 +303,12 @@ void HybridObservablesTest::configure_receiver() } void HybridObservablesTest::check_results( - arma::vec true_ch0_dist_m, - arma::vec true_ch1_dist_m, - arma::vec true_ch0_tow_s, - arma::vec measuded_ch0_Pseudorange_m, - arma::vec measuded_ch1_Pseudorange_m, - arma::vec measuded_ch0_RX_time_s) + arma::vec & true_ch0_dist_m, + arma::vec & true_ch1_dist_m, + arma::vec & true_ch0_tow_s, + arma::vec & measuded_ch0_Pseudorange_m, + arma::vec & measuded_ch1_Pseudorange_m, + arma::vec & measuded_ch0_RX_time_s) { //1. True value interpolation to match the measurement times @@ -343,13 +343,14 @@ void HybridObservablesTest::check_results( double min_error = arma::min(err); //5. report - + std::streamsize ss = std::cout.precision(); std::cout << std::setprecision(10) << "Delta Observables RMSE=" << rmse << ", mean=" << error_mean << ", stdev=" << sqrt(error_var) << " (max,min)=" << max_error << "," << min_error << " [meters]" << std::endl; + std::cout.precision (ss); ASSERT_LT(rmse, 10E-3); ASSERT_LT(error_mean, 10E-3); diff --git a/src/tests/unit-tests/signal-processing-blocks/telemetry_decoder/gps_l1_ca_telemetry_decoder_test.cc b/src/tests/unit-tests/signal-processing-blocks/telemetry_decoder/gps_l1_ca_telemetry_decoder_test.cc index 8d2f75fbb..194031d98 100644 --- a/src/tests/unit-tests/signal-processing-blocks/telemetry_decoder/gps_l1_ca_telemetry_decoder_test.cc +++ b/src/tests/unit-tests/signal-processing-blocks/telemetry_decoder/gps_l1_ca_telemetry_decoder_test.cc @@ -190,10 +190,10 @@ public: int configure_generator(); int generate_signal(); - void check_results(arma::vec true_time_s, - arma::vec true_value, - arma::vec meas_time_s, - arma::vec meas_value); + void check_results(arma::vec & true_time_s, + arma::vec & true_value, + arma::vec & meas_time_s, + arma::vec & meas_value); GpsL1CATelemetryDecoderTest() { @@ -283,10 +283,10 @@ void GpsL1CATelemetryDecoderTest::configure_receiver() } -void GpsL1CATelemetryDecoderTest::check_results(arma::vec true_time_s, - arma::vec true_value, - arma::vec meas_time_s, - arma::vec meas_value) +void GpsL1CATelemetryDecoderTest::check_results(arma::vec & true_time_s, + arma::vec & true_value, + arma::vec & meas_time_s, + arma::vec & meas_value) { //1. True value interpolation to match the measurement times @@ -309,13 +309,14 @@ void GpsL1CATelemetryDecoderTest::check_results(arma::vec true_time_s, double min_error = arma::min(err); //5. report - + std::streamsize ss = std::cout.precision(); std::cout << std::setprecision(10) << "TLM TOW RMSE=" << rmse << ", mean=" << error_mean << ", stdev=" << sqrt(error_var) << " (max,min)=" << max_error << "," << min_error << " [Seconds]" << std::endl; + std::cout.precision (ss); ASSERT_LT(rmse, 0.2E-6); ASSERT_LT(error_mean, 0.2E-6); diff --git a/src/tests/unit-tests/signal-processing-blocks/tracking/gps_l1_ca_dll_pll_tracking_test.cc b/src/tests/unit-tests/signal-processing-blocks/tracking/gps_l1_ca_dll_pll_tracking_test.cc index bcb4f2396..c1eeec3cd 100644 --- a/src/tests/unit-tests/signal-processing-blocks/tracking/gps_l1_ca_dll_pll_tracking_test.cc +++ b/src/tests/unit-tests/signal-processing-blocks/tracking/gps_l1_ca_dll_pll_tracking_test.cc @@ -128,18 +128,18 @@ public: int configure_generator(); int generate_signal(); - void check_results_doppler(arma::vec true_time_s, - arma::vec true_value, - arma::vec meas_time_s, - arma::vec meas_value); - void check_results_acc_carrier_phase(arma::vec true_time_s, - arma::vec true_value, - arma::vec meas_time_s, - arma::vec meas_value); - void check_results_codephase(arma::vec true_time_s, - arma::vec true_value, - arma::vec meas_time_s, - arma::vec meas_value); + void check_results_doppler(arma::vec & true_time_s, + arma::vec & true_value, + arma::vec & meas_time_s, + arma::vec & meas_value); + void check_results_acc_carrier_phase(arma::vec & true_time_s, + arma::vec & true_value, + arma::vec & meas_time_s, + arma::vec & meas_value); + void check_results_codephase(arma::vec & true_time_s, + arma::vec & true_value, + arma::vec & meas_time_s, + arma::vec & meas_value); GpsL1CADllPllTrackingTest() { @@ -226,14 +226,22 @@ void GpsL1CADllPllTrackingTest::configure_receiver() config->set_property("Tracking_1C.early_late_space_chips", "0.5"); } -void GpsL1CADllPllTrackingTest::check_results_doppler(arma::vec true_time_s, - arma::vec true_value, - arma::vec meas_time_s, - arma::vec meas_value) + +void GpsL1CADllPllTrackingTest::check_results_doppler(arma::vec & true_time_s, + arma::vec & true_value, + arma::vec & meas_time_s, + arma::vec & meas_value) { //1. True value interpolation to match the measurement times arma::vec true_value_interp; + arma::uvec true_time_s_valid = find(true_time_s > 0); + true_time_s = true_time_s(true_time_s_valid); + true_value = true_value(true_time_s_valid); + arma::uvec meas_time_s_valid = find(meas_time_s > 0); + meas_time_s = meas_time_s(meas_time_s_valid); + meas_value = meas_value(meas_time_s_valid); + arma::interp1(true_time_s, true_value, meas_time_s, true_value_interp); //2. RMSE @@ -252,26 +260,32 @@ void GpsL1CADllPllTrackingTest::check_results_doppler(arma::vec true_time_s, double min_error = arma::min(err); //5. report - + std::streamsize ss = std::cout.precision(); std::cout << std::setprecision(10) << "TRK Doppler RMSE=" << rmse << ", mean=" << error_mean << ", stdev="<< sqrt(error_var) << " (max,min)=" << max_error << "," << min_error << " [Hz]" << std::endl; - + std::cout.precision (ss); } -void GpsL1CADllPllTrackingTest::check_results_acc_carrier_phase(arma::vec true_time_s, - arma::vec true_value, - arma::vec meas_time_s, - arma::vec meas_value) + +void GpsL1CADllPllTrackingTest::check_results_acc_carrier_phase(arma::vec & true_time_s, + arma::vec & true_value, + arma::vec & meas_time_s, + arma::vec & meas_value) { //1. True value interpolation to match the measurement times - arma::vec true_value_interp; + arma::uvec true_time_s_valid = find(true_time_s > 0); + true_time_s = true_time_s(true_time_s_valid); + true_value = true_value(true_time_s_valid); + arma::uvec meas_time_s_valid = find(meas_time_s > 0); + meas_time_s = meas_time_s(meas_time_s_valid); + meas_value = meas_value(meas_time_s_valid); + arma::interp1(true_time_s, true_value, meas_time_s, true_value_interp); //2. RMSE arma::vec err; - err = meas_value - true_value_interp; arma::vec err2 = arma::square(err); double rmse = sqrt(arma::mean(err2)); @@ -285,21 +299,28 @@ void GpsL1CADllPllTrackingTest::check_results_acc_carrier_phase(arma::vec true_t double min_error = arma::min(err); //5. report - + std::streamsize ss = std::cout.precision(); std::cout << std::setprecision(10) << "TRK acc carrier phase RMSE=" << rmse << ", mean=" << error_mean << ", stdev=" << sqrt(error_var) << " (max,min)=" << max_error << "," << min_error << " [Hz]" << std::endl; - + std::cout.precision (ss); } -void GpsL1CADllPllTrackingTest::check_results_codephase(arma::vec true_time_s, - arma::vec true_value, - arma::vec meas_time_s, - arma::vec meas_value) + +void GpsL1CADllPllTrackingTest::check_results_codephase(arma::vec & true_time_s, + arma::vec & true_value, + arma::vec & meas_time_s, + arma::vec & meas_value) { //1. True value interpolation to match the measurement times - arma::vec true_value_interp; + arma::uvec true_time_s_valid = find(true_time_s > 0); + true_time_s = true_time_s(true_time_s_valid); + true_value = true_value(true_time_s_valid); + arma::uvec meas_time_s_valid = find(meas_time_s > 0); + meas_time_s = meas_time_s(meas_time_s_valid); + meas_value = meas_value(meas_time_s_valid); + arma::interp1(true_time_s, true_value, meas_time_s, true_value_interp); //2. RMSE @@ -318,13 +339,14 @@ void GpsL1CADllPllTrackingTest::check_results_codephase(arma::vec true_time_s, double min_error = arma::min(err); //5. report - + std::streamsize ss = std::cout.precision(); std::cout << std::setprecision(10) << "TRK code phase RMSE=" << rmse << ", mean=" << error_mean << ", stdev=" << sqrt(error_var) << " (max,min)=" << max_error << "," << min_error << " [Chips]" << std::endl; - + std::cout.precision (ss); } + TEST_F(GpsL1CADllPllTrackingTest, ValidationOfResults) { // Configure the signal generator @@ -418,31 +440,23 @@ TEST_F(GpsL1CADllPllTrackingTest, ValidationOfResults) long int nepoch = true_obs_data.num_epochs(); std::cout << "True observation epochs=" << nepoch << std::endl; - - arma::vec true_timestamp_s = arma::zeros(nepoch, 1); arma::vec true_acc_carrier_phase_cycles = arma::zeros(nepoch, 1); arma::vec true_Doppler_Hz = arma::zeros(nepoch, 1); arma::vec true_prn_delay_chips = arma::zeros(nepoch, 1); arma::vec true_tow_s = arma::zeros(nepoch, 1); - long int epoch_counter = 0; while(true_obs_data.read_binary_obs()) { - - true_timestamp_s(epoch_counter) = true_obs_data.signal_timestamp_s; true_acc_carrier_phase_cycles(epoch_counter) = true_obs_data.acc_carrier_phase_cycles; true_Doppler_Hz(epoch_counter) = true_obs_data.doppler_l1_hz; true_prn_delay_chips(epoch_counter) = true_obs_data.prn_delay_chips; true_tow_s(epoch_counter) = true_obs_data.tow; epoch_counter++; - - } - //load the measured values tracking_dump_reader trk_dump; ASSERT_NO_THROW({ @@ -456,7 +470,6 @@ TEST_F(GpsL1CADllPllTrackingTest, ValidationOfResults) nepoch = trk_dump.num_epochs(); std::cout << "Measured observation epochs=" << nepoch << std::endl; - arma::vec trk_timestamp_s = arma::zeros(nepoch, 1); arma::vec trk_acc_carrier_phase_cycles = arma::zeros(nepoch, 1); arma::vec trk_Doppler_Hz = arma::zeros(nepoch, 1); @@ -469,9 +482,8 @@ TEST_F(GpsL1CADllPllTrackingTest, ValidationOfResults) trk_acc_carrier_phase_cycles(epoch_counter) = trk_dump.acc_carrier_phase_rad / GPS_TWO_PI; trk_Doppler_Hz(epoch_counter) = trk_dump.carrier_doppler_hz; - double delay_chips = GPS_L1_CA_CODE_LENGTH_CHIPS - - GPS_L1_CA_CODE_LENGTH_CHIPS - * (fmod((static_cast(trk_dump.PRN_start_sample_count) + trk_dump.aux1) / static_cast(baseband_sampling_freq), 1.0e-3) /1.0e-3); + double delay_chips = GPS_L1_CA_CODE_LENGTH_CHIPS - GPS_L1_CA_CODE_LENGTH_CHIPS + * (fmod((static_cast(trk_dump.PRN_start_sample_count) + trk_dump.aux1) / static_cast(baseband_sampling_freq), 1.0e-3) / 1.0e-3); trk_prn_delay_chips(epoch_counter) = delay_chips; epoch_counter++; From d1828721cf0bc6fb7120e516df724127a5d9d928 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Wed, 12 Jul 2017 20:12:33 +0200 Subject: [PATCH 065/171] Fix bugs and defects detected by Coverity Scan --- .../gps_l1_ca_dll_pll_tracking_test_fpga.cc | 49 ++++++++++++++----- 1 file changed, 36 insertions(+), 13 deletions(-) diff --git a/src/tests/unit-tests/signal-processing-blocks/tracking/gps_l1_ca_dll_pll_tracking_test_fpga.cc b/src/tests/unit-tests/signal-processing-blocks/tracking/gps_l1_ca_dll_pll_tracking_test_fpga.cc index 41a317d56..333b33ffe 100644 --- a/src/tests/unit-tests/signal-processing-blocks/tracking/gps_l1_ca_dll_pll_tracking_test_fpga.cc +++ b/src/tests/unit-tests/signal-processing-blocks/tracking/gps_l1_ca_dll_pll_tracking_test_fpga.cc @@ -227,12 +227,12 @@ public: int configure_generator(); int generate_signal(); - void check_results_doppler(arma::vec true_time_s, arma::vec true_value, - arma::vec meas_time_s, arma::vec meas_value); - void check_results_acc_carrier_phase(arma::vec true_time_s, - arma::vec true_value, arma::vec meas_time_s, arma::vec meas_value); - void check_results_codephase(arma::vec true_time_s, arma::vec true_value, - arma::vec meas_time_s, arma::vec meas_value); + void check_results_doppler(arma::vec & true_time_s, arma::vec & true_value, + arma::vec & meas_time_s, arma::vec & meas_value); + void check_results_acc_carrier_phase(arma::vec & true_time_s, + arma::vec & true_value, arma::vec & meas_time_s, arma::vec & meas_value); + void check_results_codephase(arma::vec & true_time_s, arma::vec & true_value, + arma::vec & meas_time_s, arma::vec & meas_value); GpsL1CADllPllTrackingTestFpga() { @@ -328,11 +328,17 @@ void GpsL1CADllPllTrackingTestFpga::configure_receiver() config->set_property("Tracking_1C.device_base", "1"); } -void GpsL1CADllPllTrackingTestFpga::check_results_doppler(arma::vec true_time_s, - arma::vec true_value, arma::vec meas_time_s, arma::vec meas_value) +void GpsL1CADllPllTrackingTestFpga::check_results_doppler(arma::vec & true_time_s, + arma::vec & true_value, arma::vec & meas_time_s, arma::vec & meas_value) { //1. True value interpolation to match the measurement times arma::vec true_value_interp; + arma::uvec true_time_s_valid = find(true_time_s > 0); + true_time_s = true_time_s(true_time_s_valid); + true_value = true_value(true_time_s_valid); + arma::uvec meas_time_s_valid = find(meas_time_s > 0); + meas_time_s = meas_time_s(meas_time_s_valid); + meas_value = meas_value(meas_time_s_valid); arma::interp1(true_time_s, true_value, meas_time_s, true_value_interp); //2. RMSE @@ -351,18 +357,26 @@ void GpsL1CADllPllTrackingTestFpga::check_results_doppler(arma::vec true_time_s, double min_error = arma::min(err); //5. report + std::streamsize ss = std::cout.precision(); std::cout << std::setprecision(10) << "TRK Doppler RMSE=" << rmse << ", mean=" << error_mean << ", stdev=" << sqrt(error_var) << " (max,min)=" << max_error << "," << min_error << " [Hz]" << std::endl; + std::cout.precision (ss); } void GpsL1CADllPllTrackingTestFpga::check_results_acc_carrier_phase( - arma::vec true_time_s, arma::vec true_value, arma::vec meas_time_s, - arma::vec meas_value) + arma::vec & true_time_s, arma::vec & true_value, arma::vec & meas_time_s, + arma::vec & meas_value) { //1. True value interpolation to match the measurement times arma::vec true_value_interp; + arma::uvec true_time_s_valid = find(true_time_s > 0); + true_time_s = true_time_s(true_time_s_valid); + true_value = true_value(true_time_s_valid); + arma::uvec meas_time_s_valid = find(meas_time_s > 0); + meas_time_s = meas_time_s(meas_time_s_valid); + meas_value = meas_value(meas_time_s_valid); arma::interp1(true_time_s, true_value, meas_time_s, true_value_interp); //2. RMSE @@ -381,19 +395,26 @@ void GpsL1CADllPllTrackingTestFpga::check_results_acc_carrier_phase( double min_error = arma::min(err); //5. report + std::streamsize ss = std::cout.precision(); std::cout << std::setprecision(10) << "TRK acc carrier phase RMSE=" << rmse << ", mean=" << error_mean << ", stdev=" << sqrt(error_var) << " (max,min)=" << max_error << "," << min_error << " [Hz]" << std::endl; - + std::cout.precision (ss); } void GpsL1CADllPllTrackingTestFpga::check_results_codephase( - arma::vec true_time_s, arma::vec true_value, arma::vec meas_time_s, - arma::vec meas_value) + arma::vec & true_time_s, arma::vec & true_value, arma::vec & meas_time_s, + arma::vec & meas_value) { //1. True value interpolation to match the measurement times arma::vec true_value_interp; + arma::uvec true_time_s_valid = find(true_time_s > 0); + true_time_s = true_time_s(true_time_s_valid); + true_value = true_value(true_time_s_valid); + arma::uvec meas_time_s_valid = find(meas_time_s > 0); + meas_time_s = meas_time_s(meas_time_s_valid); + meas_value = meas_value(meas_time_s_valid); arma::interp1(true_time_s, true_value, meas_time_s, true_value_interp); //2. RMSE @@ -411,10 +432,12 @@ void GpsL1CADllPllTrackingTestFpga::check_results_codephase( double min_error = arma::min(err); //5. report + std::streamsize ss = std::cout.precision(); std::cout << std::setprecision(10) << "TRK code phase RMSE=" << rmse << ", mean=" << error_mean << ", stdev=" << sqrt(error_var) << " (max,min)=" << max_error << "," << min_error << " [Chips]" << std::endl; + std::cout.precision (ss); } TEST_F(GpsL1CADllPllTrackingTestFpga, ValidationOfResultsFpga) From 367d65a53646809f9ec09cd4fe36d3ebe4bc5ec6 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Wed, 12 Jul 2017 21:01:46 +0200 Subject: [PATCH 066/171] Fix defect --- .../signal-processing-blocks/adapter/adapter_test.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tests/unit-tests/signal-processing-blocks/adapter/adapter_test.cc b/src/tests/unit-tests/signal-processing-blocks/adapter/adapter_test.cc index b9f1760c1..82b309112 100644 --- a/src/tests/unit-tests/signal-processing-blocks/adapter/adapter_test.cc +++ b/src/tests/unit-tests/signal-processing-blocks/adapter/adapter_test.cc @@ -274,8 +274,8 @@ TEST_F(DataTypeAdapter, ByteToShortValidationOfResults) std::cerr << e.code().message() << std::endl; } ifs.close(); - remove(file_name_input.c_str()); - remove(file_name_output.c_str()); + ASSERT_EQ(remove(file_name_input.c_str()), 0) << "Problem deleting temporary file"; + ASSERT_EQ(remove(file_name_output.c_str()), 0) << "Problem deleting temporary file"; } From a298013a2362a57a7d3908f6f11a6cb968f52a99 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Wed, 12 Jul 2017 21:24:47 +0200 Subject: [PATCH 067/171] Fix bug reading tracking dump file --- .../libs/tracking_dump_reader.cc | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/tests/unit-tests/signal-processing-blocks/libs/tracking_dump_reader.cc b/src/tests/unit-tests/signal-processing-blocks/libs/tracking_dump_reader.cc index ff981a418..853c48f8f 100644 --- a/src/tests/unit-tests/signal-processing-blocks/libs/tracking_dump_reader.cc +++ b/src/tests/unit-tests/signal-processing-blocks/libs/tracking_dump_reader.cc @@ -76,15 +76,15 @@ bool tracking_dump_reader::restart() } } + long int tracking_dump_reader::num_epochs() { std::ifstream::pos_type size; int number_of_double_vars = 11; int number_of_float_vars = 5; - int epoch_size_bytes=sizeof(unsigned long int) + - sizeof(double) * number_of_double_vars + - sizeof(float) * number_of_float_vars; - std::ifstream tmpfile( d_dump_filename.c_str(), std::ios::binary | std::ios::ate); + int epoch_size_bytes = sizeof(unsigned long int) + sizeof(double) * number_of_double_vars + + sizeof(float) * number_of_float_vars + sizeof(unsigned int); + std::ifstream tmpfile(d_dump_filename.c_str(), std::ios::binary | std::ios::ate); if (tmpfile.is_open()) { size = tmpfile.tellg(); @@ -97,6 +97,7 @@ long int tracking_dump_reader::num_epochs() } } + bool tracking_dump_reader::open_obs_file(std::string out_file) { if (d_dump_file.is_open() == false) From 4ba0dd63cbd39431b85bf10d9b96b0ec6a0c532c Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Wed, 12 Jul 2017 21:25:15 +0200 Subject: [PATCH 068/171] Update PVT block name --- src/tests/unit-tests/control-plane/control_thread_test.cc | 6 +++--- src/tests/unit-tests/control-plane/gnss_flowgraph_test.cc | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/tests/unit-tests/control-plane/control_thread_test.cc b/src/tests/unit-tests/control-plane/control_thread_test.cc index bc9e71009..686c2dc15 100644 --- a/src/tests/unit-tests/control-plane/control_thread_test.cc +++ b/src/tests/unit-tests/control-plane/control_thread_test.cc @@ -112,7 +112,7 @@ TEST_F(ControlThreadTest, InstantiateRunControlMessages) config->set_property("TelemetryDecoder_1C.item_type", "gr_complex"); config->set_property("Observables.implementation", "Hybrid_Observables"); config->set_property("Observables.item_type", "gr_complex"); - config->set_property("PVT.implementation", "Hybrid_PVT"); + config->set_property("PVT.implementation", "RTKLIB_PVT"); config->set_property("PVT.item_type", "gr_complex"); std::shared_ptr control_thread = std::make_shared(config); @@ -172,7 +172,7 @@ TEST_F(ControlThreadTest, InstantiateRunControlMessages2) config->set_property("TelemetryDecoder_1C.item_type", "gr_complex"); config->set_property("Observables.implementation", "Hybrid_Observables"); config->set_property("Observables.item_type", "gr_complex"); - config->set_property("PVT.implementation", "Hybrid_PVT"); + config->set_property("PVT.implementation", "RTKLIB_PVT"); config->set_property("PVT.item_type", "gr_complex"); std::unique_ptr control_thread2(new ControlThread(config)); @@ -236,7 +236,7 @@ TEST_F(ControlThreadTest, StopReceiverProgrammatically) config->set_property("TelemetryDecoder_1C.item_type", "gr_complex"); config->set_property("Observables.implementation", "Hybrid_Observables"); config->set_property("Observables.item_type", "gr_complex"); - config->set_property("PVT.implementation", "Hybrid_PVT"); + config->set_property("PVT.implementation", "RTKLIB_PVT"); config->set_property("PVT.item_type", "gr_complex"); std::shared_ptr control_thread = std::make_shared(config); diff --git a/src/tests/unit-tests/control-plane/gnss_flowgraph_test.cc b/src/tests/unit-tests/control-plane/gnss_flowgraph_test.cc index 1dd59576e..8c31aaca2 100644 --- a/src/tests/unit-tests/control-plane/gnss_flowgraph_test.cc +++ b/src/tests/unit-tests/control-plane/gnss_flowgraph_test.cc @@ -65,7 +65,7 @@ TEST(GNSSFlowgraph, InstantiateConnectStartStopOldNotation) config->set_property("Tracking_1C.implementation", "GPS_L1_CA_DLL_PLL_Tracking"); config->set_property("TelemetryDecoder_1C.implementation", "GPS_L1_CA_Telemetry_Decoder"); config->set_property("Observables.implementation", "Hybrid_Observables"); - config->set_property("PVT.implementation", "Hybrid_PVT"); + config->set_property("PVT.implementation", "RTKLIB_PVT"); std::shared_ptr flowgraph = std::make_shared(config, gr::msg_queue::make(0)); @@ -100,7 +100,7 @@ TEST(GNSSFlowgraph, InstantiateConnectStartStop) config->set_property("Tracking_1C.implementation", "GPS_L1_CA_DLL_PLL_Tracking"); config->set_property("TelemetryDecoder_1C.implementation", "GPS_L1_CA_Telemetry_Decoder"); config->set_property("Observables.implementation", "Hybrid_Observables"); - config->set_property("PVT.implementation", "Hybrid_PVT"); + config->set_property("PVT.implementation", "RTKLIB_PVT"); std::shared_ptr flowgraph = std::make_shared(config, gr::msg_queue::make(0)); @@ -134,7 +134,7 @@ TEST(GNSSFlowgraph, InstantiateConnectStartStopGalileoE1B) config->set_property("Tracking_1B.implementation", "Galileo_E1_DLL_PLL_VEML_Tracking"); config->set_property("TelemetryDecoder_1B.implementation", "Galileo_E1B_Telemetry_Decoder"); config->set_property("Observables.implementation", "Hybrid_Observables"); - config->set_property("PVT.implementation", "Hybrid_PVT"); + config->set_property("PVT.implementation", "RTKLIB_PVT"); std::shared_ptr flowgraph = std::make_shared(config, gr::msg_queue::make(0)); @@ -266,7 +266,7 @@ TEST(GNSSFlowgraph, InstantiateConnectStartStopHybrid) config->set_property("TelemetryDecoder_1B15.decimation_factor", "1"); config->set_property("Observables.implementation", "Hybrid_Observables"); - config->set_property("PVT.implementation", "Hybrid_PVT"); + config->set_property("PVT.implementation", "RTKLIB_PVT"); std::shared_ptr flowgraph = std::make_shared(config, gr::msg_queue::make(0)); From 196d84aca330eaaf078f39a596fc0592feccb00c Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Wed, 12 Jul 2017 21:54:47 +0200 Subject: [PATCH 069/171] Fix telemetry test --- .../libs/tlm_dump_reader.cc | 6 +++--- .../gps_l1_ca_telemetry_decoder_test.cc | 17 ++++++++++++----- 2 files changed, 15 insertions(+), 8 deletions(-) diff --git a/src/tests/unit-tests/signal-processing-blocks/libs/tlm_dump_reader.cc b/src/tests/unit-tests/signal-processing-blocks/libs/tlm_dump_reader.cc index e480699f7..d6f38553b 100644 --- a/src/tests/unit-tests/signal-processing-blocks/libs/tlm_dump_reader.cc +++ b/src/tests/unit-tests/signal-processing-blocks/libs/tlm_dump_reader.cc @@ -35,7 +35,7 @@ bool tlm_dump_reader::read_binary_obs() try { d_dump_file.read((char *) &TOW_at_current_symbol, sizeof(double)); - d_dump_file.read((char *) &Tracking_sample_counter, sizeof(double)); + d_dump_file.read((char *) &Tracking_sample_counter, sizeof(unsigned long int)); d_dump_file.read((char *) &d_TOW_at_Preamble, sizeof(double)); } catch (const std::ifstream::failure &e) @@ -62,8 +62,8 @@ bool tlm_dump_reader::restart() long int tlm_dump_reader::num_epochs() { std::ifstream::pos_type size; - int number_of_vars_in_epoch = 3; - int epoch_size_bytes = sizeof(double) * number_of_vars_in_epoch; + int number_of_vars_in_epoch = 2; + int epoch_size_bytes = sizeof(double) * number_of_vars_in_epoch + sizeof(unsigned long int); std::ifstream tmpfile( d_dump_filename.c_str(), std::ios::binary | std::ios::ate); if (tmpfile.is_open()) { diff --git a/src/tests/unit-tests/signal-processing-blocks/telemetry_decoder/gps_l1_ca_telemetry_decoder_test.cc b/src/tests/unit-tests/signal-processing-blocks/telemetry_decoder/gps_l1_ca_telemetry_decoder_test.cc index 194031d98..3cd015762 100644 --- a/src/tests/unit-tests/signal-processing-blocks/telemetry_decoder/gps_l1_ca_telemetry_decoder_test.cc +++ b/src/tests/unit-tests/signal-processing-blocks/telemetry_decoder/gps_l1_ca_telemetry_decoder_test.cc @@ -215,6 +215,7 @@ public: size_t item_size; }; + int GpsL1CATelemetryDecoderTest::configure_generator() { // Configure signal generator @@ -279,24 +280,29 @@ void GpsL1CATelemetryDecoderTest::configure_receiver() config->set_property("Tracking_1C.early_late_space_chips", "0.5"); config->set_property("TelemetryDecoder_1C.dump","true"); - config->set_property("TelemetryDecoder_1C.decimation_factor","1"); - } + void GpsL1CATelemetryDecoderTest::check_results(arma::vec & true_time_s, arma::vec & true_value, arma::vec & meas_time_s, arma::vec & meas_value) { //1. True value interpolation to match the measurement times - arma::vec true_value_interp; + arma::uvec true_time_s_valid = find(true_time_s > 0); + true_time_s = true_time_s(true_time_s_valid); + true_value = true_value(true_time_s_valid); + arma::uvec meas_time_s_valid = find(meas_time_s > 0); + meas_time_s = meas_time_s(meas_time_s_valid); + meas_value = meas_value(meas_time_s_valid); + arma::interp1(true_time_s, true_value, meas_time_s, true_value_interp); //2. RMSE arma::vec err; - err = meas_value - true_value_interp; + err = meas_value - true_value_interp + 0.001; arma::vec err2 = arma::square(err); double rmse = sqrt(arma::mean(err2)); @@ -326,6 +332,7 @@ void GpsL1CATelemetryDecoderTest::check_results(arma::vec & true_time_s, ASSERT_GT(min_error, -0.5E-6); } + TEST_F(GpsL1CATelemetryDecoderTest, ValidationOfResults) { // Configure the signal generator @@ -468,7 +475,7 @@ TEST_F(GpsL1CATelemetryDecoderTest, ValidationOfResults) //Cut measurement initial transitory of the measurements arma::uvec initial_meas_point = arma::find(tlm_tow_s >= true_tow_s(0), 1, "first"); - + ASSERT_EQ(initial_meas_point.is_empty(), false); tlm_timestamp_s = tlm_timestamp_s.subvec(initial_meas_point(0), tlm_timestamp_s.size() - 1); tlm_tow_s = tlm_tow_s.subvec(initial_meas_point(0), tlm_tow_s.size() - 1); From 95ee55d34cadf0e5e50786da127b47d4f1bcea99 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Thu, 13 Jul 2017 17:28:08 +0200 Subject: [PATCH 070/171] Update GFlags to version 2.2.1 --- CMakeLists.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index cab613523..110b570d6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -564,7 +564,7 @@ if(NOT VOLK_GNSSSDR_FOUND) UPDATE_COMMAND "" PATCH_COMMAND "" BUILD_COMMAND ${VOLK_GNSSSDR_BUILD_COMMAND} volk_gnsssdr_profile - INSTALL_DIR ${CMAKE_CURRENT_BINARY_DIR}/volk_gnsssdr_module/install + INSTALL_DIR ${CMAKE_CURRENT_BINARY_DIR}/volk_gnsssdr_module/install ) else(CMAKE_VERSION VERSION_LESS 3.2) ExternalProject_Add(volk_gnsssdr_module @@ -578,7 +578,7 @@ if(NOT VOLK_GNSSSDR_FOUND) BUILD_COMMAND ${VOLK_GNSSSDR_BUILD_COMMAND} volk_gnsssdr_profile BUILD_BYPRODUCTS ${CMAKE_CURRENT_BINARY_DIR}/volk_gnsssdr_module/install/lib/${CMAKE_FIND_LIBRARY_PREFIXES}volk_gnsssdr${CMAKE_STATIC_LIBRARY_SUFFIX} ${CMAKE_CURRENT_BINARY_DIR}/volk_gnsssdr_module/install/bin/volk_gnsssdr_profile - INSTALL_DIR ${CMAKE_CURRENT_BINARY_DIR}/volk_gnsssdr_module/install + INSTALL_DIR ${CMAKE_CURRENT_BINARY_DIR}/volk_gnsssdr_module/install ) endif(CMAKE_VERSION VERSION_LESS 3.2) find_package(ORC) @@ -602,7 +602,7 @@ if(NOT VOLK_GNSSSDR_FOUND) ${CMAKE_SOURCE_DIR}/install/volk_gnsssdr_profile BYPRODUCTS ${CMAKE_SOURCE_DIR}/install/volk_gnsssdr_profile) endif(CMAKE_VERSION VERSION_LESS 3.2) - + add_custom_command(TARGET volk_gnsssdr_module POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/volk_gnsssdr_module/install/bin/volk_gnsssdr-config-info ${CMAKE_SOURCE_DIR}/install/volk_gnsssdr-config-info) @@ -614,13 +614,13 @@ endif(NOT VOLK_GNSSSDR_FOUND) # gflags - https://github.com/gflags/gflags ################################################################################ set(LOCAL_GFLAGS false) -set(gflags_RELEASE 2.2.0) +set(gflags_RELEASE 2.2.1) find_package(GFlags) if (NOT GFlags_FOUND) message (STATUS " gflags library has not been found.") message (STATUS " gflags will be downloaded and built automatically ") message (STATUS " when doing 'make'. ") - + if(CMAKE_VERSION VERSION_LESS 3.2) ExternalProject_Add( gflags-${gflags_RELEASE} @@ -651,7 +651,7 @@ if (NOT GFlags_FOUND) INSTALL_COMMAND "" ) endif(CMAKE_VERSION VERSION_LESS 3.2) - + set(GFlags_INCLUDE_DIRS ${CMAKE_CURRENT_BINARY_DIR}/gflags-${gflags_RELEASE}/include CACHE PATH "Local Gflags headers" ) @@ -983,7 +983,7 @@ if(NOT ARMADILLO_FOUND OR ENABLE_OWN_ARMADILLO) BUILD_COMMAND ${CMAKE_MAKE_PROGRAM} UPDATE_COMMAND "" INSTALL_COMMAND "" - ) + ) else(CMAKE_VERSION VERSION_LESS 3.2) ExternalProject_Add( armadillo-${armadillo_RELEASE} From 45ef1db39ecd689a67da09d5ac2cf3b76e3b368f Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Sun, 23 Jul 2017 21:09:41 +0200 Subject: [PATCH 071/171] Add verbose build for volk_gnsssdr when packaging. This solves warning https://qa.debian.org/bls/bytag/W-compiler-flags-hidden.html raised by blhc --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 110b570d6..045e6e7b9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -518,7 +518,7 @@ if(NOT VOLK_GNSSSDR_FOUND) if(ENABLE_PACKAGING) if(CMAKE_COMPILER_IS_GNUCXX AND NOT WIN32) - set(STRIP_VOLK_GNSSSDR_PROFILE "-DENABLE_STRIP=ON") + set(STRIP_VOLK_GNSSSDR_PROFILE "-DENABLE_STRIP=ON -DCMAKE_VERBOSE_MAKEFILE=ON") endif(CMAKE_COMPILER_IS_GNUCXX AND NOT WIN32) endif(ENABLE_PACKAGING) From 1dda344e463a101eaaaa8afe881eb53de1676ee1 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Sun, 23 Jul 2017 23:40:40 +0200 Subject: [PATCH 072/171] Fix -Wmisleading-indentation warning --- src/algorithms/libs/rtklib/rtklib_rtkcmn.cc | 12 ++++++++++-- src/algorithms/libs/rtklib/rtklib_rtkpos.cc | 13 ++++++++++--- 2 files changed, 20 insertions(+), 5 deletions(-) diff --git a/src/algorithms/libs/rtklib/rtklib_rtkcmn.cc b/src/algorithms/libs/rtklib/rtklib_rtkcmn.cc index dbfbebdfd..8120152fa 100644 --- a/src/algorithms/libs/rtklib/rtklib_rtkcmn.cc +++ b/src/algorithms/libs/rtklib/rtklib_rtkcmn.cc @@ -1170,7 +1170,11 @@ double str2num(const char *s, int i, int n) char str[256], *p = str; if (i<0 || (int)strlen(s)= 0; s++) *p++=*s == 'd' || *s == 'D' ? 'E' : *s; *p = '\0'; + for (s += i; *s && --n >= 0; s++) + { + *p++=*s == 'd' || *s == 'D' ? 'E' : *s; + } + *p = '\0'; return sscanf(str, "%lf", &value) == 1 ? value : 0.0; } @@ -1188,7 +1192,11 @@ int str2time(const char *s, int i, int n, gtime_t *t) char str[256], *p = str; if (i<0 || (int)strlen(s)= 0;) *p++=*s++; *p = '\0'; + for (s += i; *s && --n >= 0;) + { + *p++=*s++; + } + *p = '\0'; if (sscanf(str, "%lf %lf %lf %lf %lf %lf", ep, ep+1, ep+2, ep+3, ep+4, ep+5)<6) return -1; if (ep[0]<100.0) ep[0] += ep[0]<80.0 ? 2000.0 : 1900.0; diff --git a/src/algorithms/libs/rtklib/rtklib_rtkpos.cc b/src/algorithms/libs/rtklib/rtklib_rtkpos.cc index 2ced73641..850fa37ae 100644 --- a/src/algorithms/libs/rtklib/rtklib_rtkpos.cc +++ b/src/algorithms/libs/rtklib/rtklib_rtkpos.cc @@ -585,7 +585,11 @@ void udpos(rtk_t *rtk, double tt) return; } /* check variance of estimated postion */ - for (i = 0;i<3;i++) var += rtk->P[i+i*rtk->nx]; var/=3.0; + for (i = 0;i<3;i++) + { + var += rtk->P[i+i*rtk->nx]; + } + var /= 3.0; if (var>VAR_POS) { @@ -1178,8 +1182,11 @@ int constbl(rtk_t *rtk, const double *x, const double *P, double *v, /* approximate variance of solution */ if (P) { - for (i = 0;i<3;i++) var+=P[i+i*rtk->nx]; - var/=3.0; + for (i = 0;i<3;i++) + { + var += P[i+i*rtk->nx]; + } + var /= 3.0; } /* check nonlinearity */ if (var>thres*thres*bb*bb) From 4642408066a0aaeccaa156c8e652c0caff84ee4e Mon Sep 17 00:00:00 2001 From: Javier Arribas Date: Tue, 25 Jul 2017 16:12:10 +0200 Subject: [PATCH 073/171] Adding exception handlings to tracking destructor operations --- .../galileo_e1_dll_pll_veml_tracking_cc.cc | 27 ++++++++++---- .../galileo_e1_tcp_connector_tracking_cc.cc | 29 +++++++++++---- .../galileo_e5a_dll_pll_tracking_cc.cc | 37 ++++++++++++------- .../gps_l1_ca_dll_pll_c_aid_tracking_cc.cc | 27 ++++++++++---- ...ps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc | 30 ++++++++++----- .../gps_l1_ca_dll_pll_c_aid_tracking_sc.cc | 29 +++++++++++---- .../gps_l1_ca_dll_pll_tracking_cc.cc | 28 ++++++++++---- .../gps_l1_ca_dll_pll_tracking_gpu_cc.cc | 31 ++++++++++++---- .../gps_l1_ca_tcp_connector_tracking_cc.cc | 30 ++++++++++----- .../gps_l2_m_dll_pll_tracking_cc.cc | 27 ++++++++++---- 10 files changed, 211 insertions(+), 84 deletions(-) diff --git a/src/algorithms/tracking/gnuradio_blocks/galileo_e1_dll_pll_veml_tracking_cc.cc b/src/algorithms/tracking/gnuradio_blocks/galileo_e1_dll_pll_veml_tracking_cc.cc index a16eaaa0a..c611bbb9c 100755 --- a/src/algorithms/tracking/gnuradio_blocks/galileo_e1_dll_pll_veml_tracking_cc.cc +++ b/src/algorithms/tracking/gnuradio_blocks/galileo_e1_dll_pll_veml_tracking_cc.cc @@ -251,14 +251,27 @@ void galileo_e1_dll_pll_veml_tracking_cc::start_tracking() galileo_e1_dll_pll_veml_tracking_cc::~galileo_e1_dll_pll_veml_tracking_cc() { - d_dump_file.close(); + if (d_dump_file.is_open()) + { + try + { + d_dump_file.close(); + }catch(const std::exception & ex) + { + LOG(WARNING)<<"Exception in destructor "<free(); + if (d_dump_file.is_open()) + { + try + { + d_dump_file.close(); + }catch(const std::exception & ex) + { + LOG(WARNING)<<"Exception in destructor "<free(); + }catch(const std::exception & ex) + { + LOG(WARNING)<<"Exception in destructor "<free_cuda(); - delete[] d_Prompt_buffer; - delete(multicorrelator_gpu); + if (d_dump_file.is_open()) + { + try + { + d_dump_file.close(); + }catch(const std::exception & ex) + { + LOG(WARNING)<<"Exception in destructor "<free_cuda(); + delete(multicorrelator_gpu); + }catch(const std::exception & ex) + { + LOG(WARNING)<<"Exception in destructor "< Date: Tue, 25 Jul 2017 16:26:23 +0200 Subject: [PATCH 074/171] Make code more readable --- ...ps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc | 502 ++++++------------ 1 file changed, 172 insertions(+), 330 deletions(-) diff --git a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc index e466898a6..2cd520341 100644 --- a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc +++ b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc @@ -76,8 +76,8 @@ void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::msg_handler_preamble_index( pmt::pmt_t msg) { DLOG(INFO) << "Extended correlation enabled for Tracking CH " - << d_channel << ": Satellite " - << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN); + << d_channel << ": Satellite " + << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN); if (d_enable_extended_integration == false) //avoid re-setting preamble indicator { d_preamble_timestamp_s = pmt::to_double(msg); @@ -127,34 +127,29 @@ gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::gps_l1_ca_dll_pll_c_aid_tracking_fpga_ // Initialization of local code replica // Get space for a vector with the C/A code replica sampled 1x/chip - d_ca_code = static_cast(volk_gnsssdr_malloc( - static_cast(GPS_L1_CA_CODE_LENGTH_CHIPS) * sizeof(gr_complex), - volk_gnsssdr_get_alignment())); - d_ca_code_16sc = static_cast(volk_gnsssdr_malloc( - static_cast(GPS_L1_CA_CODE_LENGTH_CHIPS) * sizeof(lv_16sc_t), - volk_gnsssdr_get_alignment())); + d_ca_code = static_cast(volk_gnsssdr_malloc(static_cast(GPS_L1_CA_CODE_LENGTH_CHIPS) * sizeof(gr_complex), volk_gnsssdr_get_alignment())); + d_ca_code_16sc = static_cast(volk_gnsssdr_malloc(static_cast(GPS_L1_CA_CODE_LENGTH_CHIPS) * sizeof(lv_16sc_t), volk_gnsssdr_get_alignment())); // correlator outputs (scalar) d_n_correlator_taps = 3; // Early, Prompt, and Late - d_correlator_outs_16sc = static_cast(volk_gnsssdr_malloc( - d_n_correlator_taps * sizeof(lv_16sc_t), + d_correlator_outs_16sc = static_cast(volk_gnsssdr_malloc(d_n_correlator_taps * sizeof(lv_16sc_t), volk_gnsssdr_get_alignment())); + for (int n = 0; n < d_n_correlator_taps; n++) { d_correlator_outs_16sc[n] = lv_cmake(0, 0); } - d_local_code_shift_chips = static_cast(volk_gnsssdr_malloc( - d_n_correlator_taps * sizeof(float), volk_gnsssdr_get_alignment())); + d_local_code_shift_chips = static_cast(volk_gnsssdr_malloc(d_n_correlator_taps * sizeof(float), volk_gnsssdr_get_alignment())); + // Set TAPs delay values [chips] d_local_code_shift_chips[0] = -d_early_late_spc_chips; d_local_code_shift_chips[1] = 0.0; d_local_code_shift_chips[2] = d_early_late_spc_chips; // create multicorrelator class - multicorrelator_fpga_8sc = std::make_shared < fpga_multicorrelator_8sc - > (d_n_correlator_taps, device_name, device_base); + multicorrelator_fpga_8sc = std::make_shared (d_n_correlator_taps, device_name, device_base); //--- Perform initializations ------------------------------ // define initial code frequency basis of NCO @@ -217,55 +212,41 @@ void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::start_tracking() long int acq_trk_diff_samples; double acq_trk_diff_seconds; - acq_trk_diff_samples = static_cast(d_sample_counter) - - static_cast(d_acq_sample_stamp); //-d_vector_length; - DLOG(INFO) << "Number of samples between Acquisition and Tracking =" - << acq_trk_diff_samples; - acq_trk_diff_seconds = static_cast(acq_trk_diff_samples) - / static_cast(d_fs_in); + acq_trk_diff_samples = static_cast(d_sample_counter) - static_cast(d_acq_sample_stamp); + DLOG(INFO) << "Number of samples between Acquisition and Tracking =" << acq_trk_diff_samples; + acq_trk_diff_seconds = static_cast(acq_trk_diff_samples) / static_cast(d_fs_in); // Doppler effect // Fd=(C/(C+Vr))*F - double radial_velocity = (GPS_L1_FREQ_HZ + d_acq_carrier_doppler_hz) - / GPS_L1_FREQ_HZ; + double radial_velocity = (GPS_L1_FREQ_HZ + d_acq_carrier_doppler_hz) / GPS_L1_FREQ_HZ; // new chip and prn sequence periods based on acq Doppler double T_chip_mod_seconds; double T_prn_mod_seconds; double T_prn_mod_samples; d_code_freq_chips = radial_velocity * GPS_L1_CA_CODE_RATE_HZ; - d_code_phase_step_chips = static_cast(d_code_freq_chips) - / static_cast(d_fs_in); + d_code_phase_step_chips = static_cast(d_code_freq_chips) / static_cast(d_fs_in); T_chip_mod_seconds = 1.0 / d_code_freq_chips; T_prn_mod_seconds = T_chip_mod_seconds * GPS_L1_CA_CODE_LENGTH_CHIPS; T_prn_mod_samples = T_prn_mod_seconds * static_cast(d_fs_in); d_correlation_length_samples = round(T_prn_mod_samples); - double T_prn_true_seconds = GPS_L1_CA_CODE_LENGTH_CHIPS - / GPS_L1_CA_CODE_RATE_HZ; - double T_prn_true_samples = T_prn_true_seconds - * static_cast(d_fs_in); + double T_prn_true_seconds = GPS_L1_CA_CODE_LENGTH_CHIPS / GPS_L1_CA_CODE_RATE_HZ; + double T_prn_true_samples = T_prn_true_seconds * static_cast(d_fs_in); double T_prn_diff_seconds = T_prn_true_seconds - T_prn_mod_seconds; double N_prn_diff = acq_trk_diff_seconds / T_prn_true_seconds; double corrected_acq_phase_samples, delay_correction_samples; - corrected_acq_phase_samples = fmod( - (d_acq_code_phase_samples - + T_prn_diff_seconds * N_prn_diff - * static_cast(d_fs_in)), - T_prn_true_samples); + corrected_acq_phase_samples = fmod((d_acq_code_phase_samples + T_prn_diff_seconds * N_prn_diff * static_cast(d_fs_in)), T_prn_true_samples); if (corrected_acq_phase_samples < 0) { - corrected_acq_phase_samples = T_prn_mod_samples - + corrected_acq_phase_samples; + corrected_acq_phase_samples = T_prn_mod_samples + corrected_acq_phase_samples; } - delay_correction_samples = d_acq_code_phase_samples - - corrected_acq_phase_samples; + delay_correction_samples = d_acq_code_phase_samples - corrected_acq_phase_samples; d_acq_code_phase_samples = corrected_acq_phase_samples; d_carrier_doppler_hz = d_acq_carrier_doppler_hz; - d_carrier_phase_step_rad = GPS_TWO_PI * d_carrier_doppler_hz - / static_cast(d_fs_in); + d_carrier_phase_step_rad = GPS_TWO_PI * d_carrier_doppler_hz / static_cast(d_fs_in); // DLL/PLL filter initialization d_carrier_loop_filter.initialize(d_acq_carrier_doppler_hz); // The carrier loop filter implements the Doppler accumulator @@ -273,12 +254,9 @@ void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::start_tracking() // generate local reference ALWAYS starting at chip 1 (1 sample per chip) gps_l1_ca_code_gen_complex(d_ca_code, d_acquisition_gnss_synchro->PRN, 0); - volk_gnsssdr_32fc_convert_16ic(d_ca_code_16sc, d_ca_code, - static_cast(GPS_L1_CA_CODE_LENGTH_CHIPS)); + volk_gnsssdr_32fc_convert_16ic(d_ca_code_16sc, d_ca_code, static_cast(GPS_L1_CA_CODE_LENGTH_CHIPS)); - multicorrelator_fpga_8sc->set_local_code_and_taps( - static_cast(GPS_L1_CA_CODE_LENGTH_CHIPS), d_ca_code_16sc, - d_local_code_shift_chips); + multicorrelator_fpga_8sc->set_local_code_and_taps(static_cast(GPS_L1_CA_CODE_LENGTH_CHIPS), d_ca_code_16sc, d_local_code_shift_chips); for (int n = 0; n < d_n_correlator_taps; n++) { d_correlator_outs_16sc[n] = lv_16sc_t(0, 0); @@ -297,11 +275,11 @@ void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::start_tracking() // DEBUG OUTPUT std::cout << "Tracking start on channel " << d_channel << " for satellite " - << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) - << std::endl; + << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) + << std::endl; LOG(INFO) << "Starting tracking of satellite " - << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) - << " on channel " << d_channel; + << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) + << " on channel " << d_channel; // enable tracking d_pull_in = true; @@ -313,22 +291,37 @@ void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::start_tracking() multicorrelator_fpga_8sc->lock_channel(); LOG(INFO) << "PULL-IN Doppler [Hz]=" << d_carrier_doppler_hz - << " Code Phase correction [samples]=" << delay_correction_samples - << " PULL-IN Code Phase [samples]=" << d_acq_code_phase_samples; + << " Code Phase correction [samples]=" << delay_correction_samples + << " PULL-IN Code Phase [samples]=" << d_acq_code_phase_samples; } gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::~gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc() { - d_dump_file.close(); - - volk_gnsssdr_free(d_local_code_shift_chips); - volk_gnsssdr_free(d_ca_code); - volk_gnsssdr_free(d_ca_code_16sc); - volk_gnsssdr_free(d_correlator_outs_16sc); - - delete[] d_Prompt_buffer; - multicorrelator_fpga_8sc->free(); + if (d_dump_file.is_open()) + { + try + { + d_dump_file.close(); + } + catch(const std::exception & ex) + { + LOG(WARNING)<< "Exception in destructor " << ex.what(); + } + } + try + { + volk_gnsssdr_free(d_local_code_shift_chips); + volk_gnsssdr_free(d_ca_code); + volk_gnsssdr_free(d_ca_code_16sc); + volk_gnsssdr_free(d_correlator_outs_16sc); + delete[] d_Prompt_buffer; + multicorrelator_fpga_8sc->free(); + } + catch(const std::exception & ex) + { + LOG(WARNING) << "Exception in destructor " << ex.what(); + } } @@ -360,39 +353,27 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work( { double acq_trk_shif_correction_samples; int acq_to_trk_delay_samples; - acq_to_trk_delay_samples = d_sample_counter - - d_acq_sample_stamp; - acq_trk_shif_correction_samples = - d_correlation_length_samples - - fmod( - static_cast(acq_to_trk_delay_samples), - static_cast(d_correlation_length_samples)); - samples_offset = round( - d_acq_code_phase_samples - + acq_trk_shif_correction_samples); - current_synchro_data.Tracking_sample_counter = - d_sample_counter + samples_offset; + acq_to_trk_delay_samples = d_sample_counter - d_acq_sample_stamp; + acq_trk_shif_correction_samples = d_correlation_length_samples - fmod( static_cast(acq_to_trk_delay_samples), static_cast(d_correlation_length_samples)); + samples_offset = round(d_acq_code_phase_samples + acq_trk_shif_correction_samples); + current_synchro_data.Tracking_sample_counter = d_sample_counter + samples_offset; d_sample_counter += samples_offset; // count for the processed samples d_pull_in = false; - d_acc_carrier_phase_cycles -= d_carrier_phase_step_rad - * samples_offset / GPS_TWO_PI; - current_synchro_data.Carrier_phase_rads = - d_acc_carrier_phase_cycles * GPS_TWO_PI; - current_synchro_data.Carrier_Doppler_hz = - d_carrier_doppler_hz; + d_acc_carrier_phase_cycles -= d_carrier_phase_step_rad * samples_offset / GPS_TWO_PI; + current_synchro_data.Carrier_phase_rads = d_acc_carrier_phase_cycles * GPS_TWO_PI; + current_synchro_data.Carrier_Doppler_hz = d_carrier_doppler_hz; current_synchro_data.fs = d_fs_in; *out[0] = current_synchro_data; //consume_each(samples_offset); // shift input to perform alignment with local replica - multicorrelator_fpga_8sc->set_initial_sample( - samples_offset); + multicorrelator_fpga_8sc->set_initial_sample(samples_offset); return 1; } // ################# CARRIER WIPEOFF AND CORRELATORS ############################## // perform carrier wipe-off and compute Early, Prompt and Late correlation - multicorrelator_fpga_8sc->set_output_vectors( - d_correlator_outs_16sc); + multicorrelator_fpga_8sc->set_output_vectors(d_correlator_outs_16sc); + multicorrelator_fpga_8sc->Carrier_wipeoff_multicorrelator_resampler( d_rem_carrier_phase_rad, d_carrier_phase_step_rad, d_rem_code_phase_chips, d_code_phase_step_chips, @@ -414,14 +395,8 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work( bool enable_dll_pll; if (d_enable_extended_integration == true) { - long int symbol_diff = round( - 1000.0 - * ((static_cast(d_sample_counter) - + d_rem_code_phase_samples) - / static_cast(d_fs_in) - - d_preamble_timestamp_s)); - if (symbol_diff > 0 - and symbol_diff % d_extend_correlation_ms == 0) + long int symbol_diff = round(1000.0 * ((static_cast(d_sample_counter) + d_rem_code_phase_samples) / static_cast(d_fs_in) - d_preamble_timestamp_s)); + if (symbol_diff > 0 and symbol_diff % d_extend_correlation_ms == 0) { // compute coherent integration and enable tracking loop // perform coherent integration using correlator output history @@ -431,40 +406,32 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work( d_correlator_outs_16sc[2] = lv_cmake(0, 0); for (int n = 0; n < d_extend_correlation_ms; n++) { - d_correlator_outs_16sc[0] += d_E_history.at( - n); - d_correlator_outs_16sc[1] += d_P_history.at( - n); - d_correlator_outs_16sc[2] += d_L_history.at( - n); + d_correlator_outs_16sc[0] += d_E_history.at(n); + d_correlator_outs_16sc[1] += d_P_history.at(n); + d_correlator_outs_16sc[2] += d_L_history.at(n); } if (d_preamble_synchronized == false) { - d_code_loop_filter.set_DLL_BW( - d_dll_bw_narrow_hz); - d_carrier_loop_filter.set_params(10.0, - d_pll_bw_narrow_hz, 2); + d_code_loop_filter.set_DLL_BW(d_dll_bw_narrow_hz); + d_carrier_loop_filter.set_params(10.0, d_pll_bw_narrow_hz, 2); d_preamble_synchronized = true; std::cout << "Enabled " - << d_extend_correlation_ms - << " [ms] extended correlator for CH " - << d_channel << " : Satellite " - << Gnss_Satellite(systemName[sys], - d_acquisition_gnss_synchro->PRN) - << " pll_bw = " << d_pll_bw_hz - << " [Hz], pll_narrow_bw = " - << d_pll_bw_narrow_hz << " [Hz]" - << std::endl << " dll_bw = " - << d_dll_bw_hz - << " [Hz], dll_narrow_bw = " - << d_dll_bw_narrow_hz << " [Hz]" - << std::endl; + << d_extend_correlation_ms + << " [ms] extended correlator for CH " + << d_channel << " : Satellite " + << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) + << " pll_bw = " << d_pll_bw_hz + << " [Hz], pll_narrow_bw = " + << d_pll_bw_narrow_hz << " [Hz]" + << std::endl << " dll_bw = " + << d_dll_bw_hz + << " [Hz], dll_narrow_bw = " + << d_dll_bw_narrow_hz << " [Hz]" + << std::endl; } // UPDATE INTEGRATION TIME - CURRENT_INTEGRATION_TIME_S = - static_cast(d_extend_correlation_ms) - * GPS_L1_CA_CODE_PERIOD; + CURRENT_INTEGRATION_TIME_S = static_cast(d_extend_correlation_ms) * GPS_L1_CA_CODE_PERIOD; enable_dll_pll = true; } else @@ -473,49 +440,25 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work( { // continue extended coherent correlation // Compute the next buffer length based on the period of the PRN sequence and the code phase error estimation - double T_chip_seconds = 1.0 - / d_code_freq_chips; - double T_prn_seconds = T_chip_seconds - * GPS_L1_CA_CODE_LENGTH_CHIPS; - double T_prn_samples = T_prn_seconds - * static_cast(d_fs_in); + double T_chip_seconds = 1.0 / d_code_freq_chips; + double T_prn_seconds = T_chip_seconds * GPS_L1_CA_CODE_LENGTH_CHIPS; + double T_prn_samples = T_prn_seconds * static_cast(d_fs_in); int K_prn_samples = round(T_prn_samples); - double K_T_prn_error_samples = K_prn_samples - - T_prn_samples; + double K_T_prn_error_samples = K_prn_samples - T_prn_samples; - d_rem_code_phase_samples = - d_rem_code_phase_samples - - K_T_prn_error_samples; - d_rem_code_phase_integer_samples = round( - d_rem_code_phase_samples); // round to a discrete number of samples - d_correlation_length_samples = K_prn_samples - + d_rem_code_phase_integer_samples; - d_rem_code_phase_samples = - d_rem_code_phase_samples - - d_rem_code_phase_integer_samples; + d_rem_code_phase_samples = d_rem_code_phase_samples - K_T_prn_error_samples; + d_rem_code_phase_integer_samples = round(d_rem_code_phase_samples); // round to a discrete number of samples + d_correlation_length_samples = K_prn_samples + d_rem_code_phase_integer_samples; + d_rem_code_phase_samples = d_rem_code_phase_samples - d_rem_code_phase_integer_samples; // code phase step (Code resampler phase increment per sample) [chips/sample] - d_code_phase_step_chips = d_code_freq_chips - / static_cast(d_fs_in); + d_code_phase_step_chips = d_code_freq_chips / static_cast(d_fs_in); // remnant code phase [chips] - d_rem_code_phase_chips = - d_rem_code_phase_samples - * (d_code_freq_chips - / static_cast(d_fs_in)); - d_rem_carrier_phase_rad = - fmod( - d_rem_carrier_phase_rad - + d_carrier_phase_step_rad - * static_cast(d_correlation_length_samples), - GPS_TWO_PI); + d_rem_code_phase_chips = d_rem_code_phase_samples * (d_code_freq_chips / static_cast(d_fs_in)); + d_rem_carrier_phase_rad = fmod(d_rem_carrier_phase_rad + d_carrier_phase_step_rad * static_cast(d_correlation_length_samples), GPS_TWO_PI); // UPDATE ACCUMULATED CARRIER PHASE - CORRECTED_INTEGRATION_TIME_S = - (static_cast(d_correlation_length_samples) - / static_cast(d_fs_in)); - d_acc_carrier_phase_cycles -= - d_carrier_phase_step_rad - * d_correlation_length_samples - / GPS_TWO_PI; + CORRECTED_INTEGRATION_TIME_S = (static_cast(d_correlation_length_samples) / static_cast(d_fs_in)); + d_acc_carrier_phase_cycles -= d_carrier_phase_step_rad * d_correlation_length_samples / GPS_TWO_PI; // disable tracking loop and inform telemetry decoder enable_dll_pll = false; @@ -524,9 +467,7 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work( { // perform basic (1ms) correlation // UPDATE INTEGRATION TIME - CURRENT_INTEGRATION_TIME_S = - static_cast(d_correlation_length_samples) - / static_cast(d_fs_in); + CURRENT_INTEGRATION_TIME_S = static_cast(d_correlation_length_samples) / static_cast(d_fs_in); enable_dll_pll = true; } } @@ -534,9 +475,7 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work( else { // UPDATE INTEGRATION TIME - CURRENT_INTEGRATION_TIME_S = - static_cast(d_correlation_length_samples) - / static_cast(d_fs_in); + CURRENT_INTEGRATION_TIME_S = static_cast(d_correlation_length_samples) / static_cast(d_fs_in); enable_dll_pll = true; } @@ -544,26 +483,16 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work( { // ################## PLL ########################################################## // Update PLL discriminator [rads/Ti -> Secs/Ti] - d_carr_phase_error_secs_Ti = pll_cloop_two_quadrant_atan( - std::complex( - d_correlator_outs_16sc[1].real(), - d_correlator_outs_16sc[1].imag())) - / GPS_TWO_PI; //prompt output + d_carr_phase_error_secs_Ti = pll_cloop_two_quadrant_atan(std::complex(d_correlator_outs_16sc[1].real(), d_correlator_outs_16sc[1].imag())) / GPS_TWO_PI; //prompt output // Carrier discriminator filter // NOTICE: The carrier loop filter includes the Carrier Doppler accumulator, as described in Kaplan // Input [s/Ti] -> output [Hz] - d_carrier_doppler_hz = - d_carrier_loop_filter.get_carrier_error(0.0, - d_carr_phase_error_secs_Ti, - CURRENT_INTEGRATION_TIME_S); + d_carrier_doppler_hz = d_carrier_loop_filter.get_carrier_error(0.0, d_carr_phase_error_secs_Ti, CURRENT_INTEGRATION_TIME_S); // PLL to DLL assistance [Secs/Ti] - d_pll_to_dll_assist_secs_Ti = (d_carrier_doppler_hz - * CURRENT_INTEGRATION_TIME_S) / GPS_L1_FREQ_HZ; + d_pll_to_dll_assist_secs_Ti = (d_carrier_doppler_hz * CURRENT_INTEGRATION_TIME_S) / GPS_L1_FREQ_HZ; // code Doppler frequency update - d_code_freq_chips = GPS_L1_CA_CODE_RATE_HZ - + ((d_carrier_doppler_hz * GPS_L1_CA_CODE_RATE_HZ) - / GPS_L1_FREQ_HZ); + d_code_freq_chips = GPS_L1_CA_CODE_RATE_HZ + ((d_carrier_doppler_hz * GPS_L1_CA_CODE_RATE_HZ) / GPS_L1_FREQ_HZ); // ################## DLL ########################################################## // DLL discriminator @@ -575,70 +504,44 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work( d_correlator_outs_16sc[2].real(), d_correlator_outs_16sc[2].imag())); // [chips/Ti] //early and late // Code discriminator filter - d_code_error_filt_chips_s = d_code_loop_filter.get_code_nco( - d_code_error_chips_Ti); // input [chips/Ti] -> output [chips/second] - d_code_error_filt_chips_Ti = d_code_error_filt_chips_s - * CURRENT_INTEGRATION_TIME_S; - code_error_filt_secs_Ti = d_code_error_filt_chips_Ti - / d_code_freq_chips; // [s/Ti] + d_code_error_filt_chips_s = d_code_loop_filter.get_code_nco(d_code_error_chips_Ti); // input [chips/Ti] -> output [chips/second] + d_code_error_filt_chips_Ti = d_code_error_filt_chips_s * CURRENT_INTEGRATION_TIME_S; + code_error_filt_secs_Ti = d_code_error_filt_chips_Ti / d_code_freq_chips; // [s/Ti] // ################## CARRIER AND CODE NCO BUFFER ALIGNEMENT ####################### // keep alignment parameters for the next input buffer // Compute the next buffer length based in the new period of the PRN sequence and the code phase error estimation double T_chip_seconds = 1.0 / d_code_freq_chips; - double T_prn_seconds = T_chip_seconds - * GPS_L1_CA_CODE_LENGTH_CHIPS; - double T_prn_samples = T_prn_seconds - * static_cast(d_fs_in); + double T_prn_seconds = T_chip_seconds * GPS_L1_CA_CODE_LENGTH_CHIPS; + double T_prn_samples = T_prn_seconds * static_cast(d_fs_in); double K_prn_samples = round(T_prn_samples); - double K_T_prn_error_samples = K_prn_samples - - T_prn_samples; + double K_T_prn_error_samples = K_prn_samples - T_prn_samples; - d_rem_code_phase_samples = d_rem_code_phase_samples - - K_T_prn_error_samples - + code_error_filt_secs_Ti - * static_cast(d_fs_in); //(code_error_filt_secs_Ti + d_pll_to_dll_assist_secs_Ti) * static_cast(d_fs_in); - d_rem_code_phase_integer_samples = round( - d_rem_code_phase_samples); // round to a discrete number of samples - d_correlation_length_samples = K_prn_samples - + d_rem_code_phase_integer_samples; - d_rem_code_phase_samples = d_rem_code_phase_samples - - d_rem_code_phase_integer_samples; + d_rem_code_phase_samples = d_rem_code_phase_samples - K_T_prn_error_samples + code_error_filt_secs_Ti * static_cast(d_fs_in); //(code_error_filt_secs_Ti + d_pll_to_dll_assist_secs_Ti) * static_cast(d_fs_in); + d_rem_code_phase_integer_samples = round(d_rem_code_phase_samples); // round to a discrete number of samples + d_correlation_length_samples = K_prn_samples+ d_rem_code_phase_integer_samples; + d_rem_code_phase_samples = d_rem_code_phase_samples - d_rem_code_phase_integer_samples; //################### PLL COMMANDS ################################################# //carrier phase step (NCO phase increment per sample) [rads/sample] - d_carrier_phase_step_rad = GPS_TWO_PI * d_carrier_doppler_hz - / static_cast(d_fs_in); - d_acc_carrier_phase_cycles -= d_carrier_phase_step_rad - * d_correlation_length_samples / GPS_TWO_PI; + d_carrier_phase_step_rad = GPS_TWO_PI * d_carrier_doppler_hz / static_cast(d_fs_in); + d_acc_carrier_phase_cycles -= d_carrier_phase_step_rad * d_correlation_length_samples / GPS_TWO_PI; // UPDATE ACCUMULATED CARRIER PHASE - CORRECTED_INTEGRATION_TIME_S = - (static_cast(d_correlation_length_samples) - / static_cast(d_fs_in)); + CORRECTED_INTEGRATION_TIME_S = (static_cast(d_correlation_length_samples) / static_cast(d_fs_in)); //remnant carrier phase [rad] - d_rem_carrier_phase_rad = fmod( - d_rem_carrier_phase_rad - + GPS_TWO_PI * d_carrier_doppler_hz - * CORRECTED_INTEGRATION_TIME_S, - GPS_TWO_PI); + d_rem_carrier_phase_rad = fmod(d_rem_carrier_phase_rad + GPS_TWO_PI * d_carrier_doppler_hz * CORRECTED_INTEGRATION_TIME_S, GPS_TWO_PI); //################### DLL COMMANDS ################################################# //code phase step (Code resampler phase increment per sample) [chips/sample] - d_code_phase_step_chips = d_code_freq_chips - / static_cast(d_fs_in); + d_code_phase_step_chips = d_code_freq_chips / static_cast(d_fs_in); //remnant code phase [chips] - d_rem_code_phase_chips = - d_rem_code_phase_samples - * (d_code_freq_chips - / static_cast(d_fs_in)); + d_rem_code_phase_chips = d_rem_code_phase_samples * (d_code_freq_chips / static_cast(d_fs_in)); // ####### CN0 ESTIMATION AND LOCK DETECTORS ####################################### if (d_cn0_estimation_counter < CN0_ESTIMATION_SAMPLES) { // fill buffer with prompt correlator output values - d_Prompt_buffer[d_cn0_estimation_counter] = - lv_cmake( - static_cast(d_correlator_outs_16sc[1].real()), + d_Prompt_buffer[d_cn0_estimation_counter] = lv_cmake(static_cast(d_correlator_outs_16sc[1].real()), static_cast(d_correlator_outs_16sc[1].imag())); // prompt d_cn0_estimation_counter++; } @@ -646,15 +549,11 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work( { d_cn0_estimation_counter = 0; // Code lock indicator - d_CN0_SNV_dB_Hz = cn0_svn_estimator(d_Prompt_buffer, - CN0_ESTIMATION_SAMPLES, d_fs_in, - GPS_L1_CA_CODE_LENGTH_CHIPS); + d_CN0_SNV_dB_Hz = cn0_svn_estimator(d_Prompt_buffer, CN0_ESTIMATION_SAMPLES, d_fs_in, GPS_L1_CA_CODE_LENGTH_CHIPS); // Carrier lock indicator - d_carrier_lock_test = carrier_lock_detector( - d_Prompt_buffer, CN0_ESTIMATION_SAMPLES); + d_carrier_lock_test = carrier_lock_detector(d_Prompt_buffer, CN0_ESTIMATION_SAMPLES); // Loss of lock detection - if (d_carrier_lock_test - < d_carrier_lock_threshold or d_CN0_SNV_dB_Hz < MINIMUM_VALID_CN0) + if (d_carrier_lock_test < d_carrier_lock_threshold or d_CN0_SNV_dB_Hz < MINIMUM_VALID_CN0) { d_carrier_lock_fail_counter++; } @@ -665,39 +564,28 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work( d_carrier_lock_fail_counter--; } } - if (d_carrier_lock_fail_counter - > MAXIMUM_LOCK_FAIL_COUNTER) + if (d_carrier_lock_fail_counter > MAXIMUM_LOCK_FAIL_COUNTER) { - std::cout << "Loss of lock in channel " - << d_channel << "!" << std::endl; - LOG(INFO) << "Loss of lock in channel " - << d_channel << "!"; - this->message_port_pub(pmt::mp("events"), - pmt::from_long(3)); //3 -> loss of lock + std::cout << "Loss of lock in channel " << d_channel << "!" << std::endl; + LOG(INFO) << "Loss of lock in channel " << d_channel << "!"; + this->message_port_pub(pmt::mp("events"), pmt::from_long(3)); //3 -> loss of lock d_carrier_lock_fail_counter = 0; d_enable_tracking = false; // TODO: check if disabling tracking is consistent with the channel state machine multicorrelator_fpga_8sc->unlock_channel(); } } // ########### Output the tracking data to navigation and PVT ########## - current_synchro_data.Prompt_I = - static_cast((d_correlator_outs_16sc[1]).real()); - current_synchro_data.Prompt_Q = - static_cast((d_correlator_outs_16sc[1]).imag()); - current_synchro_data.Tracking_sample_counter = - d_sample_counter + d_correlation_length_samples; - current_synchro_data.Code_phase_samples = - d_rem_code_phase_samples; - current_synchro_data.Carrier_phase_rads = GPS_TWO_PI - * d_acc_carrier_phase_cycles; - current_synchro_data.Carrier_Doppler_hz = - d_carrier_doppler_hz; + current_synchro_data.Prompt_I = static_cast((d_correlator_outs_16sc[1]).real()); + current_synchro_data.Prompt_Q = static_cast((d_correlator_outs_16sc[1]).imag()); + current_synchro_data.Tracking_sample_counter = d_sample_counter + d_correlation_length_samples; + current_synchro_data.Code_phase_samples = d_rem_code_phase_samples; + current_synchro_data.Carrier_phase_rads = GPS_TWO_PI * d_acc_carrier_phase_cycles; + current_synchro_data.Carrier_Doppler_hz = d_carrier_doppler_hz; current_synchro_data.CN0_dB_hz = d_CN0_SNV_dB_Hz; current_synchro_data.Flag_valid_symbol_output = true; if (d_preamble_synchronized == true) { - current_synchro_data.correlation_length_ms = - d_extend_correlation_ms; + current_synchro_data.correlation_length_ms = d_extend_correlation_ms; } else { @@ -706,18 +594,12 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work( } else { - current_synchro_data.Prompt_I = - static_cast((d_correlator_outs_16sc[1]).real()); - current_synchro_data.Prompt_Q = - static_cast((d_correlator_outs_16sc[1]).imag()); - current_synchro_data.Tracking_sample_counter = - d_sample_counter + d_correlation_length_samples; - current_synchro_data.Code_phase_samples = - d_rem_code_phase_samples; - current_synchro_data.Carrier_phase_rads = GPS_TWO_PI - * d_acc_carrier_phase_cycles; - current_synchro_data.Carrier_Doppler_hz = - d_carrier_doppler_hz; // todo: project the carrier doppler + current_synchro_data.Prompt_I = static_cast((d_correlator_outs_16sc[1]).real()); + current_synchro_data.Prompt_Q = static_cast((d_correlator_outs_16sc[1]).imag()); + current_synchro_data.Tracking_sample_counter = d_sample_counter + d_correlation_length_samples; + current_synchro_data.Code_phase_samples = d_rem_code_phase_samples; + current_synchro_data.Carrier_phase_rads = GPS_TWO_PI * d_acc_carrier_phase_cycles; + current_synchro_data.Carrier_Doppler_hz = d_carrier_doppler_hz; // todo: project the carrier doppler current_synchro_data.CN0_dB_hz = d_CN0_SNV_dB_Hz; } } @@ -728,13 +610,13 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work( d_correlator_outs_16sc[n] = lv_cmake(0, 0); } - current_synchro_data.System = - { 'G'}; - current_synchro_data.Tracking_sample_counter = d_sample_counter - + d_correlation_length_samples; + current_synchro_data.System = {'G'}; + current_synchro_data.Tracking_sample_counter = d_sample_counter + d_correlation_length_samples; } + current_synchro_data.fs = d_fs_in; *out[0] = current_synchro_data; + if (d_dump) { // MULTIPLEXED FILE RECORDING - Record results to file @@ -744,84 +626,49 @@ int gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::general_work( double tmp_double; prompt_I = d_correlator_outs_16sc[1].real(); prompt_Q = d_correlator_outs_16sc[1].imag(); - tmp_E = std::abs( - std::complex(d_correlator_outs_16sc[0].real(), - d_correlator_outs_16sc[0].imag())); - tmp_P = std::abs( - std::complex(d_correlator_outs_16sc[1].real(), - d_correlator_outs_16sc[1].imag())); - tmp_L = std::abs( - std::complex(d_correlator_outs_16sc[2].real(), - d_correlator_outs_16sc[2].imag())); + tmp_E = std::abs(std::complex(d_correlator_outs_16sc[0].real(), d_correlator_outs_16sc[0].imag())); + tmp_P = std::abs(std::complex(d_correlator_outs_16sc[1].real(), d_correlator_outs_16sc[1].imag())); + tmp_L = std::abs(std::complex(d_correlator_outs_16sc[2].real(), d_correlator_outs_16sc[2].imag())); try { // EPR - d_dump_file.write(reinterpret_cast(&tmp_E), - sizeof(float)); - d_dump_file.write(reinterpret_cast(&tmp_P), - sizeof(float)); - d_dump_file.write(reinterpret_cast(&tmp_L), - sizeof(float)); + d_dump_file.write(reinterpret_cast(&tmp_E), sizeof(float)); + d_dump_file.write(reinterpret_cast(&tmp_P), sizeof(float)); + d_dump_file.write(reinterpret_cast(&tmp_L), sizeof(float)); // PROMPT I and Q (to analyze navigation symbols) - d_dump_file.write(reinterpret_cast(&prompt_I), - sizeof(float)); - d_dump_file.write(reinterpret_cast(&prompt_Q), - sizeof(float)); + d_dump_file.write(reinterpret_cast(&prompt_I), sizeof(float)); + d_dump_file.write(reinterpret_cast(&prompt_Q), sizeof(float)); // PRN start sample stamp //tmp_float=(float)d_sample_counter; - d_dump_file.write( - reinterpret_cast(&d_sample_counter), - sizeof(unsigned long int)); + d_dump_file.write(reinterpret_cast(&d_sample_counter), sizeof(unsigned long int)); // accumulated carrier phase - d_dump_file.write( - reinterpret_cast(&d_acc_carrier_phase_cycles), - sizeof(double)); + d_dump_file.write(reinterpret_cast(&d_acc_carrier_phase_cycles), sizeof(double)); // carrier and code frequency - d_dump_file.write( - reinterpret_cast(&d_carrier_doppler_hz), - sizeof(double)); - d_dump_file.write( - reinterpret_cast(&d_code_freq_chips), - sizeof(double)); + d_dump_file.write(reinterpret_cast(&d_carrier_doppler_hz), sizeof(double)); + d_dump_file.write(reinterpret_cast(&d_code_freq_chips), sizeof(double)); //PLL commands - d_dump_file.write( - reinterpret_cast(&d_carr_phase_error_secs_Ti), - sizeof(double)); - d_dump_file.write( - reinterpret_cast(&d_carrier_doppler_hz), - sizeof(double)); + d_dump_file.write(reinterpret_cast(&d_carr_phase_error_secs_Ti), sizeof(double)); + d_dump_file.write(reinterpret_cast(&d_carrier_doppler_hz), sizeof(double)); //DLL commands - d_dump_file.write( - reinterpret_cast(&d_code_error_chips_Ti), - sizeof(double)); - d_dump_file.write( - reinterpret_cast(&d_code_error_filt_chips_Ti), - sizeof(double)); + d_dump_file.write(reinterpret_cast(&d_code_error_chips_Ti), sizeof(double)); + d_dump_file.write(reinterpret_cast(&d_code_error_filt_chips_Ti), sizeof(double)); // CN0 and carrier lock test - d_dump_file.write(reinterpret_cast(&d_CN0_SNV_dB_Hz), - sizeof(double)); - d_dump_file.write( - reinterpret_cast(&d_carrier_lock_test), - sizeof(double)); + d_dump_file.write(reinterpret_cast(&d_CN0_SNV_dB_Hz), sizeof(double)); + d_dump_file.write(reinterpret_cast(&d_carrier_lock_test), sizeof(double)); // AUX vars (for debug purposes) - tmp_double = d_code_error_chips_Ti - * CURRENT_INTEGRATION_TIME_S; - d_dump_file.write(reinterpret_cast(&tmp_double), - sizeof(double)); - tmp_double = static_cast(d_sample_counter - + d_correlation_length_samples); - d_dump_file.write(reinterpret_cast(&tmp_double), - sizeof(double)); + tmp_double = d_code_error_chips_Ti * CURRENT_INTEGRATION_TIME_S; + d_dump_file.write(reinterpret_cast(&tmp_double), sizeof(double)); + tmp_double = static_cast(d_sample_counter + d_correlation_length_samples); + d_dump_file.write(reinterpret_cast(&tmp_double), sizeof(double)); } catch (const std::ifstream::failure* e) { - LOG(WARNING) << "Exception writing trk dump file " - << e->what(); + LOG(WARNING) << "Exception writing trk dump file " << e->what(); } } @@ -844,24 +691,19 @@ void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::set_channel(unsigned int channel) { try { - d_dump_filename.append( - boost::lexical_cast( - d_channel)); + d_dump_filename.append(boost::lexical_cast(d_channel)); d_dump_filename.append(".dat"); - d_dump_file.exceptions( - std::ifstream::failbit - | std::ifstream::badbit); - d_dump_file.open(d_dump_filename.c_str(), - std::ios::out | std::ios::binary); + d_dump_file.exceptions(std::ifstream::failbit | std::ifstream::badbit); + d_dump_file.open(d_dump_filename.c_str(), std::ios::out | std::ios::binary); LOG(INFO) << "Tracking dump enabled on channel " - << d_channel << " Log file: " - << d_dump_filename.c_str(); + << d_channel << " Log file: " + << d_dump_filename.c_str(); } catch (const std::ifstream::failure* e) { LOG(WARNING) << "channel " << d_channel - << " Exception opening trk dump file " - << e->what(); + << " Exception opening trk dump file " + << e->what(); } } } From 8258a343af6e090508048b5e263a14b308acd6ad Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Tue, 25 Jul 2017 16:50:22 +0200 Subject: [PATCH 075/171] Apply coding style to new destructors --- .../galileo_e1_dll_pll_veml_tracking_cc.cc | 44 ++++++++------- .../galileo_e1_tcp_connector_tracking_cc.cc | 46 ++++++++-------- .../galileo_e5a_dll_pll_tracking_cc.cc | 53 +++++++++--------- .../gps_l1_ca_dll_pll_c_aid_tracking_cc.cc | 43 ++++++++------- .../gps_l1_ca_dll_pll_c_aid_tracking_sc.cc | 45 ++++++++------- .../gps_l1_ca_dll_pll_tracking_cc.cc | 44 ++++++++------- .../gps_l1_ca_dll_pll_tracking_gpu_cc.cc | 55 +++++++++---------- .../gps_l1_ca_tcp_connector_tracking_cc.cc | 48 ++++++++-------- .../gps_l2_m_dll_pll_tracking_cc.cc | 44 ++++++++------- 9 files changed, 219 insertions(+), 203 deletions(-) diff --git a/src/algorithms/tracking/gnuradio_blocks/galileo_e1_dll_pll_veml_tracking_cc.cc b/src/algorithms/tracking/gnuradio_blocks/galileo_e1_dll_pll_veml_tracking_cc.cc index c611bbb9c..24c4093c4 100755 --- a/src/algorithms/tracking/gnuradio_blocks/galileo_e1_dll_pll_veml_tracking_cc.cc +++ b/src/algorithms/tracking/gnuradio_blocks/galileo_e1_dll_pll_veml_tracking_cc.cc @@ -251,27 +251,29 @@ void galileo_e1_dll_pll_veml_tracking_cc::start_tracking() galileo_e1_dll_pll_veml_tracking_cc::~galileo_e1_dll_pll_veml_tracking_cc() { - if (d_dump_file.is_open()) - { - try - { - d_dump_file.close(); - }catch(const std::exception & ex) - { - LOG(WARNING)<<"Exception in destructor "<PRN) << std::endl; LOG(INFO) << "Starting tracking of satellite " << Gnss_Satellite(systemName[sys], d_acquisition_gnss_synchro->PRN) << " on channel " << d_channel; - // enable tracking d_pull_in = true; d_enable_tracking = true; LOG(INFO) << "PULL-IN Doppler [Hz]=" << d_carrier_doppler_hz - << " Code Phase correction [samples]=" << delay_correction_samples - << " PULL-IN Code Phase [samples]=" << d_acq_code_phase_samples; + << " Code Phase correction [samples]=" << delay_correction_samples + << " PULL-IN Code Phase [samples]=" << d_acq_code_phase_samples; } Gps_L1_Ca_Dll_Pll_Tracking_GPU_cc::~Gps_L1_Ca_Dll_Pll_Tracking_GPU_cc() { - - if (d_dump_file.is_open()) - { - try - { - d_dump_file.close(); - }catch(const std::exception & ex) - { - LOG(WARNING)<<"Exception in destructor "<free_cuda(); - delete(multicorrelator_gpu); - }catch(const std::exception & ex) - { - LOG(WARNING)<<"Exception in destructor "<free_cuda(); + delete(multicorrelator_gpu); + } + catch(const std::exception & ex) + { + LOG(WARNING) << "Exception in destructor " << ex.what(); + } } - int Gps_L1_Ca_Dll_Pll_Tracking_GPU_cc::general_work (int noutput_items __attribute__((unused)), gr_vector_int &ninput_items __attribute__((unused)), gr_vector_const_void_star &input_items, gr_vector_void_star &output_items) { diff --git a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_tcp_connector_tracking_cc.cc b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_tcp_connector_tracking_cc.cc index 298d31577..00b2241b4 100644 --- a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_tcp_connector_tracking_cc.cc +++ b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_tcp_connector_tracking_cc.cc @@ -272,33 +272,35 @@ void Gps_L1_Ca_Tcp_Connector_Tracking_cc::start_tracking() } - - Gps_L1_Ca_Tcp_Connector_Tracking_cc::~Gps_L1_Ca_Tcp_Connector_Tracking_cc() { - if (d_dump_file.is_open()) - { - try - { - d_dump_file.close(); - }catch(const std::exception & ex) - { - LOG(WARNING)<<"Exception in destructor "< Date: Tue, 25 Jul 2017 16:51:44 +0200 Subject: [PATCH 076/171] Apply coding style --- ...ps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc | 46 +++++++++---------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc index 2cd520341..09944045d 100644 --- a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc +++ b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc.cc @@ -299,29 +299,29 @@ void gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::start_tracking() gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc::~gps_l1_ca_dll_pll_c_aid_tracking_fpga_sc() { if (d_dump_file.is_open()) - { - try - { - d_dump_file.close(); - } - catch(const std::exception & ex) - { - LOG(WARNING)<< "Exception in destructor " << ex.what(); - } - } - try - { - volk_gnsssdr_free(d_local_code_shift_chips); - volk_gnsssdr_free(d_ca_code); - volk_gnsssdr_free(d_ca_code_16sc); - volk_gnsssdr_free(d_correlator_outs_16sc); - delete[] d_Prompt_buffer; - multicorrelator_fpga_8sc->free(); - } - catch(const std::exception & ex) - { - LOG(WARNING) << "Exception in destructor " << ex.what(); - } + { + try + { + d_dump_file.close(); + } + catch(const std::exception & ex) + { + LOG(WARNING)<< "Exception in destructor " << ex.what(); + } + } + try + { + volk_gnsssdr_free(d_local_code_shift_chips); + volk_gnsssdr_free(d_ca_code); + volk_gnsssdr_free(d_ca_code_16sc); + volk_gnsssdr_free(d_correlator_outs_16sc); + delete[] d_Prompt_buffer; + multicorrelator_fpga_8sc->free(); + } + catch(const std::exception & ex) + { + LOG(WARNING) << "Exception in destructor " << ex.what(); + } } From ceef915de713e2a101e4c5a97e7caba80c3f8d6a Mon Sep 17 00:00:00 2001 From: Javier Arribas Date: Fri, 28 Jul 2017 18:24:36 +0200 Subject: [PATCH 077/171] Improving observables binary dump --- .../gnuradio_blocks/hybrid_observables_cc.cc | 2 + .../libs/observables_dump_reader.cc | 5 +- .../libs/observables_dump_reader.h | 1 + .../galileo_e1b_observables_plot_sample.m | 22 ------- .../gps_l1_ca_observables_plot_sample.m | 9 --- .../matlab/hybrid_observables_plot_sample.m | 39 ++++++++++++ .../gps_l1_ca_dll_pll_read_observables_dump.m | 60 ------------------- ..._dump.m => read_hybrid_observables_dump.m} | 32 ++++++---- 8 files changed, 67 insertions(+), 103 deletions(-) delete mode 100644 src/utils/matlab/galileo_e1b_observables_plot_sample.m delete mode 100644 src/utils/matlab/gps_l1_ca_observables_plot_sample.m create mode 100644 src/utils/matlab/hybrid_observables_plot_sample.m delete mode 100644 src/utils/matlab/libs/gps_l1_ca_dll_pll_read_observables_dump.m rename src/utils/matlab/libs/{gps_l1_ca_read_observables_dump.m => read_hybrid_observables_dump.m} (61%) diff --git a/src/algorithms/observables/gnuradio_blocks/hybrid_observables_cc.cc b/src/algorithms/observables/gnuradio_blocks/hybrid_observables_cc.cc index 1422077ab..7be768a89 100644 --- a/src/algorithms/observables/gnuradio_blocks/hybrid_observables_cc.cc +++ b/src/algorithms/observables/gnuradio_blocks/hybrid_observables_cc.cc @@ -337,6 +337,8 @@ int hybrid_observables_cc::general_work (int noutput_items, d_dump_file.write((char*)&tmp_double, sizeof(double)); tmp_double = current_gnss_synchro[i].PRN; d_dump_file.write((char*)&tmp_double, sizeof(double)); + tmp_double = current_gnss_synchro[i].Flag_valid_pseudorange; + d_dump_file.write((char*)&tmp_double, sizeof(double)); } } catch (const std::ifstream::failure& e) diff --git a/src/tests/unit-tests/signal-processing-blocks/libs/observables_dump_reader.cc b/src/tests/unit-tests/signal-processing-blocks/libs/observables_dump_reader.cc index 0773a5613..b9fc79d70 100644 --- a/src/tests/unit-tests/signal-processing-blocks/libs/observables_dump_reader.cc +++ b/src/tests/unit-tests/signal-processing-blocks/libs/observables_dump_reader.cc @@ -43,6 +43,7 @@ bool observables_dump_reader::read_binary_obs() d_dump_file.read((char *) &Acc_carrier_phase_hz[i], sizeof(double)); d_dump_file.read((char *) &Pseudorange_m[i], sizeof(double)); d_dump_file.read((char *) &PRN[i], sizeof(double)); + d_dump_file.read((char *) &valid[i], sizeof(double)); } } catch (const std::ifstream::failure &e) @@ -69,7 +70,7 @@ bool observables_dump_reader::restart() long int observables_dump_reader::num_epochs() { std::ifstream::pos_type size; - int number_of_vars_in_epoch = n_channels*6; + int number_of_vars_in_epoch = n_channels*7; int epoch_size_bytes = sizeof(double) * number_of_vars_in_epoch; std::ifstream tmpfile( d_dump_filename.c_str(), std::ios::binary | std::ios::ate); if (tmpfile.is_open()) @@ -117,6 +118,7 @@ observables_dump_reader::observables_dump_reader(int n_channels_) Acc_carrier_phase_hz=new double[n_channels]; Pseudorange_m=new double[n_channels]; PRN=new double[n_channels]; + valid=new double[n_channels]; } observables_dump_reader::~observables_dump_reader() { @@ -130,4 +132,5 @@ observables_dump_reader::~observables_dump_reader() delete[] Acc_carrier_phase_hz; delete[] Pseudorange_m; delete[] PRN; + delete[] valid; } diff --git a/src/tests/unit-tests/signal-processing-blocks/libs/observables_dump_reader.h b/src/tests/unit-tests/signal-processing-blocks/libs/observables_dump_reader.h index acdffa2f2..205c5cd9b 100644 --- a/src/tests/unit-tests/signal-processing-blocks/libs/observables_dump_reader.h +++ b/src/tests/unit-tests/signal-processing-blocks/libs/observables_dump_reader.h @@ -55,6 +55,7 @@ public: double* Acc_carrier_phase_hz; double* Pseudorange_m; double* PRN; + double* valid; private: int n_channels; diff --git a/src/utils/matlab/galileo_e1b_observables_plot_sample.m b/src/utils/matlab/galileo_e1b_observables_plot_sample.m deleted file mode 100644 index 604be3fe3..000000000 --- a/src/utils/matlab/galileo_e1b_observables_plot_sample.m +++ /dev/null @@ -1,22 +0,0 @@ -% Read observables dump - -clear all; -close all; - -%IFEN NSR Sampler Fs=20480000 -% GNSS-SDR decimation factor 8 -samplingFreq = 20480000/8; %[Hz] -channels=4; -path='/home/gnss/workspace/gnss-sdr/trunk/install/'; -observables_log_path=[path 'observables.dat']; -GNSS_observables= gps_l1_ca_read_observables_dump(channels,observables_log_path); - - -skip=9000; -ref_channel=1; -plot(GNSS_observables.d_TOW_at_current_symbol(ref_channel,skip:end),GNSS_observables.Pseudorange_m(:,skip:end).') -title('psudoranges'); -figure -plot(GNSS_observables.d_TOW_at_current_symbol(ref_channel,skip:end),GNSS_observables.Prn_timestamp_ms(:,skip:end).') -title('Prn_timestamps'); - \ No newline at end of file diff --git a/src/utils/matlab/gps_l1_ca_observables_plot_sample.m b/src/utils/matlab/gps_l1_ca_observables_plot_sample.m deleted file mode 100644 index c7a85a60f..000000000 --- a/src/utils/matlab/gps_l1_ca_observables_plot_sample.m +++ /dev/null @@ -1,9 +0,0 @@ -% Read observables dump - -%clear all; - -samplingFreq = 64e6/16; %[Hz] -channels=4; -path='/home/gnss/workspace/gnss-sdr/trunk/install/'; -observables_log_path=[path 'observables.dat']; -GNSS_observables= gps_l1_ca_read_observables_dump(channels,observables_log_path); diff --git a/src/utils/matlab/hybrid_observables_plot_sample.m b/src/utils/matlab/hybrid_observables_plot_sample.m new file mode 100644 index 000000000..eb3274b06 --- /dev/null +++ b/src/utils/matlab/hybrid_observables_plot_sample.m @@ -0,0 +1,39 @@ +% Read observables dump + +%clear all; + +samplingFreq = 2600000; %[Hz] +channels=2; +path='/home/javier/git/gnss-sdr/build/'; +observables_log_path=[path 'observables.dat']; +GNSS_observables= read_hybrid_observables_dump(channels,observables_log_path); + +%optional: +%search all channels having good satellite simultaneously +min_idx=1; +for n=1:1:channels + idx=find(GNSS_observables.valid(n,:)>0,1,'first'); + if min_idx Date: Sat, 29 Jul 2017 00:25:43 +0200 Subject: [PATCH 078/171] Improve destructors --- .../gnuradio_blocks/hybrid_observables_cc.cc | 12 +++++++++++- .../galileo_e1b_telemetry_decoder_cc.cc | 12 +++++++++++- .../galileo_e5a_telemetry_decoder_cc.cc | 12 +++++++++++- .../gps_l1_ca_telemetry_decoder_cc.cc | 15 +++++++++++++-- .../gps_l2c_telemetry_decoder_cc.cc | 12 +++++++++++- .../sbas_l1_telemetry_decoder_cc.cc | 12 +++++++++++- 6 files changed, 68 insertions(+), 7 deletions(-) diff --git a/src/algorithms/observables/gnuradio_blocks/hybrid_observables_cc.cc b/src/algorithms/observables/gnuradio_blocks/hybrid_observables_cc.cc index 7be768a89..606362471 100644 --- a/src/algorithms/observables/gnuradio_blocks/hybrid_observables_cc.cc +++ b/src/algorithms/observables/gnuradio_blocks/hybrid_observables_cc.cc @@ -93,7 +93,17 @@ hybrid_observables_cc::hybrid_observables_cc(unsigned int nchannels, bool dump, hybrid_observables_cc::~hybrid_observables_cc() { - d_dump_file.close(); + if (d_dump_file.is_open() == true) + { + try + { + d_dump_file.close(); + } + catch(const std::exception & ex) + { + LOG(WARNING) << "Exception in destructor closing the dump file " << ex.what(); + } + } } diff --git a/src/algorithms/telemetry_decoder/gnuradio_blocks/galileo_e1b_telemetry_decoder_cc.cc b/src/algorithms/telemetry_decoder/gnuradio_blocks/galileo_e1b_telemetry_decoder_cc.cc index ae8099c8a..62191ef86 100644 --- a/src/algorithms/telemetry_decoder/gnuradio_blocks/galileo_e1b_telemetry_decoder_cc.cc +++ b/src/algorithms/telemetry_decoder/gnuradio_blocks/galileo_e1b_telemetry_decoder_cc.cc @@ -164,7 +164,17 @@ galileo_e1b_telemetry_decoder_cc::galileo_e1b_telemetry_decoder_cc( galileo_e1b_telemetry_decoder_cc::~galileo_e1b_telemetry_decoder_cc() { delete d_preambles_symbols; - d_dump_file.close(); + if(d_dump_file.is_open() == true) + { + try + { + d_dump_file.close(); + } + catch(const std::exception & ex) + { + LOG(WARNING) << "Exception in destructor closing the dump file " << ex.what(); + } + } } diff --git a/src/algorithms/telemetry_decoder/gnuradio_blocks/galileo_e5a_telemetry_decoder_cc.cc b/src/algorithms/telemetry_decoder/gnuradio_blocks/galileo_e5a_telemetry_decoder_cc.cc index af9a9f854..0129151ee 100644 --- a/src/algorithms/telemetry_decoder/gnuradio_blocks/galileo_e5a_telemetry_decoder_cc.cc +++ b/src/algorithms/telemetry_decoder/gnuradio_blocks/galileo_e5a_telemetry_decoder_cc.cc @@ -231,7 +231,17 @@ galileo_e5a_telemetry_decoder_cc::galileo_e5a_telemetry_decoder_cc( galileo_e5a_telemetry_decoder_cc::~galileo_e5a_telemetry_decoder_cc() { - d_dump_file.close(); + if(d_dump_file.is_open() == true) + { + try + { + d_dump_file.close(); + } + catch(const std::exception & ex) + { + LOG(WARNING) << "Exception in destructor closing the dump file " << ex.what(); + } + } } diff --git a/src/algorithms/telemetry_decoder/gnuradio_blocks/gps_l1_ca_telemetry_decoder_cc.cc b/src/algorithms/telemetry_decoder/gnuradio_blocks/gps_l1_ca_telemetry_decoder_cc.cc index 10d3289a2..2874e90a3 100644 --- a/src/algorithms/telemetry_decoder/gnuradio_blocks/gps_l1_ca_telemetry_decoder_cc.cc +++ b/src/algorithms/telemetry_decoder/gnuradio_blocks/gps_l1_ca_telemetry_decoder_cc.cc @@ -98,7 +98,7 @@ gps_l1_ca_telemetry_decoder_cc::gps_l1_ca_telemetry_decoder_cc( flag_TOW_set = false; d_average_count = 0; d_flag_preamble = false; - d_flag_new_tow_available=false; + d_flag_new_tow_available = false; d_word_number = 0; d_decimation_output_factor = 1; d_channel = 0; @@ -110,9 +110,20 @@ gps_l1_ca_telemetry_decoder_cc::gps_l1_ca_telemetry_decoder_cc( gps_l1_ca_telemetry_decoder_cc::~gps_l1_ca_telemetry_decoder_cc() { delete d_preambles_symbols; - d_dump_file.close(); + if(d_dump_file.is_open() == true) + { + try + { + d_dump_file.close(); + } + catch(const std::exception & ex) + { + LOG(WARNING) << "Exception in destructor closing the dump file " << ex.what(); + } + } } + bool gps_l1_ca_telemetry_decoder_cc::gps_word_parityCheck(unsigned int gpsword) { unsigned int d1, d2, d3, d4, d5, d6, d7, t, parity; diff --git a/src/algorithms/telemetry_decoder/gnuradio_blocks/gps_l2c_telemetry_decoder_cc.cc b/src/algorithms/telemetry_decoder/gnuradio_blocks/gps_l2c_telemetry_decoder_cc.cc index f112b5569..8b1cb1e06 100644 --- a/src/algorithms/telemetry_decoder/gnuradio_blocks/gps_l2c_telemetry_decoder_cc.cc +++ b/src/algorithms/telemetry_decoder/gnuradio_blocks/gps_l2c_telemetry_decoder_cc.cc @@ -75,7 +75,17 @@ gps_l2c_telemetry_decoder_cc::gps_l2c_telemetry_decoder_cc( gps_l2c_telemetry_decoder_cc::~gps_l2c_telemetry_decoder_cc() { - d_dump_file.close(); + if(d_dump_file.is_open() == true) + { + try + { + d_dump_file.close(); + } + catch(const std::exception & ex) + { + LOG(WARNING) << "Exception in destructor closing the dump file " << ex.what(); + } + } } diff --git a/src/algorithms/telemetry_decoder/gnuradio_blocks/sbas_l1_telemetry_decoder_cc.cc b/src/algorithms/telemetry_decoder/gnuradio_blocks/sbas_l1_telemetry_decoder_cc.cc index e12dac1f4..2fb2fe5f8 100644 --- a/src/algorithms/telemetry_decoder/gnuradio_blocks/sbas_l1_telemetry_decoder_cc.cc +++ b/src/algorithms/telemetry_decoder/gnuradio_blocks/sbas_l1_telemetry_decoder_cc.cc @@ -79,7 +79,17 @@ sbas_l1_telemetry_decoder_cc::sbas_l1_telemetry_decoder_cc( sbas_l1_telemetry_decoder_cc::~sbas_l1_telemetry_decoder_cc() { - d_dump_file.close(); + if(d_dump_file.is_open() == true) + { + try + { + d_dump_file.close(); + } + catch(const std::exception & ex) + { + LOG(WARNING) << "Exception in destructor closing the dump file " << ex.what(); + } + } } From 1574e277d79eae8544ca2701fba18acfb82ee0f9 Mon Sep 17 00:00:00 2001 From: Javier Arribas Date: Tue, 1 Aug 2017 17:03:31 +0200 Subject: [PATCH 079/171] Temporary bug fix related to the GPS L1 C/A symbol TOW assignation. Position accuracy improvement confirmed. In-deep review is being done --- .../gnuradio_blocks/hybrid_observables_cc.cc | 35 ++++++----- .../gps_l1_ca_telemetry_decoder_cc.cc | 2 +- .../libs/read_true_sim_observables_dump.m | 61 +++++++++++++++++++ 3 files changed, 81 insertions(+), 17 deletions(-) create mode 100644 src/utils/matlab/libs/read_true_sim_observables_dump.m diff --git a/src/algorithms/observables/gnuradio_blocks/hybrid_observables_cc.cc b/src/algorithms/observables/gnuradio_blocks/hybrid_observables_cc.cc index 606362471..f7440f868 100644 --- a/src/algorithms/observables/gnuradio_blocks/hybrid_observables_cc.cc +++ b/src/algorithms/observables/gnuradio_blocks/hybrid_observables_cc.cc @@ -230,22 +230,25 @@ int hybrid_observables_cc::general_work (int noutput_items, int distance = std::distance(d_gnss_synchro_history_queue[i].begin(), gnss_synchro_deque_iter); if (distance > 0) { - double T_rx_channel_prev = (double)d_gnss_synchro_history_queue[i].at(distance - 1).Tracking_sample_counter / (double)gnss_synchro_deque_iter->fs; - double delta_T_rx_s_prev = T_rx_channel_prev - T_rx_s; - if (fabs(delta_T_rx_s_prev) < fabs(delta_T_rx_s)) - { - realigned_gnss_synchro_map.insert(std::pair( - d_gnss_synchro_history_queue[i].at(distance-1).Channel_ID, - d_gnss_synchro_history_queue[i].at(distance-1))); - adjacent_gnss_synchro_map.insert(std::pair(gnss_synchro_deque_iter->Channel_ID, *gnss_synchro_deque_iter)); - } - else - { - realigned_gnss_synchro_map.insert(std::pair(gnss_synchro_deque_iter->Channel_ID, *gnss_synchro_deque_iter)); - adjacent_gnss_synchro_map.insert(std::pair( - d_gnss_synchro_history_queue[i].at(distance-1).Channel_ID, - d_gnss_synchro_history_queue[i].at(distance-1))); - } + if (d_gnss_synchro_history_queue[i].at(distance-1).Flag_valid_word) + { + double T_rx_channel_prev = (double)d_gnss_synchro_history_queue[i].at(distance - 1).Tracking_sample_counter / (double)gnss_synchro_deque_iter->fs; + double delta_T_rx_s_prev = T_rx_channel_prev - T_rx_s; + if (fabs(delta_T_rx_s_prev) < fabs(delta_T_rx_s)) + { + realigned_gnss_synchro_map.insert(std::pair( + d_gnss_synchro_history_queue[i].at(distance-1).Channel_ID, + d_gnss_synchro_history_queue[i].at(distance-1))); + adjacent_gnss_synchro_map.insert(std::pair(gnss_synchro_deque_iter->Channel_ID, *gnss_synchro_deque_iter)); + } + else + { + realigned_gnss_synchro_map.insert(std::pair(gnss_synchro_deque_iter->Channel_ID, *gnss_synchro_deque_iter)); + adjacent_gnss_synchro_map.insert(std::pair( + d_gnss_synchro_history_queue[i].at(distance-1).Channel_ID, + d_gnss_synchro_history_queue[i].at(distance-1))); + } + } } else { diff --git a/src/algorithms/telemetry_decoder/gnuradio_blocks/gps_l1_ca_telemetry_decoder_cc.cc b/src/algorithms/telemetry_decoder/gnuradio_blocks/gps_l1_ca_telemetry_decoder_cc.cc index 2874e90a3..d92128f61 100644 --- a/src/algorithms/telemetry_decoder/gnuradio_blocks/gps_l1_ca_telemetry_decoder_cc.cc +++ b/src/algorithms/telemetry_decoder/gnuradio_blocks/gps_l1_ca_telemetry_decoder_cc.cc @@ -350,7 +350,7 @@ int gps_l1_ca_telemetry_decoder_cc::general_work (int noutput_items __attribute_ //double decoder_latency_ms=(double)(current_symbol.Tracking_sample_counter-d_symbol_history.at(0).Tracking_sample_counter) // /(double)current_symbol.fs; // update TOW at the preamble instant (account with decoder latency) - d_TOW_at_Preamble = d_GPS_FSM.d_nav.d_TOW + GPS_L1_CA_CODE_PERIOD + GPS_CA_PREAMBLE_DURATION_S; + d_TOW_at_Preamble = d_GPS_FSM.d_nav.d_TOW + 2*GPS_L1_CA_CODE_PERIOD + GPS_CA_PREAMBLE_DURATION_S; d_TOW_at_current_symbol = floor(d_TOW_at_Preamble*1000.0)/1000.0; flag_TOW_set = true; diff --git a/src/utils/matlab/libs/read_true_sim_observables_dump.m b/src/utils/matlab/libs/read_true_sim_observables_dump.m new file mode 100644 index 000000000..7c43389cc --- /dev/null +++ b/src/utils/matlab/libs/read_true_sim_observables_dump.m @@ -0,0 +1,61 @@ +% Javier Arribas 2011 +function [observables] = read_true_sim_observables_dump (filename, count) + + %% usage: read_true_sim_observables_dump (filename, [count]) + %% + %% open gnss-sdr-sim observables dump and read all chennels + %% + + m = nargchk (1,2,nargin); + channels=12; %Simulator always use 12 channels + num_double_vars=6; + double_size_bytes=8; + skip_bytes_each_read=double_size_bytes*num_double_vars*channels; + bytes_shift=0; + + if (m) + usage (m); + end + + if (nargin < 2) + count = Inf; + end + %loops_counter = fread (f, count, 'uint32',4*12); + f = fopen (filename, 'rb'); + if (f < 0) + else + for N=1:1:channels + observables.RX_time(N,:) = fread (f, count, 'float64',skip_bytes_each_read-double_size_bytes); + bytes_shift=bytes_shift+double_size_bytes; + fseek(f,bytes_shift,'bof'); % move to next interleaved + observables.Carrier_Doppler_hz(N,:) = fread (f, count, 'float64',skip_bytes_each_read-double_size_bytes); + bytes_shift=bytes_shift+double_size_bytes; + fseek(f,bytes_shift,'bof'); % move to next interleaved + observables.Carrier_phase_hz(N,:) = fread (f, count, 'float64',skip_bytes_each_read-double_size_bytes); + bytes_shift=bytes_shift+double_size_bytes; + fseek(f,bytes_shift,'bof'); % move to next interleaved + observables.Pseudorange_m(N,:) = fread (f, count, 'float64',skip_bytes_each_read-double_size_bytes); + bytes_shift=bytes_shift+double_size_bytes; + fseek(f,bytes_shift,'bof'); % move to next interleaved + observables.Carrier_phase_hz_v2(N,:) = fread (f, count, 'float64',skip_bytes_each_read-double_size_bytes); + bytes_shift=bytes_shift+double_size_bytes; + fseek(f,bytes_shift,'bof'); % move to next interleaved + observables.PRN(N,:) = fread (f, count, 'float64',skip_bytes_each_read-double_size_bytes); + bytes_shift=bytes_shift+double_size_bytes; + fseek(f,bytes_shift,'bof'); % move to next interleaved + end + + fclose (f); + +% %%%%%%%% output vars %%%%%%%% +% for(int i=0;i<12;i++) +% { +% d_dump_file.read((char *) &gps_time_sec[i], sizeof(double)); +% d_dump_file.read((char *) &doppler_l1_hz, sizeof(double)); +% d_dump_file.read((char *) &acc_carrier_phase_l1_cycles[i], sizeof(double)); +% d_dump_file.read((char *) &dist_m[i], sizeof(double)); +% d_dump_file.read((char *) &carrier_phase_l1_cycles[i], sizeof(double)); +% d_dump_file.read((char *) &prn[i], sizeof(double)); +% } + end + From 2f1eff026dbbdf563866bef1b710bac637fd13e0 Mon Sep 17 00:00:00 2001 From: Javier Arribas Date: Wed, 2 Aug 2017 14:32:16 +0200 Subject: [PATCH 080/171] Fix code style --- .../gnuradio_blocks/hybrid_observables_cc.cc | 554 +++++++++--------- .../gnuradio_blocks/hybrid_observables_cc.h | 32 +- 2 files changed, 293 insertions(+), 293 deletions(-) diff --git a/src/algorithms/observables/gnuradio_blocks/hybrid_observables_cc.cc b/src/algorithms/observables/gnuradio_blocks/hybrid_observables_cc.cc index f7440f868..f4231b6f5 100644 --- a/src/algorithms/observables/gnuradio_blocks/hybrid_observables_cc.cc +++ b/src/algorithms/observables/gnuradio_blocks/hybrid_observables_cc.cc @@ -46,346 +46,346 @@ using google::LogMessage; hybrid_observables_cc_sptr hybrid_make_observables_cc(unsigned int nchannels, bool dump, std::string dump_filename, unsigned int deep_history) { - return hybrid_observables_cc_sptr(new hybrid_observables_cc(nchannels, dump, dump_filename, deep_history)); + return hybrid_observables_cc_sptr(new hybrid_observables_cc(nchannels, dump, dump_filename, deep_history)); } hybrid_observables_cc::hybrid_observables_cc(unsigned int nchannels, bool dump, std::string dump_filename, unsigned int deep_history) : - gr::block("hybrid_observables_cc", gr::io_signature::make(nchannels, nchannels, sizeof(Gnss_Synchro)), - gr::io_signature::make(nchannels, nchannels, sizeof(Gnss_Synchro))) + gr::block("hybrid_observables_cc", gr::io_signature::make(nchannels, nchannels, sizeof(Gnss_Synchro)), + gr::io_signature::make(nchannels, nchannels, sizeof(Gnss_Synchro))) { - // initialize internal vars - d_dump = dump; - d_nchannels = nchannels; - d_dump_filename = dump_filename; - history_deep = deep_history; - T_rx_s = 0.0; - T_rx_step_s = 1e-3;// todo: move to gnss-sdr config - for (unsigned int i = 0; i < d_nchannels; i++) - { - d_gnss_synchro_history_queue.push_back(std::deque()); - } - //todo: this is a gnuradio scheduler hack. - // Migrate the queues to gnuradio set_history to see if the scheduler can handle - // the multiple output flow - d_max_noutputs = 100; - this->set_min_noutput_items(100); + // initialize internal vars + d_dump = dump; + d_nchannels = nchannels; + d_dump_filename = dump_filename; + history_deep = deep_history; + T_rx_s = 0.0; + T_rx_step_s = 1e-3;// todo: move to gnss-sdr config + for (unsigned int i = 0; i < d_nchannels; i++) + { + d_gnss_synchro_history_queue.push_back(std::deque()); + } + //todo: this is a gnuradio scheduler hack. + // Migrate the queues to gnuradio set_history to see if the scheduler can handle + // the multiple output flow + d_max_noutputs = 100; + this->set_min_noutput_items(100); - // ############# ENABLE DATA FILE LOG ################# - if (d_dump == true) - { - if (d_dump_file.is_open() == false) - { - try - { - d_dump_file.exceptions (std::ifstream::failbit | std::ifstream::badbit ); - d_dump_file.open(d_dump_filename.c_str(), std::ios::out | std::ios::binary); - LOG(INFO) << "Observables dump enabled Log file: " << d_dump_filename.c_str(); - } - catch (const std::ifstream::failure & e) - { - LOG(WARNING) << "Exception opening observables dump file " << e.what(); - } - } - } + // ############# ENABLE DATA FILE LOG ################# + if (d_dump == true) + { + if (d_dump_file.is_open() == false) + { + try + { + d_dump_file.exceptions (std::ifstream::failbit | std::ifstream::badbit ); + d_dump_file.open(d_dump_filename.c_str(), std::ios::out | std::ios::binary); + LOG(INFO) << "Observables dump enabled Log file: " << d_dump_filename.c_str(); + } + catch (const std::ifstream::failure & e) + { + LOG(WARNING) << "Exception opening observables dump file " << e.what(); + } + } + } } hybrid_observables_cc::~hybrid_observables_cc() { - if (d_dump_file.is_open() == true) - { - try - { - d_dump_file.close(); - } - catch(const std::exception & ex) - { - LOG(WARNING) << "Exception in destructor closing the dump file " << ex.what(); - } - } + if (d_dump_file.is_open() == true) + { + try + { + d_dump_file.close(); + } + catch(const std::exception & ex) + { + LOG(WARNING) << "Exception in destructor closing the dump file " << ex.what(); + } + } } bool Hybrid_pairCompare_gnss_synchro_sample_counter(const std::pair& a, const std::pair& b) { - return (a.second.Tracking_sample_counter) < (b.second.Tracking_sample_counter); + return (a.second.Tracking_sample_counter) < (b.second.Tracking_sample_counter); } bool Hybrid_valueCompare_gnss_synchro_sample_counter(const Gnss_Synchro& a, unsigned long int b) { - return (a.Tracking_sample_counter) < (b); + return (a.Tracking_sample_counter) < (b); } bool Hybrid_valueCompare_gnss_synchro_receiver_time(const Gnss_Synchro& a, double b) { - return (((double)a.Tracking_sample_counter+a.Code_phase_samples)/(double)a.fs) < (b); + return (((double)a.Tracking_sample_counter+a.Code_phase_samples)/(double)a.fs) < (b); } bool Hybrid_pairCompare_gnss_synchro_d_TOW(const std::pair& a, const std::pair& b) { - return (a.second.TOW_at_current_symbol_s) < (b.second.TOW_at_current_symbol_s); + return (a.second.TOW_at_current_symbol_s) < (b.second.TOW_at_current_symbol_s); } bool Hybrid_valueCompare_gnss_synchro_d_TOW(const Gnss_Synchro& a, double b) { - return (a.TOW_at_current_symbol_s) < (b); + return (a.TOW_at_current_symbol_s) < (b); } int hybrid_observables_cc::general_work (int noutput_items, - gr_vector_int &ninput_items, - gr_vector_const_void_star &input_items, - gr_vector_void_star &output_items) + gr_vector_int &ninput_items, + gr_vector_const_void_star &input_items, + gr_vector_void_star &output_items) { - Gnss_Synchro **in = (Gnss_Synchro **) &input_items[0]; // Get the input pointer - Gnss_Synchro **out = (Gnss_Synchro **) &output_items[0]; // Get the output pointer - int n_outputs = 0; - int n_consume[d_nchannels]; - double past_history_s = 100e-3; + Gnss_Synchro **in = (Gnss_Synchro **) &input_items[0]; // Get the input pointer + Gnss_Synchro **out = (Gnss_Synchro **) &output_items[0]; // Get the output pointer + int n_outputs = 0; + int n_consume[d_nchannels]; + double past_history_s = 100e-3; - Gnss_Synchro current_gnss_synchro[d_nchannels]; + Gnss_Synchro current_gnss_synchro[d_nchannels]; - /* - * 1. Read the GNSS SYNCHRO objects from available channels. - * Multi-rate GNURADIO Block. Read how many input items are avaliable in each channel - * Record all synchronization data into queues - */ - for (unsigned int i = 0; i < d_nchannels; i++) - { - n_consume[i] = ninput_items[i];// full throttle - for (int j = 0; j < n_consume[i]; j++) - { - d_gnss_synchro_history_queue[i].push_back(in[i][j]); - } - //std::cout<<"push["<::iterator gnss_synchro_map_iter; - std::deque::iterator gnss_synchro_deque_iter; + } + if (channel_history_ok == true) + { + std::map::iterator gnss_synchro_map_iter; + std::deque::iterator gnss_synchro_deque_iter; - //1. If the RX time is not set, set the Rx time - if (T_rx_s == 0) - { - //0. Read a gnss_synchro snapshot from the queue and store it in a map - std::map gnss_synchro_map; - for (unsigned int i = 0; i < d_nchannels; i++) - { - gnss_synchro_map.insert(std::pair( - d_gnss_synchro_history_queue[i].front().Channel_ID, - d_gnss_synchro_history_queue[i].front())); - } - gnss_synchro_map_iter = min_element(gnss_synchro_map.begin(), - gnss_synchro_map.end(), - Hybrid_pairCompare_gnss_synchro_sample_counter); - T_rx_s = (double)gnss_synchro_map_iter->second.Tracking_sample_counter / (double)gnss_synchro_map_iter->second.fs; - T_rx_s = floor(T_rx_s * 1000.0) / 1000.0; // truncate to ms - T_rx_s += past_history_s; // increase T_rx to have a minimum past history to interpolate - } + //1. If the RX time is not set, set the Rx time + if (T_rx_s == 0) + { + //0. Read a gnss_synchro snapshot from the queue and store it in a map + std::map gnss_synchro_map; + for (unsigned int i = 0; i < d_nchannels; i++) + { + gnss_synchro_map.insert(std::pair( + d_gnss_synchro_history_queue[i].front().Channel_ID, + d_gnss_synchro_history_queue[i].front())); + } + gnss_synchro_map_iter = min_element(gnss_synchro_map.begin(), + gnss_synchro_map.end(), + Hybrid_pairCompare_gnss_synchro_sample_counter); + T_rx_s = (double)gnss_synchro_map_iter->second.Tracking_sample_counter / (double)gnss_synchro_map_iter->second.fs; + T_rx_s = floor(T_rx_s * 1000.0) / 1000.0; // truncate to ms + T_rx_s += past_history_s; // increase T_rx to have a minimum past history to interpolate + } - //2. Realign RX time in all valid channels - std::map realigned_gnss_synchro_map; //container for the aligned set of observables for the selected T_rx - std::map adjacent_gnss_synchro_map; //container for the previous observable values to interpolate - //shift channels history to match the reference TOW - for (unsigned int i = 0; i < d_nchannels; i++) - { - gnss_synchro_deque_iter = std::lower_bound(d_gnss_synchro_history_queue[i].begin(), - d_gnss_synchro_history_queue[i].end(), - T_rx_s, - Hybrid_valueCompare_gnss_synchro_receiver_time); - if (gnss_synchro_deque_iter != d_gnss_synchro_history_queue[i].end()) - { - if (gnss_synchro_deque_iter->Flag_valid_word == true) - { - double T_rx_channel = (double)gnss_synchro_deque_iter->Tracking_sample_counter / (double)gnss_synchro_deque_iter->fs; - double delta_T_rx_s = T_rx_channel - T_rx_s; + //2. Realign RX time in all valid channels + std::map realigned_gnss_synchro_map; //container for the aligned set of observables for the selected T_rx + std::map adjacent_gnss_synchro_map; //container for the previous observable values to interpolate + //shift channels history to match the reference TOW + for (unsigned int i = 0; i < d_nchannels; i++) + { + gnss_synchro_deque_iter = std::lower_bound(d_gnss_synchro_history_queue[i].begin(), + d_gnss_synchro_history_queue[i].end(), + T_rx_s, + Hybrid_valueCompare_gnss_synchro_receiver_time); + if (gnss_synchro_deque_iter != d_gnss_synchro_history_queue[i].end()) + { + if (gnss_synchro_deque_iter->Flag_valid_word == true) + { + double T_rx_channel = (double)gnss_synchro_deque_iter->Tracking_sample_counter / (double)gnss_synchro_deque_iter->fs; + double delta_T_rx_s = T_rx_channel - T_rx_s; - //check that T_rx difference is less than a threshold (the correlation interval) - if (delta_T_rx_s * 1000.0 < (double)gnss_synchro_deque_iter->correlation_length_ms) - { - //record the word structure in a map for pseudorange computation - //save the previous observable - int distance = std::distance(d_gnss_synchro_history_queue[i].begin(), gnss_synchro_deque_iter); - if (distance > 0) - { - if (d_gnss_synchro_history_queue[i].at(distance-1).Flag_valid_word) - { - double T_rx_channel_prev = (double)d_gnss_synchro_history_queue[i].at(distance - 1).Tracking_sample_counter / (double)gnss_synchro_deque_iter->fs; - double delta_T_rx_s_prev = T_rx_channel_prev - T_rx_s; - if (fabs(delta_T_rx_s_prev) < fabs(delta_T_rx_s)) - { - realigned_gnss_synchro_map.insert(std::pair( - d_gnss_synchro_history_queue[i].at(distance-1).Channel_ID, - d_gnss_synchro_history_queue[i].at(distance-1))); - adjacent_gnss_synchro_map.insert(std::pair(gnss_synchro_deque_iter->Channel_ID, *gnss_synchro_deque_iter)); - } - else - { - realigned_gnss_synchro_map.insert(std::pair(gnss_synchro_deque_iter->Channel_ID, *gnss_synchro_deque_iter)); - adjacent_gnss_synchro_map.insert(std::pair( - d_gnss_synchro_history_queue[i].at(distance-1).Channel_ID, - d_gnss_synchro_history_queue[i].at(distance-1))); - } - } - } - else - { - realigned_gnss_synchro_map.insert(std::pair(gnss_synchro_deque_iter->Channel_ID, *gnss_synchro_deque_iter)); - } + //check that T_rx difference is less than a threshold (the correlation interval) + if (delta_T_rx_s * 1000.0 < (double)gnss_synchro_deque_iter->correlation_length_ms) + { + //record the word structure in a map for pseudorange computation + //save the previous observable + int distance = std::distance(d_gnss_synchro_history_queue[i].begin(), gnss_synchro_deque_iter); + if (distance > 0) + { + if (d_gnss_synchro_history_queue[i].at(distance-1).Flag_valid_word) + { + double T_rx_channel_prev = (double)d_gnss_synchro_history_queue[i].at(distance - 1).Tracking_sample_counter / (double)gnss_synchro_deque_iter->fs; + double delta_T_rx_s_prev = T_rx_channel_prev - T_rx_s; + if (fabs(delta_T_rx_s_prev) < fabs(delta_T_rx_s)) + { + realigned_gnss_synchro_map.insert(std::pair( + d_gnss_synchro_history_queue[i].at(distance-1).Channel_ID, + d_gnss_synchro_history_queue[i].at(distance-1))); + adjacent_gnss_synchro_map.insert(std::pair(gnss_synchro_deque_iter->Channel_ID, *gnss_synchro_deque_iter)); + } + else + { + realigned_gnss_synchro_map.insert(std::pair(gnss_synchro_deque_iter->Channel_ID, *gnss_synchro_deque_iter)); + adjacent_gnss_synchro_map.insert(std::pair( + d_gnss_synchro_history_queue[i].at(distance-1).Channel_ID, + d_gnss_synchro_history_queue[i].at(distance-1))); + } + } + } + else + { + realigned_gnss_synchro_map.insert(std::pair(gnss_synchro_deque_iter->Channel_ID, *gnss_synchro_deque_iter)); + } - } - else - { - //std::cout<<"ch["< this will be the reference symbol - gnss_synchro_map_iter = max_element(realigned_gnss_synchro_map.begin(), - realigned_gnss_synchro_map.end(), - Hybrid_pairCompare_gnss_synchro_d_TOW); - double ref_fs_hz = (double)gnss_synchro_map_iter->second.fs; + if(!realigned_gnss_synchro_map.empty()) + { + /* + * 2.1 Use CURRENT set of measurements and find the nearest satellite + * common RX time algorithm + */ + // what is the most recent symbol TOW in the current set? -> this will be the reference symbol + gnss_synchro_map_iter = max_element(realigned_gnss_synchro_map.begin(), + realigned_gnss_synchro_map.end(), + Hybrid_pairCompare_gnss_synchro_d_TOW); + double ref_fs_hz = (double)gnss_synchro_map_iter->second.fs; - // compute interpolated TOW value at T_rx_s - int ref_channel_key = gnss_synchro_map_iter->second.Channel_ID; - Gnss_Synchro adj_obs = adjacent_gnss_synchro_map.at(ref_channel_key); - double ref_adj_T_rx_s = (double)adj_obs.Tracking_sample_counter / ref_fs_hz + adj_obs.Code_phase_samples / ref_fs_hz; + // compute interpolated TOW value at T_rx_s + int ref_channel_key = gnss_synchro_map_iter->second.Channel_ID; + Gnss_Synchro adj_obs = adjacent_gnss_synchro_map.at(ref_channel_key); + double ref_adj_T_rx_s = (double)adj_obs.Tracking_sample_counter / ref_fs_hz + adj_obs.Code_phase_samples / ref_fs_hz; - double d_TOW_reference = gnss_synchro_map_iter->second.TOW_at_current_symbol_s; - double d_ref_T_rx_s = (double)gnss_synchro_map_iter->second.Tracking_sample_counter / ref_fs_hz + gnss_synchro_map_iter->second.Code_phase_samples / ref_fs_hz; + double d_TOW_reference = gnss_synchro_map_iter->second.TOW_at_current_symbol_s; + double d_ref_T_rx_s = (double)gnss_synchro_map_iter->second.Tracking_sample_counter / ref_fs_hz + gnss_synchro_map_iter->second.Code_phase_samples / ref_fs_hz; - double selected_T_rx_s = T_rx_s; - // two points linear interpolation using adjacent (adj) values: y=y1+(x-x1)*(y2-y1)/(x2-x1) - double ref_TOW_at_T_rx_s = adj_obs.TOW_at_current_symbol_s + (selected_T_rx_s - ref_adj_T_rx_s) - * (d_TOW_reference - adj_obs.TOW_at_current_symbol_s) / (d_ref_T_rx_s - ref_adj_T_rx_s); + double selected_T_rx_s = T_rx_s; + // two points linear interpolation using adjacent (adj) values: y=y1+(x-x1)*(y2-y1)/(x2-x1) + double ref_TOW_at_T_rx_s = adj_obs.TOW_at_current_symbol_s + (selected_T_rx_s - ref_adj_T_rx_s) + * (d_TOW_reference - adj_obs.TOW_at_current_symbol_s) / (d_ref_T_rx_s - ref_adj_T_rx_s); - // Now compute RX time differences due to the PRN alignment in the correlators - double traveltime_ms; - double pseudorange_m; - double channel_T_rx_s; - double channel_fs_hz; - double channel_TOW_s; - double delta_T_rx_s; - for(gnss_synchro_map_iter = realigned_gnss_synchro_map.begin(); gnss_synchro_map_iter != realigned_gnss_synchro_map.end(); gnss_synchro_map_iter++) - { - channel_fs_hz = (double)gnss_synchro_map_iter->second.fs; - channel_TOW_s = gnss_synchro_map_iter->second.TOW_at_current_symbol_s; - channel_T_rx_s = (double)gnss_synchro_map_iter->second.Tracking_sample_counter / channel_fs_hz + gnss_synchro_map_iter->second.Code_phase_samples / channel_fs_hz; - // compute interpolated observation values - // two points linear interpolation using adjacent (adj) values: y=y1+(x-x1)*(y2-y1)/(x2-x1) - // TOW at the selected receiver time T_rx_s - int element_key = gnss_synchro_map_iter->second.Channel_ID; - adj_obs = adjacent_gnss_synchro_map.at(element_key); + // Now compute RX time differences due to the PRN alignment in the correlators + double traveltime_ms; + double pseudorange_m; + double channel_T_rx_s; + double channel_fs_hz; + double channel_TOW_s; + double delta_T_rx_s; + for(gnss_synchro_map_iter = realigned_gnss_synchro_map.begin(); gnss_synchro_map_iter != realigned_gnss_synchro_map.end(); gnss_synchro_map_iter++) + { + channel_fs_hz = (double)gnss_synchro_map_iter->second.fs; + channel_TOW_s = gnss_synchro_map_iter->second.TOW_at_current_symbol_s; + channel_T_rx_s = (double)gnss_synchro_map_iter->second.Tracking_sample_counter / channel_fs_hz + gnss_synchro_map_iter->second.Code_phase_samples / channel_fs_hz; + // compute interpolated observation values + // two points linear interpolation using adjacent (adj) values: y=y1+(x-x1)*(y2-y1)/(x2-x1) + // TOW at the selected receiver time T_rx_s + int element_key = gnss_synchro_map_iter->second.Channel_ID; + adj_obs = adjacent_gnss_synchro_map.at(element_key); - double adj_T_rx_s = (double)adj_obs.Tracking_sample_counter / channel_fs_hz + adj_obs.Code_phase_samples / channel_fs_hz; + double adj_T_rx_s = (double)adj_obs.Tracking_sample_counter / channel_fs_hz + adj_obs.Code_phase_samples / channel_fs_hz; - double channel_TOW_at_T_rx_s = adj_obs.TOW_at_current_symbol_s + (selected_T_rx_s - adj_T_rx_s) * (channel_TOW_s - adj_obs.TOW_at_current_symbol_s) / (channel_T_rx_s - adj_T_rx_s); + double channel_TOW_at_T_rx_s = adj_obs.TOW_at_current_symbol_s + (selected_T_rx_s - adj_T_rx_s) * (channel_TOW_s - adj_obs.TOW_at_current_symbol_s) / (channel_T_rx_s - adj_T_rx_s); - //Doppler and Accumulated carrier phase - double Carrier_phase_lin_rads = adj_obs.Carrier_phase_rads + (selected_T_rx_s - adj_T_rx_s) * (gnss_synchro_map_iter->second.Carrier_phase_rads - adj_obs.Carrier_phase_rads) / (channel_T_rx_s - adj_T_rx_s); - double Carrier_Doppler_lin_hz = adj_obs.Carrier_Doppler_hz + (selected_T_rx_s - adj_T_rx_s) * (gnss_synchro_map_iter->second.Carrier_Doppler_hz - adj_obs.Carrier_Doppler_hz) / (channel_T_rx_s - adj_T_rx_s); + //Doppler and Accumulated carrier phase + double Carrier_phase_lin_rads = adj_obs.Carrier_phase_rads + (selected_T_rx_s - adj_T_rx_s) * (gnss_synchro_map_iter->second.Carrier_phase_rads - adj_obs.Carrier_phase_rads) / (channel_T_rx_s - adj_T_rx_s); + double Carrier_Doppler_lin_hz = adj_obs.Carrier_Doppler_hz + (selected_T_rx_s - adj_T_rx_s) * (gnss_synchro_map_iter->second.Carrier_Doppler_hz - adj_obs.Carrier_Doppler_hz) / (channel_T_rx_s - adj_T_rx_s); - //compute the pseudorange (no rx time offset correction) - traveltime_ms = (ref_TOW_at_T_rx_s - channel_TOW_at_T_rx_s) * 1000.0 + GPS_STARTOFFSET_ms; - //convert to meters - pseudorange_m = traveltime_ms * GPS_C_m_ms; // [m] - // update the pseudorange object - current_gnss_synchro[gnss_synchro_map_iter->second.Channel_ID] = gnss_synchro_map_iter->second; - current_gnss_synchro[gnss_synchro_map_iter->second.Channel_ID].Pseudorange_m = pseudorange_m; - current_gnss_synchro[gnss_synchro_map_iter->second.Channel_ID].Flag_valid_pseudorange = true; - // Save the estimated RX time (no RX clock offset correction yet!) - current_gnss_synchro[gnss_synchro_map_iter->second.Channel_ID].RX_time = ref_TOW_at_T_rx_s + GPS_STARTOFFSET_ms / 1000.0; + //compute the pseudorange (no rx time offset correction) + traveltime_ms = (ref_TOW_at_T_rx_s - channel_TOW_at_T_rx_s) * 1000.0 + GPS_STARTOFFSET_ms; + //convert to meters + pseudorange_m = traveltime_ms * GPS_C_m_ms; // [m] + // update the pseudorange object + current_gnss_synchro[gnss_synchro_map_iter->second.Channel_ID] = gnss_synchro_map_iter->second; + current_gnss_synchro[gnss_synchro_map_iter->second.Channel_ID].Pseudorange_m = pseudorange_m; + current_gnss_synchro[gnss_synchro_map_iter->second.Channel_ID].Flag_valid_pseudorange = true; + // Save the estimated RX time (no RX clock offset correction yet!) + current_gnss_synchro[gnss_synchro_map_iter->second.Channel_ID].RX_time = ref_TOW_at_T_rx_s + GPS_STARTOFFSET_ms / 1000.0; - current_gnss_synchro[gnss_synchro_map_iter->second.Channel_ID].Carrier_phase_rads = Carrier_phase_lin_rads; - current_gnss_synchro[gnss_synchro_map_iter->second.Channel_ID].Carrier_Doppler_hz = Carrier_Doppler_lin_hz; - } + current_gnss_synchro[gnss_synchro_map_iter->second.Channel_ID].Carrier_phase_rads = Carrier_phase_lin_rads; + current_gnss_synchro[gnss_synchro_map_iter->second.Channel_ID].Carrier_Doppler_hz = Carrier_Doppler_lin_hz; + } - if(d_dump == true) - { - // MULTIPLEXED FILE RECORDING - Record results to file - try - { - double tmp_double; - for (unsigned int i = 0; i < d_nchannels; i++) - { - tmp_double = current_gnss_synchro[i].RX_time; - d_dump_file.write((char*)&tmp_double, sizeof(double)); - tmp_double = current_gnss_synchro[i].TOW_at_current_symbol_s; - d_dump_file.write((char*)&tmp_double, sizeof(double)); - tmp_double = current_gnss_synchro[i].Carrier_Doppler_hz; - d_dump_file.write((char*)&tmp_double, sizeof(double)); - tmp_double = current_gnss_synchro[i].Carrier_phase_rads/GPS_TWO_PI; - d_dump_file.write((char*)&tmp_double, sizeof(double)); - tmp_double = current_gnss_synchro[i].Pseudorange_m; - d_dump_file.write((char*)&tmp_double, sizeof(double)); - tmp_double = current_gnss_synchro[i].PRN; - d_dump_file.write((char*)&tmp_double, sizeof(double)); - tmp_double = current_gnss_synchro[i].Flag_valid_pseudorange; - d_dump_file.write((char*)&tmp_double, sizeof(double)); - } - } - catch (const std::ifstream::failure& e) - { - LOG(WARNING) << "Exception writing observables dump file " << e.what(); - } - } + if(d_dump == true) + { + // MULTIPLEXED FILE RECORDING - Record results to file + try + { + double tmp_double; + for (unsigned int i = 0; i < d_nchannels; i++) + { + tmp_double = current_gnss_synchro[i].RX_time; + d_dump_file.write((char*)&tmp_double, sizeof(double)); + tmp_double = current_gnss_synchro[i].TOW_at_current_symbol_s; + d_dump_file.write((char*)&tmp_double, sizeof(double)); + tmp_double = current_gnss_synchro[i].Carrier_Doppler_hz; + d_dump_file.write((char*)&tmp_double, sizeof(double)); + tmp_double = current_gnss_synchro[i].Carrier_phase_rads/GPS_TWO_PI; + d_dump_file.write((char*)&tmp_double, sizeof(double)); + tmp_double = current_gnss_synchro[i].Pseudorange_m; + d_dump_file.write((char*)&tmp_double, sizeof(double)); + tmp_double = current_gnss_synchro[i].PRN; + d_dump_file.write((char*)&tmp_double, sizeof(double)); + tmp_double = current_gnss_synchro[i].Flag_valid_pseudorange; + d_dump_file.write((char*)&tmp_double, sizeof(double)); + } + } + catch (const std::ifstream::failure& e) + { + LOG(WARNING) << "Exception writing observables dump file " << e.what(); + } + } - for (unsigned int i = 0; i < d_nchannels; i++) - { - out[i][n_outputs] = current_gnss_synchro[i]; - } + for (unsigned int i = 0; i < d_nchannels; i++) + { + out[i][n_outputs] = current_gnss_synchro[i]; + } - n_outputs++; - } + n_outputs++; + } - //Move RX time - T_rx_s = T_rx_s + T_rx_step_s; - //pop old elements from queue - for (unsigned int i = 0; i < d_nchannels; i++) - { - while (d_gnss_synchro_history_queue[i].front().Tracking_sample_counter / (double)d_gnss_synchro_history_queue[i].front().fs < (T_rx_s - past_history_s)) - { - d_gnss_synchro_history_queue[i].pop_front(); - } - } - } - }while(channel_history_ok == true && d_max_noutputs>n_outputs); + //Move RX time + T_rx_s = T_rx_s + T_rx_step_s; + //pop old elements from queue + for (unsigned int i = 0; i < d_nchannels; i++) + { + while (d_gnss_synchro_history_queue[i].front().Tracking_sample_counter / (double)d_gnss_synchro_history_queue[i].front().fs < (T_rx_s - past_history_s)) + { + d_gnss_synchro_history_queue[i].pop_front(); + } + } + } + }while(channel_history_ok == true && d_max_noutputs>n_outputs); - //Multi-rate consume! - for (unsigned int i = 0; i < d_nchannels; i++) - { - consume(i, n_consume[i]); //which input, how many items - } + //Multi-rate consume! + for (unsigned int i = 0; i < d_nchannels; i++) + { + consume(i, n_consume[i]); //which input, how many items + } - return n_outputs; + return n_outputs; } diff --git a/src/algorithms/observables/gnuradio_blocks/hybrid_observables_cc.h b/src/algorithms/observables/gnuradio_blocks/hybrid_observables_cc.h index 202a8582e..a647b24de 100644 --- a/src/algorithms/observables/gnuradio_blocks/hybrid_observables_cc.h +++ b/src/algorithms/observables/gnuradio_blocks/hybrid_observables_cc.h @@ -52,26 +52,26 @@ hybrid_make_observables_cc(unsigned int n_channels, bool dump, std::string dump_ class hybrid_observables_cc : public gr::block { public: - ~hybrid_observables_cc (); - int general_work (int noutput_items, gr_vector_int &ninput_items, - gr_vector_const_void_star &input_items, gr_vector_void_star &output_items); + ~hybrid_observables_cc (); + int general_work (int noutput_items, gr_vector_int &ninput_items, + gr_vector_const_void_star &input_items, gr_vector_void_star &output_items); private: - friend hybrid_observables_cc_sptr - hybrid_make_observables_cc(unsigned int nchannels, bool dump, std::string dump_filename, unsigned int deep_history); - hybrid_observables_cc(unsigned int nchannels, bool dump, std::string dump_filename, unsigned int deep_history); + friend hybrid_observables_cc_sptr + hybrid_make_observables_cc(unsigned int nchannels, bool dump, std::string dump_filename, unsigned int deep_history); + hybrid_observables_cc(unsigned int nchannels, bool dump, std::string dump_filename, unsigned int deep_history); - //Tracking observable history - std::vector> d_gnss_synchro_history_queue; + //Tracking observable history + std::vector> d_gnss_synchro_history_queue; - double T_rx_s; - double T_rx_step_s; - int d_max_noutputs; - bool d_dump; - unsigned int d_nchannels; - unsigned int history_deep; - std::string d_dump_filename; - std::ofstream d_dump_file; + double T_rx_s; + double T_rx_step_s; + int d_max_noutputs; + bool d_dump; + unsigned int d_nchannels; + unsigned int history_deep; + std::string d_dump_filename; + std::ofstream d_dump_file; }; #endif From 1bcbe876766bf13e53242891201c947a550427d4 Mon Sep 17 00:00:00 2001 From: Javier Arribas Date: Wed, 2 Aug 2017 14:43:38 +0200 Subject: [PATCH 081/171] Fix code style --- .../gnuradio_blocks/hybrid_observables_cc.cc | 476 +++++++++--------- 1 file changed, 238 insertions(+), 238 deletions(-) diff --git a/src/algorithms/observables/gnuradio_blocks/hybrid_observables_cc.cc b/src/algorithms/observables/gnuradio_blocks/hybrid_observables_cc.cc index f4231b6f5..2bec0859b 100644 --- a/src/algorithms/observables/gnuradio_blocks/hybrid_observables_cc.cc +++ b/src/algorithms/observables/gnuradio_blocks/hybrid_observables_cc.cc @@ -51,8 +51,8 @@ hybrid_observables_cc_sptr hybrid_make_observables_cc(unsigned int nchannels, bo hybrid_observables_cc::hybrid_observables_cc(unsigned int nchannels, bool dump, std::string dump_filename, unsigned int deep_history) : - gr::block("hybrid_observables_cc", gr::io_signature::make(nchannels, nchannels, sizeof(Gnss_Synchro)), - gr::io_signature::make(nchannels, nchannels, sizeof(Gnss_Synchro))) + gr::block("hybrid_observables_cc", gr::io_signature::make(nchannels, nchannels, sizeof(Gnss_Synchro)), + gr::io_signature::make(nchannels, nchannels, sizeof(Gnss_Synchro))) { // initialize internal vars d_dump = dump; @@ -62,9 +62,9 @@ hybrid_observables_cc::hybrid_observables_cc(unsigned int nchannels, bool dump, T_rx_s = 0.0; T_rx_step_s = 1e-3;// todo: move to gnss-sdr config for (unsigned int i = 0; i < d_nchannels; i++) - { - d_gnss_synchro_history_queue.push_back(std::deque()); - } + { + d_gnss_synchro_history_queue.push_back(std::deque()); + } //todo: this is a gnuradio scheduler hack. // Migrate the queues to gnuradio set_history to see if the scheduler can handle // the multiple output flow @@ -73,37 +73,37 @@ hybrid_observables_cc::hybrid_observables_cc(unsigned int nchannels, bool dump, // ############# ENABLE DATA FILE LOG ################# if (d_dump == true) - { - if (d_dump_file.is_open() == false) - { - try - { - d_dump_file.exceptions (std::ifstream::failbit | std::ifstream::badbit ); - d_dump_file.open(d_dump_filename.c_str(), std::ios::out | std::ios::binary); - LOG(INFO) << "Observables dump enabled Log file: " << d_dump_filename.c_str(); - } - catch (const std::ifstream::failure & e) - { - LOG(WARNING) << "Exception opening observables dump file " << e.what(); - } - } - } + { + if (d_dump_file.is_open() == false) + { + try + { + d_dump_file.exceptions (std::ifstream::failbit | std::ifstream::badbit ); + d_dump_file.open(d_dump_filename.c_str(), std::ios::out | std::ios::binary); + LOG(INFO) << "Observables dump enabled Log file: " << d_dump_filename.c_str(); + } + catch (const std::ifstream::failure & e) + { + LOG(WARNING) << "Exception opening observables dump file " << e.what(); + } + } + } } hybrid_observables_cc::~hybrid_observables_cc() { if (d_dump_file.is_open() == true) - { - try - { - d_dump_file.close(); - } - catch(const std::exception & ex) - { - LOG(WARNING) << "Exception in destructor closing the dump file " << ex.what(); - } - } + { + try + { + d_dump_file.close(); + } + catch(const std::exception & ex) + { + LOG(WARNING) << "Exception in destructor closing the dump file " << ex.what(); + } + } } @@ -138,9 +138,9 @@ bool Hybrid_valueCompare_gnss_synchro_d_TOW(const Gnss_Synchro& a, double b) int hybrid_observables_cc::general_work (int noutput_items, - gr_vector_int &ninput_items, - gr_vector_const_void_star &input_items, - gr_vector_void_star &output_items) + gr_vector_int &ninput_items, + gr_vector_const_void_star &input_items, + gr_vector_void_star &output_items) { Gnss_Synchro **in = (Gnss_Synchro **) &input_items[0]; // Get the input pointer Gnss_Synchro **out = (Gnss_Synchro **) &output_items[0]; // Get the output pointer @@ -156,236 +156,236 @@ int hybrid_observables_cc::general_work (int noutput_items, * Record all synchronization data into queues */ for (unsigned int i = 0; i < d_nchannels; i++) - { - n_consume[i] = ninput_items[i];// full throttle - for (int j = 0; j < n_consume[i]; j++) - { - d_gnss_synchro_history_queue[i].push_back(in[i][j]); - } - //std::cout<<"push["<::iterator gnss_synchro_map_iter; - std::deque::iterator gnss_synchro_deque_iter; + } + if (channel_history_ok == true) + { + std::map::iterator gnss_synchro_map_iter; + std::deque::iterator gnss_synchro_deque_iter; - //1. If the RX time is not set, set the Rx time - if (T_rx_s == 0) - { - //0. Read a gnss_synchro snapshot from the queue and store it in a map - std::map gnss_synchro_map; - for (unsigned int i = 0; i < d_nchannels; i++) - { - gnss_synchro_map.insert(std::pair( - d_gnss_synchro_history_queue[i].front().Channel_ID, - d_gnss_synchro_history_queue[i].front())); - } - gnss_synchro_map_iter = min_element(gnss_synchro_map.begin(), - gnss_synchro_map.end(), - Hybrid_pairCompare_gnss_synchro_sample_counter); - T_rx_s = (double)gnss_synchro_map_iter->second.Tracking_sample_counter / (double)gnss_synchro_map_iter->second.fs; - T_rx_s = floor(T_rx_s * 1000.0) / 1000.0; // truncate to ms - T_rx_s += past_history_s; // increase T_rx to have a minimum past history to interpolate - } + //1. If the RX time is not set, set the Rx time + if (T_rx_s == 0) + { + //0. Read a gnss_synchro snapshot from the queue and store it in a map + std::map gnss_synchro_map; + for (unsigned int i = 0; i < d_nchannels; i++) + { + gnss_synchro_map.insert(std::pair( + d_gnss_synchro_history_queue[i].front().Channel_ID, + d_gnss_synchro_history_queue[i].front())); + } + gnss_synchro_map_iter = min_element(gnss_synchro_map.begin(), + gnss_synchro_map.end(), + Hybrid_pairCompare_gnss_synchro_sample_counter); + T_rx_s = (double)gnss_synchro_map_iter->second.Tracking_sample_counter / (double)gnss_synchro_map_iter->second.fs; + T_rx_s = floor(T_rx_s * 1000.0) / 1000.0; // truncate to ms + T_rx_s += past_history_s; // increase T_rx to have a minimum past history to interpolate + } - //2. Realign RX time in all valid channels - std::map realigned_gnss_synchro_map; //container for the aligned set of observables for the selected T_rx - std::map adjacent_gnss_synchro_map; //container for the previous observable values to interpolate - //shift channels history to match the reference TOW - for (unsigned int i = 0; i < d_nchannels; i++) - { - gnss_synchro_deque_iter = std::lower_bound(d_gnss_synchro_history_queue[i].begin(), - d_gnss_synchro_history_queue[i].end(), - T_rx_s, - Hybrid_valueCompare_gnss_synchro_receiver_time); - if (gnss_synchro_deque_iter != d_gnss_synchro_history_queue[i].end()) - { - if (gnss_synchro_deque_iter->Flag_valid_word == true) - { - double T_rx_channel = (double)gnss_synchro_deque_iter->Tracking_sample_counter / (double)gnss_synchro_deque_iter->fs; - double delta_T_rx_s = T_rx_channel - T_rx_s; + //2. Realign RX time in all valid channels + std::map realigned_gnss_synchro_map; //container for the aligned set of observables for the selected T_rx + std::map adjacent_gnss_synchro_map; //container for the previous observable values to interpolate + //shift channels history to match the reference TOW + for (unsigned int i = 0; i < d_nchannels; i++) + { + gnss_synchro_deque_iter = std::lower_bound(d_gnss_synchro_history_queue[i].begin(), + d_gnss_synchro_history_queue[i].end(), + T_rx_s, + Hybrid_valueCompare_gnss_synchro_receiver_time); + if (gnss_synchro_deque_iter != d_gnss_synchro_history_queue[i].end()) + { + if (gnss_synchro_deque_iter->Flag_valid_word == true) + { + double T_rx_channel = (double)gnss_synchro_deque_iter->Tracking_sample_counter / (double)gnss_synchro_deque_iter->fs; + double delta_T_rx_s = T_rx_channel - T_rx_s; - //check that T_rx difference is less than a threshold (the correlation interval) - if (delta_T_rx_s * 1000.0 < (double)gnss_synchro_deque_iter->correlation_length_ms) - { - //record the word structure in a map for pseudorange computation - //save the previous observable - int distance = std::distance(d_gnss_synchro_history_queue[i].begin(), gnss_synchro_deque_iter); - if (distance > 0) - { - if (d_gnss_synchro_history_queue[i].at(distance-1).Flag_valid_word) - { - double T_rx_channel_prev = (double)d_gnss_synchro_history_queue[i].at(distance - 1).Tracking_sample_counter / (double)gnss_synchro_deque_iter->fs; - double delta_T_rx_s_prev = T_rx_channel_prev - T_rx_s; - if (fabs(delta_T_rx_s_prev) < fabs(delta_T_rx_s)) - { - realigned_gnss_synchro_map.insert(std::pair( - d_gnss_synchro_history_queue[i].at(distance-1).Channel_ID, - d_gnss_synchro_history_queue[i].at(distance-1))); - adjacent_gnss_synchro_map.insert(std::pair(gnss_synchro_deque_iter->Channel_ID, *gnss_synchro_deque_iter)); - } - else - { - realigned_gnss_synchro_map.insert(std::pair(gnss_synchro_deque_iter->Channel_ID, *gnss_synchro_deque_iter)); - adjacent_gnss_synchro_map.insert(std::pair( - d_gnss_synchro_history_queue[i].at(distance-1).Channel_ID, - d_gnss_synchro_history_queue[i].at(distance-1))); - } - } - } - else - { - realigned_gnss_synchro_map.insert(std::pair(gnss_synchro_deque_iter->Channel_ID, *gnss_synchro_deque_iter)); - } + //check that T_rx difference is less than a threshold (the correlation interval) + if (delta_T_rx_s * 1000.0 < (double)gnss_synchro_deque_iter->correlation_length_ms) + { + //record the word structure in a map for pseudorange computation + //save the previous observable + int distance = std::distance(d_gnss_synchro_history_queue[i].begin(), gnss_synchro_deque_iter); + if (distance > 0) + { + if (d_gnss_synchro_history_queue[i].at(distance-1).Flag_valid_word) + { + double T_rx_channel_prev = (double)d_gnss_synchro_history_queue[i].at(distance - 1).Tracking_sample_counter / (double)gnss_synchro_deque_iter->fs; + double delta_T_rx_s_prev = T_rx_channel_prev - T_rx_s; + if (fabs(delta_T_rx_s_prev) < fabs(delta_T_rx_s)) + { + realigned_gnss_synchro_map.insert(std::pair( + d_gnss_synchro_history_queue[i].at(distance-1).Channel_ID, + d_gnss_synchro_history_queue[i].at(distance-1))); + adjacent_gnss_synchro_map.insert(std::pair(gnss_synchro_deque_iter->Channel_ID, *gnss_synchro_deque_iter)); + } + else + { + realigned_gnss_synchro_map.insert(std::pair(gnss_synchro_deque_iter->Channel_ID, *gnss_synchro_deque_iter)); + adjacent_gnss_synchro_map.insert(std::pair( + d_gnss_synchro_history_queue[i].at(distance-1).Channel_ID, + d_gnss_synchro_history_queue[i].at(distance-1))); + } + } + } + else + { + realigned_gnss_synchro_map.insert(std::pair(gnss_synchro_deque_iter->Channel_ID, *gnss_synchro_deque_iter)); + } - } - else - { - //std::cout<<"ch["< this will be the reference symbol - gnss_synchro_map_iter = max_element(realigned_gnss_synchro_map.begin(), - realigned_gnss_synchro_map.end(), - Hybrid_pairCompare_gnss_synchro_d_TOW); - double ref_fs_hz = (double)gnss_synchro_map_iter->second.fs; + if(!realigned_gnss_synchro_map.empty()) + { + /* + * 2.1 Use CURRENT set of measurements and find the nearest satellite + * common RX time algorithm + */ + // what is the most recent symbol TOW in the current set? -> this will be the reference symbol + gnss_synchro_map_iter = max_element(realigned_gnss_synchro_map.begin(), + realigned_gnss_synchro_map.end(), + Hybrid_pairCompare_gnss_synchro_d_TOW); + double ref_fs_hz = (double)gnss_synchro_map_iter->second.fs; - // compute interpolated TOW value at T_rx_s - int ref_channel_key = gnss_synchro_map_iter->second.Channel_ID; - Gnss_Synchro adj_obs = adjacent_gnss_synchro_map.at(ref_channel_key); - double ref_adj_T_rx_s = (double)adj_obs.Tracking_sample_counter / ref_fs_hz + adj_obs.Code_phase_samples / ref_fs_hz; + // compute interpolated TOW value at T_rx_s + int ref_channel_key = gnss_synchro_map_iter->second.Channel_ID; + Gnss_Synchro adj_obs = adjacent_gnss_synchro_map.at(ref_channel_key); + double ref_adj_T_rx_s = (double)adj_obs.Tracking_sample_counter / ref_fs_hz + adj_obs.Code_phase_samples / ref_fs_hz; - double d_TOW_reference = gnss_synchro_map_iter->second.TOW_at_current_symbol_s; - double d_ref_T_rx_s = (double)gnss_synchro_map_iter->second.Tracking_sample_counter / ref_fs_hz + gnss_synchro_map_iter->second.Code_phase_samples / ref_fs_hz; + double d_TOW_reference = gnss_synchro_map_iter->second.TOW_at_current_symbol_s; + double d_ref_T_rx_s = (double)gnss_synchro_map_iter->second.Tracking_sample_counter / ref_fs_hz + gnss_synchro_map_iter->second.Code_phase_samples / ref_fs_hz; - double selected_T_rx_s = T_rx_s; - // two points linear interpolation using adjacent (adj) values: y=y1+(x-x1)*(y2-y1)/(x2-x1) - double ref_TOW_at_T_rx_s = adj_obs.TOW_at_current_symbol_s + (selected_T_rx_s - ref_adj_T_rx_s) - * (d_TOW_reference - adj_obs.TOW_at_current_symbol_s) / (d_ref_T_rx_s - ref_adj_T_rx_s); + double selected_T_rx_s = T_rx_s; + // two points linear interpolation using adjacent (adj) values: y=y1+(x-x1)*(y2-y1)/(x2-x1) + double ref_TOW_at_T_rx_s = adj_obs.TOW_at_current_symbol_s + (selected_T_rx_s - ref_adj_T_rx_s) + * (d_TOW_reference - adj_obs.TOW_at_current_symbol_s) / (d_ref_T_rx_s - ref_adj_T_rx_s); - // Now compute RX time differences due to the PRN alignment in the correlators - double traveltime_ms; - double pseudorange_m; - double channel_T_rx_s; - double channel_fs_hz; - double channel_TOW_s; - double delta_T_rx_s; - for(gnss_synchro_map_iter = realigned_gnss_synchro_map.begin(); gnss_synchro_map_iter != realigned_gnss_synchro_map.end(); gnss_synchro_map_iter++) - { - channel_fs_hz = (double)gnss_synchro_map_iter->second.fs; - channel_TOW_s = gnss_synchro_map_iter->second.TOW_at_current_symbol_s; - channel_T_rx_s = (double)gnss_synchro_map_iter->second.Tracking_sample_counter / channel_fs_hz + gnss_synchro_map_iter->second.Code_phase_samples / channel_fs_hz; - // compute interpolated observation values - // two points linear interpolation using adjacent (adj) values: y=y1+(x-x1)*(y2-y1)/(x2-x1) - // TOW at the selected receiver time T_rx_s - int element_key = gnss_synchro_map_iter->second.Channel_ID; - adj_obs = adjacent_gnss_synchro_map.at(element_key); + // Now compute RX time differences due to the PRN alignment in the correlators + double traveltime_ms; + double pseudorange_m; + double channel_T_rx_s; + double channel_fs_hz; + double channel_TOW_s; + double delta_T_rx_s; + for(gnss_synchro_map_iter = realigned_gnss_synchro_map.begin(); gnss_synchro_map_iter != realigned_gnss_synchro_map.end(); gnss_synchro_map_iter++) + { + channel_fs_hz = (double)gnss_synchro_map_iter->second.fs; + channel_TOW_s = gnss_synchro_map_iter->second.TOW_at_current_symbol_s; + channel_T_rx_s = (double)gnss_synchro_map_iter->second.Tracking_sample_counter / channel_fs_hz + gnss_synchro_map_iter->second.Code_phase_samples / channel_fs_hz; + // compute interpolated observation values + // two points linear interpolation using adjacent (adj) values: y=y1+(x-x1)*(y2-y1)/(x2-x1) + // TOW at the selected receiver time T_rx_s + int element_key = gnss_synchro_map_iter->second.Channel_ID; + adj_obs = adjacent_gnss_synchro_map.at(element_key); - double adj_T_rx_s = (double)adj_obs.Tracking_sample_counter / channel_fs_hz + adj_obs.Code_phase_samples / channel_fs_hz; + double adj_T_rx_s = (double)adj_obs.Tracking_sample_counter / channel_fs_hz + adj_obs.Code_phase_samples / channel_fs_hz; - double channel_TOW_at_T_rx_s = adj_obs.TOW_at_current_symbol_s + (selected_T_rx_s - adj_T_rx_s) * (channel_TOW_s - adj_obs.TOW_at_current_symbol_s) / (channel_T_rx_s - adj_T_rx_s); + double channel_TOW_at_T_rx_s = adj_obs.TOW_at_current_symbol_s + (selected_T_rx_s - adj_T_rx_s) * (channel_TOW_s - adj_obs.TOW_at_current_symbol_s) / (channel_T_rx_s - adj_T_rx_s); - //Doppler and Accumulated carrier phase - double Carrier_phase_lin_rads = adj_obs.Carrier_phase_rads + (selected_T_rx_s - adj_T_rx_s) * (gnss_synchro_map_iter->second.Carrier_phase_rads - adj_obs.Carrier_phase_rads) / (channel_T_rx_s - adj_T_rx_s); - double Carrier_Doppler_lin_hz = adj_obs.Carrier_Doppler_hz + (selected_T_rx_s - adj_T_rx_s) * (gnss_synchro_map_iter->second.Carrier_Doppler_hz - adj_obs.Carrier_Doppler_hz) / (channel_T_rx_s - adj_T_rx_s); + //Doppler and Accumulated carrier phase + double Carrier_phase_lin_rads = adj_obs.Carrier_phase_rads + (selected_T_rx_s - adj_T_rx_s) * (gnss_synchro_map_iter->second.Carrier_phase_rads - adj_obs.Carrier_phase_rads) / (channel_T_rx_s - adj_T_rx_s); + double Carrier_Doppler_lin_hz = adj_obs.Carrier_Doppler_hz + (selected_T_rx_s - adj_T_rx_s) * (gnss_synchro_map_iter->second.Carrier_Doppler_hz - adj_obs.Carrier_Doppler_hz) / (channel_T_rx_s - adj_T_rx_s); - //compute the pseudorange (no rx time offset correction) - traveltime_ms = (ref_TOW_at_T_rx_s - channel_TOW_at_T_rx_s) * 1000.0 + GPS_STARTOFFSET_ms; - //convert to meters - pseudorange_m = traveltime_ms * GPS_C_m_ms; // [m] - // update the pseudorange object - current_gnss_synchro[gnss_synchro_map_iter->second.Channel_ID] = gnss_synchro_map_iter->second; - current_gnss_synchro[gnss_synchro_map_iter->second.Channel_ID].Pseudorange_m = pseudorange_m; - current_gnss_synchro[gnss_synchro_map_iter->second.Channel_ID].Flag_valid_pseudorange = true; - // Save the estimated RX time (no RX clock offset correction yet!) - current_gnss_synchro[gnss_synchro_map_iter->second.Channel_ID].RX_time = ref_TOW_at_T_rx_s + GPS_STARTOFFSET_ms / 1000.0; + //compute the pseudorange (no rx time offset correction) + traveltime_ms = (ref_TOW_at_T_rx_s - channel_TOW_at_T_rx_s) * 1000.0 + GPS_STARTOFFSET_ms; + //convert to meters + pseudorange_m = traveltime_ms * GPS_C_m_ms; // [m] + // update the pseudorange object + current_gnss_synchro[gnss_synchro_map_iter->second.Channel_ID] = gnss_synchro_map_iter->second; + current_gnss_synchro[gnss_synchro_map_iter->second.Channel_ID].Pseudorange_m = pseudorange_m; + current_gnss_synchro[gnss_synchro_map_iter->second.Channel_ID].Flag_valid_pseudorange = true; + // Save the estimated RX time (no RX clock offset correction yet!) + current_gnss_synchro[gnss_synchro_map_iter->second.Channel_ID].RX_time = ref_TOW_at_T_rx_s + GPS_STARTOFFSET_ms / 1000.0; - current_gnss_synchro[gnss_synchro_map_iter->second.Channel_ID].Carrier_phase_rads = Carrier_phase_lin_rads; - current_gnss_synchro[gnss_synchro_map_iter->second.Channel_ID].Carrier_Doppler_hz = Carrier_Doppler_lin_hz; - } + current_gnss_synchro[gnss_synchro_map_iter->second.Channel_ID].Carrier_phase_rads = Carrier_phase_lin_rads; + current_gnss_synchro[gnss_synchro_map_iter->second.Channel_ID].Carrier_Doppler_hz = Carrier_Doppler_lin_hz; + } - if(d_dump == true) - { - // MULTIPLEXED FILE RECORDING - Record results to file - try - { - double tmp_double; - for (unsigned int i = 0; i < d_nchannels; i++) - { - tmp_double = current_gnss_synchro[i].RX_time; - d_dump_file.write((char*)&tmp_double, sizeof(double)); - tmp_double = current_gnss_synchro[i].TOW_at_current_symbol_s; - d_dump_file.write((char*)&tmp_double, sizeof(double)); - tmp_double = current_gnss_synchro[i].Carrier_Doppler_hz; - d_dump_file.write((char*)&tmp_double, sizeof(double)); - tmp_double = current_gnss_synchro[i].Carrier_phase_rads/GPS_TWO_PI; - d_dump_file.write((char*)&tmp_double, sizeof(double)); - tmp_double = current_gnss_synchro[i].Pseudorange_m; - d_dump_file.write((char*)&tmp_double, sizeof(double)); - tmp_double = current_gnss_synchro[i].PRN; - d_dump_file.write((char*)&tmp_double, sizeof(double)); - tmp_double = current_gnss_synchro[i].Flag_valid_pseudorange; - d_dump_file.write((char*)&tmp_double, sizeof(double)); - } - } - catch (const std::ifstream::failure& e) - { - LOG(WARNING) << "Exception writing observables dump file " << e.what(); - } - } + if(d_dump == true) + { + // MULTIPLEXED FILE RECORDING - Record results to file + try + { + double tmp_double; + for (unsigned int i = 0; i < d_nchannels; i++) + { + tmp_double = current_gnss_synchro[i].RX_time; + d_dump_file.write((char*)&tmp_double, sizeof(double)); + tmp_double = current_gnss_synchro[i].TOW_at_current_symbol_s; + d_dump_file.write((char*)&tmp_double, sizeof(double)); + tmp_double = current_gnss_synchro[i].Carrier_Doppler_hz; + d_dump_file.write((char*)&tmp_double, sizeof(double)); + tmp_double = current_gnss_synchro[i].Carrier_phase_rads/GPS_TWO_PI; + d_dump_file.write((char*)&tmp_double, sizeof(double)); + tmp_double = current_gnss_synchro[i].Pseudorange_m; + d_dump_file.write((char*)&tmp_double, sizeof(double)); + tmp_double = current_gnss_synchro[i].PRN; + d_dump_file.write((char*)&tmp_double, sizeof(double)); + tmp_double = current_gnss_synchro[i].Flag_valid_pseudorange; + d_dump_file.write((char*)&tmp_double, sizeof(double)); + } + } + catch (const std::ifstream::failure& e) + { + LOG(WARNING) << "Exception writing observables dump file " << e.what(); + } + } - for (unsigned int i = 0; i < d_nchannels; i++) - { - out[i][n_outputs] = current_gnss_synchro[i]; - } + for (unsigned int i = 0; i < d_nchannels; i++) + { + out[i][n_outputs] = current_gnss_synchro[i]; + } - n_outputs++; - } + n_outputs++; + } - //Move RX time - T_rx_s = T_rx_s + T_rx_step_s; - //pop old elements from queue - for (unsigned int i = 0; i < d_nchannels; i++) - { - while (d_gnss_synchro_history_queue[i].front().Tracking_sample_counter / (double)d_gnss_synchro_history_queue[i].front().fs < (T_rx_s - past_history_s)) - { - d_gnss_synchro_history_queue[i].pop_front(); - } - } - } - }while(channel_history_ok == true && d_max_noutputs>n_outputs); + //Move RX time + T_rx_s = T_rx_s + T_rx_step_s; + //pop old elements from queue + for (unsigned int i = 0; i < d_nchannels; i++) + { + while (d_gnss_synchro_history_queue[i].front().Tracking_sample_counter / (double)d_gnss_synchro_history_queue[i].front().fs < (T_rx_s - past_history_s)) + { + d_gnss_synchro_history_queue[i].pop_front(); + } + } + } + }while(channel_history_ok == true && d_max_noutputs>n_outputs); //Multi-rate consume! for (unsigned int i = 0; i < d_nchannels; i++) - { - consume(i, n_consume[i]); //which input, how many items - } + { + consume(i, n_consume[i]); //which input, how many items + } return n_outputs; } From d4c9d378c95ec9e239a7c3c06fca6599389360f0 Mon Sep 17 00:00:00 2001 From: Javier Arribas Date: Thu, 3 Aug 2017 17:52:42 +0200 Subject: [PATCH 082/171] Adjusting observable block default buffer history --- src/algorithms/observables/adapters/hybrid_observables.cc | 2 +- .../observables/gnuradio_blocks/hybrid_observables_cc.cc | 1 - src/core/system_parameters/GPS_L1_CA.h | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/algorithms/observables/adapters/hybrid_observables.cc b/src/algorithms/observables/adapters/hybrid_observables.cc index e076925b9..a3a33d38a 100644 --- a/src/algorithms/observables/adapters/hybrid_observables.cc +++ b/src/algorithms/observables/adapters/hybrid_observables.cc @@ -57,7 +57,7 @@ HybridObservables::HybridObservables(ConfigurationInterface* configuration, } else { - default_depth = 100; + default_depth = 500; } unsigned int history_deep = configuration->property(role + ".history_depth", default_depth); observables_ = hybrid_make_observables_cc(in_streams_, dump_, dump_filename_, history_deep); diff --git a/src/algorithms/observables/gnuradio_blocks/hybrid_observables_cc.cc b/src/algorithms/observables/gnuradio_blocks/hybrid_observables_cc.cc index 2bec0859b..9ee672c7b 100644 --- a/src/algorithms/observables/gnuradio_blocks/hybrid_observables_cc.cc +++ b/src/algorithms/observables/gnuradio_blocks/hybrid_observables_cc.cc @@ -295,7 +295,6 @@ int hybrid_observables_cc::general_work (int noutput_items, double channel_T_rx_s; double channel_fs_hz; double channel_TOW_s; - double delta_T_rx_s; for(gnss_synchro_map_iter = realigned_gnss_synchro_map.begin(); gnss_synchro_map_iter != realigned_gnss_synchro_map.end(); gnss_synchro_map_iter++) { channel_fs_hz = (double)gnss_synchro_map_iter->second.fs; diff --git a/src/core/system_parameters/GPS_L1_CA.h b/src/core/system_parameters/GPS_L1_CA.h index 58249a60c..319d918e1 100644 --- a/src/core/system_parameters/GPS_L1_CA.h +++ b/src/core/system_parameters/GPS_L1_CA.h @@ -69,7 +69,7 @@ const double GPS_STARTOFFSET_ms = 68.802; //[ms] Initial sign. travel time (this // OBSERVABLE HISTORY DEEP FOR INTERPOLATION -const int GPS_L1_CA_HISTORY_DEEP = 100; +const int GPS_L1_CA_HISTORY_DEEP = 500; // NAVIGATION MESSAGE DEMODULATION AND DECODING From 365ff3a18b10e4b73e3c01b7790f76633b41fd3b Mon Sep 17 00:00:00 2001 From: Javier Arribas Date: Thu, 3 Aug 2017 17:58:11 +0200 Subject: [PATCH 083/171] Observable unit test updated and upgraded to test both code and carrier phase observables. It requires the latest version of gnss-sim, please update the simulator --- .../libs/true_observables_reader.cc | 1 + .../libs/true_observables_reader.h | 1 + .../observables/hybrid_observables_test.cc | 147 +++++++++++-- .../matlab/gps_l1_ca_dll_pll_plot_sample.m | 12 +- .../matlab/hybrid_observables_plot_sample.m | 78 ++++++- .../gps_l1_ca_dll_pll_read_tracking_dump.m | 200 +++++++++++------- .../libs/read_true_sim_observables_dump.m | 6 +- 7 files changed, 344 insertions(+), 101 deletions(-) diff --git a/src/tests/unit-tests/signal-processing-blocks/libs/true_observables_reader.cc b/src/tests/unit-tests/signal-processing-blocks/libs/true_observables_reader.cc index fbe78cca7..04305a0da 100644 --- a/src/tests/unit-tests/signal-processing-blocks/libs/true_observables_reader.cc +++ b/src/tests/unit-tests/signal-processing-blocks/libs/true_observables_reader.cc @@ -40,6 +40,7 @@ bool true_observables_reader::read_binary_obs() d_dump_file.read((char *) &doppler_l1_hz, sizeof(double)); d_dump_file.read((char *) &acc_carrier_phase_l1_cycles[i], sizeof(double)); d_dump_file.read((char *) &dist_m[i], sizeof(double)); + d_dump_file.read((char *) &true_dist_m[i], sizeof(double)); d_dump_file.read((char *) &carrier_phase_l1_cycles[i], sizeof(double)); d_dump_file.read((char *) &prn[i], sizeof(double)); } diff --git a/src/tests/unit-tests/signal-processing-blocks/libs/true_observables_reader.h b/src/tests/unit-tests/signal-processing-blocks/libs/true_observables_reader.h index a4fb8767c..8913cf61d 100644 --- a/src/tests/unit-tests/signal-processing-blocks/libs/true_observables_reader.h +++ b/src/tests/unit-tests/signal-processing-blocks/libs/true_observables_reader.h @@ -49,6 +49,7 @@ public: double doppler_l1_hz[12]; double acc_carrier_phase_l1_cycles[12]; double dist_m[12]; + double true_dist_m[12]; double carrier_phase_l1_cycles[12]; double prn[12]; diff --git a/src/tests/unit-tests/signal-processing-blocks/observables/hybrid_observables_test.cc b/src/tests/unit-tests/signal-processing-blocks/observables/hybrid_observables_test.cc index bbc5ec0af..ea6bafd05 100644 --- a/src/tests/unit-tests/signal-processing-blocks/observables/hybrid_observables_test.cc +++ b/src/tests/unit-tests/signal-processing-blocks/observables/hybrid_observables_test.cc @@ -194,7 +194,14 @@ public: int configure_generator(); int generate_signal(); - void check_results( + void check_results_carrier_phase( + arma::vec & true_ch0_phase_cycles, + arma::vec & true_ch1_phase_cycles, + arma::vec & true_ch0_tow_s, + arma::vec & measuded_ch0_phase_cycles, + arma::vec & measuded_ch1_phase_cycles, + arma::vec & measuded_ch0_RX_time_s); + void check_results_code_psudorange( arma::vec & true_ch0_dist_m, arma::vec & true_ch1_dist_m, arma::vec & true_ch0_tow_s, arma::vec & measuded_ch0_Pseudorange_m, @@ -288,21 +295,99 @@ void HybridObservablesTest::configure_receiver() config->set_property("Tracking_1C.if", "0"); config->set_property("Tracking_1C.dump", "true"); config->set_property("Tracking_1C.dump_filename", "./tracking_ch_"); - config->set_property("Tracking_1C.pll_bw_hz", "20.0"); - config->set_property("Tracking_1C.dll_bw_hz", "1.5"); + config->set_property("Tracking_1C.pll_bw_hz", "15.0"); + config->set_property("Tracking_1C.dll_bw_hz", "0.5"); config->set_property("Tracking_1C.early_late_space_chips", "0.5"); - config->set_property("TelemetryDecoder_1C.dump","true"); - config->set_property("TelemetryDecoder_1C.decimation_factor","1"); - - config->set_property("Observables.history_depth","500"); config->set_property("Observables.dump","true"); } -void HybridObservablesTest::check_results( +void HybridObservablesTest::check_results_carrier_phase( + arma::vec & true_ch0_phase_cycles, + arma::vec & true_ch1_phase_cycles, + arma::vec & true_ch0_tow_s, + arma::vec & measuded_ch0_phase_cycles, + arma::vec & measuded_ch1_phase_cycles, + arma::vec & measuded_ch0_RX_time_s) +{ + //1. True value interpolation to match the measurement times + + arma::vec true_ch0_phase_interp; + arma::vec true_ch1_phase_interp; + arma::interp1(true_ch0_tow_s, true_ch0_phase_cycles, measuded_ch0_RX_time_s, true_ch0_phase_interp); + arma::interp1(true_ch0_tow_s, true_ch1_phase_cycles, measuded_ch0_RX_time_s, true_ch1_phase_interp); + + //2. RMSE + arma::vec err_ch0_cycles; + arma::vec err_ch1_cycles; + + //compute error without the accumulated carrier phase offsets (which depends on the receiver starting time) + err_ch0_cycles = measuded_ch0_phase_cycles - true_ch0_phase_interp - measuded_ch0_phase_cycles(0) + true_ch0_phase_interp(0); + err_ch1_cycles = measuded_ch1_phase_cycles - true_ch1_phase_interp - measuded_ch1_phase_cycles(0) + true_ch1_phase_interp(0); + + arma::vec err2_ch0 = arma::square(err_ch0_cycles); + double rmse_ch0 = sqrt(arma::mean(err2_ch0)); + + //3. Mean err and variance + double error_mean_ch0 = arma::mean(err_ch0_cycles); + double error_var_ch0 = arma::var(err_ch0_cycles); + + // 4. Peaks + double max_error_ch0 = arma::max(err_ch0_cycles); + double min_error_ch0 = arma::min(err_ch0_cycles); + + arma::vec err2_ch1 = arma::square(err_ch1_cycles); + double rmse_ch1 = sqrt(arma::mean(err2_ch1)); + + //3. Mean err and variance + double error_mean_ch1 = arma::mean(err_ch1_cycles); + double error_var_ch1 = arma::var(err_ch1_cycles); + + // 4. Peaks + double max_error_ch1 = arma::max(err_ch1_cycles); + double min_error_ch1 = arma::min(err_ch1_cycles); + + + //5. report + std::streamsize ss = std::cout.precision(); + std::cout << std::setprecision(10) << "Channel 0 Carrier phase RMSE=" + << rmse_ch0 << ", mean=" << error_mean_ch0 + << ", stdev=" << sqrt(error_var_ch0) + << " (max,min)=" << max_error_ch0 + << "," << min_error_ch0 + << " [cycles]" << std::endl; + std::cout.precision (ss); + + ASSERT_LT(rmse_ch0, 1e-2); + ASSERT_LT(error_mean_ch0, 1e-2); + ASSERT_GT(error_mean_ch0, -1e-2); + ASSERT_LT(error_var_ch0, 1e-2); + ASSERT_LT(max_error_ch0, 5e-2); + ASSERT_GT(min_error_ch0, -5e-2); + + //5. report + ss = std::cout.precision(); + std::cout << std::setprecision(10) << "Channel 1 Carrier phase RMSE=" + << rmse_ch1 << ", mean=" << error_mean_ch1 + << ", stdev=" << sqrt(error_var_ch1) + << " (max,min)=" << max_error_ch1 + << "," << min_error_ch1 + << " [cycles]" << std::endl; + std::cout.precision (ss); + + ASSERT_LT(rmse_ch1, 1e-2); + ASSERT_LT(error_mean_ch1, 1e-2); + ASSERT_GT(error_mean_ch1, -1e-2); + ASSERT_LT(error_var_ch1, 1e-2); + ASSERT_LT(max_error_ch1, 5e-2); + ASSERT_GT(min_error_ch1, -5e-2); + +} + +void HybridObservablesTest::check_results_code_psudorange( arma::vec & true_ch0_dist_m, arma::vec & true_ch1_dist_m, arma::vec & true_ch0_tow_s, @@ -318,10 +403,6 @@ void HybridObservablesTest::check_results( arma::interp1(true_ch0_tow_s, true_ch1_dist_m, measuded_ch0_RX_time_s, true_ch1_dist_interp); // generate delta pseudoranges - std::cout<<"s1:"<(&tmp_E), sizeof(float)); +% d_dump_file.write(reinterpret_cast(&tmp_P), sizeof(float)); +% d_dump_file.write(reinterpret_cast(&tmp_L), sizeof(float)); +% // PROMPT I and Q (to analyze navigation symbols) +% d_dump_file.write(reinterpret_cast(&prompt_I), sizeof(float)); +% d_dump_file.write(reinterpret_cast(&prompt_Q), sizeof(float)); +% // PRN start sample stamp +% //tmp_float=(float)d_sample_counter; +% d_dump_file.write(reinterpret_cast(&d_sample_counter), sizeof(unsigned long int)); +% // accumulated carrier phase +% d_dump_file.write(reinterpret_cast(&d_acc_carrier_phase_rad), sizeof(double)); +% +% // carrier and code frequency +% d_dump_file.write(reinterpret_cast(&d_carrier_doppler_hz), sizeof(double)); +% d_dump_file.write(reinterpret_cast(&d_code_freq_chips), sizeof(double)); +% +% //PLL commands +% d_dump_file.write(reinterpret_cast(&carr_phase_error_secs_Ti), sizeof(double)); +% d_dump_file.write(reinterpret_cast(&d_carrier_doppler_hz), sizeof(double)); +% +% //DLL commands +% d_dump_file.write(reinterpret_cast(&code_error_chips_Ti), sizeof(double)); +% d_dump_file.write(reinterpret_cast(&code_error_filt_chips), sizeof(double)); +% +% // CN0 and carrier lock test +% d_dump_file.write(reinterpret_cast(&d_CN0_SNV_dB_Hz), sizeof(double)); +% d_dump_file.write(reinterpret_cast(&d_carrier_lock_test), sizeof(double)); +% +% // AUX vars (for debug purposes) +% tmp_double = d_rem_code_phase_samples; +% d_dump_file.write(reinterpret_cast(&tmp_double), sizeof(double)); +% tmp_double = static_cast(d_sample_counter + d_current_prn_length_samples); +% d_dump_file.write(reinterpret_cast(&tmp_double), sizeof(double)); +% // PRN +% unsigned int prn_ = d_acquisition_gnss_synchro->PRN; +% d_dump_file.write(reinterpret_cast(&prn_), sizeof(unsigned int)); + E=v1; + P=v2; + L=v3; + prompt_I=v4; + prompt_Q=v5; + PRN_start_sample=v6; + acc_carrier_phase_rad=v7; + carrier_doppler_hz=v8; + code_freq_hz=v9; + carr_error=v10; + carr_nco=v11; + code_error=v12; + code_nco=v13; + CN0_SNV_dB_Hz=v14; + carrier_lock_test=v15; + var1=v16; + var2=v17; + PRN=v18; + + GNSS_tracking.E=E; + GNSS_tracking.P=P; + GNSS_tracking.L=L; + GNSS_tracking.prompt_I=prompt_I; + GNSS_tracking.prompt_Q=prompt_Q; + GNSS_tracking.PRN_start_sample=PRN_start_sample; + GNSS_tracking.acc_carrier_phase_rad=acc_carrier_phase_rad; + GNSS_tracking.carrier_doppler_hz=carrier_doppler_hz; + GNSS_tracking.code_freq_hz=code_freq_hz; + GNSS_tracking.carr_error=carr_error; + GNSS_tracking.carr_nco=carr_nco; + GNSS_tracking.code_error=code_error + GNSS_tracking.code_nco=code_nco; + GNSS_tracking.CN0_SNV_dB_Hz=CN0_SNV_dB_Hz; + GNSS_tracking.carrier_lock_test=carrier_lock_test; + GNSS_tracking.d_rem_code_phase_samples=var1; + GNSS_tracking.var2=var2; + GNSS_tracking.PRN=PRN; end diff --git a/src/utils/matlab/libs/read_true_sim_observables_dump.m b/src/utils/matlab/libs/read_true_sim_observables_dump.m index 7c43389cc..af2001b69 100644 --- a/src/utils/matlab/libs/read_true_sim_observables_dump.m +++ b/src/utils/matlab/libs/read_true_sim_observables_dump.m @@ -8,7 +8,7 @@ function [observables] = read_true_sim_observables_dump (filename, count) m = nargchk (1,2,nargin); channels=12; %Simulator always use 12 channels - num_double_vars=6; + num_double_vars=7; double_size_bytes=8; skip_bytes_each_read=double_size_bytes*num_double_vars*channels; bytes_shift=0; @@ -37,6 +37,9 @@ function [observables] = read_true_sim_observables_dump (filename, count) observables.Pseudorange_m(N,:) = fread (f, count, 'float64',skip_bytes_each_read-double_size_bytes); bytes_shift=bytes_shift+double_size_bytes; fseek(f,bytes_shift,'bof'); % move to next interleaved + observables.True_range_m(N,:) = fread (f, count, 'float64',skip_bytes_each_read-double_size_bytes); + bytes_shift=bytes_shift+double_size_bytes; + fseek(f,bytes_shift,'bof'); % move to next interleaved observables.Carrier_phase_hz_v2(N,:) = fread (f, count, 'float64',skip_bytes_each_read-double_size_bytes); bytes_shift=bytes_shift+double_size_bytes; fseek(f,bytes_shift,'bof'); % move to next interleaved @@ -54,6 +57,7 @@ function [observables] = read_true_sim_observables_dump (filename, count) % d_dump_file.read((char *) &doppler_l1_hz, sizeof(double)); % d_dump_file.read((char *) &acc_carrier_phase_l1_cycles[i], sizeof(double)); % d_dump_file.read((char *) &dist_m[i], sizeof(double)); +% d_dump_file.read((char *) &true_dist_m[i], sizeof(double)); % d_dump_file.read((char *) &carrier_phase_l1_cycles[i], sizeof(double)); % d_dump_file.read((char *) &prn[i], sizeof(double)); % } From 727f4d7d0da27780ea497ebad5470fe82aec336f Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Sat, 5 Aug 2017 12:47:52 +0200 Subject: [PATCH 084/171] Remove gcc warning and apply coding style --- .../libs/gnss_sdr_sample_counter.cc | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/algorithms/libs/gnss_sdr_sample_counter.cc b/src/algorithms/libs/gnss_sdr_sample_counter.cc index ec93ce09c..13ecb2e67 100644 --- a/src/algorithms/libs/gnss_sdr_sample_counter.cc +++ b/src/algorithms/libs/gnss_sdr_sample_counter.cc @@ -38,9 +38,9 @@ gnss_sdr_sample_counter::gnss_sdr_sample_counter () : gr::sync_block("sample_cou gr::io_signature::make(0,0,0)) { this->message_port_register_out(pmt::mp("sample_counter")); - last_T_rx_s=0; - report_interval_s=1;//default reporting 1 second - flag_enable_send_msg=false; //enable it for reporting time with asynchronous message + last_T_rx_s = 0; + report_interval_s = 1;//default reporting 1 second + flag_enable_send_msg = false; //enable it for reporting time with asynchronous message } @@ -53,19 +53,19 @@ gnss_sdr_sample_counter_sptr gnss_sdr_make_sample_counter () int gnss_sdr_sample_counter::work (int noutput_items, gr_vector_const_void_star &input_items, - gr_vector_void_star &output_items) + gr_vector_void_star &output_items __attribute__((unused))) { const Gnss_Synchro *in = (const Gnss_Synchro *) input_items[0]; // input - double current_T_rx_s=in[noutput_items-1].Tracking_sample_counter/(double)in[noutput_items-1].fs; - if ((current_T_rx_s-last_T_rx_s)>report_interval_s) - { - std::cout<<"Current receiver time: "< report_interval_s) { - this->message_port_pub(pmt::mp("receiver_time"), pmt::from_double(current_T_rx_s)); + std::cout << "Current receiver time: " << floor(current_T_rx_s) << " [s]" << std::endl; + if(flag_enable_send_msg == true) + { + this->message_port_pub(pmt::mp("receiver_time"), pmt::from_double(current_T_rx_s)); + } + last_T_rx_s = current_T_rx_s; } - last_T_rx_s=current_T_rx_s; - } return noutput_items; } From a7fbde50e60e0c7105513501c3522110d1fc09eb Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Sun, 6 Aug 2017 10:26:56 +0200 Subject: [PATCH 085/171] Improve buffer handling. Remove warnings raised by gcc 7.1 --- src/algorithms/libs/rtklib/rtklib_solution.cc | 30 +++++++++---------- src/algorithms/libs/rtklib/rtklib_stream.cc | 2 +- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/src/algorithms/libs/rtklib/rtklib_solution.cc b/src/algorithms/libs/rtklib/rtklib_solution.cc index d4bf306fc..3d42806fa 100644 --- a/src/algorithms/libs/rtklib/rtklib_solution.cc +++ b/src/algorithms/libs/rtklib/rtklib_solution.cc @@ -1119,7 +1119,7 @@ int outecef(unsigned char *buff, const char *s, const sol_t *sol, trace(3,"outecef:\n"); - p += sprintf(p,"%s%s%14.4f%s%14.4f%s%14.4f%s%3d%s%3d%s%8.4f%s%8.4f%s%8.4f%s%8.4f%s%8.4f%s%8.4f%s%6.2f%s%6.1f\n", + p += snprintf(p,255,"%s%s%14.4f%s%14.4f%s%14.4f%s%3d%s%3d%s%8.4f%s%8.4f%s%8.4f%s%8.4f%s%8.4f%s%8.4f%s%6.2f%s%6.1f\n", s,sep,sol->rr[0],sep,sol->rr[1],sep,sol->rr[2],sep,sol->stat,sep, sol->ns,sep,SQRT_SOL(sol->qr[0]),sep,SQRT_SOL(sol->qr[1]),sep,SQRT_SOL(sol->qr[2]), sep,sqvar(sol->qr[3]),sep,sqvar(sol->qr[4]),sep,sqvar(sol->qr[5]), @@ -1634,39 +1634,39 @@ int outsols(unsigned char *buff, const sol_t *sol, const double *rb, if (opt->posf == SOLF_NMEA) { - if (opt->nmeaintv[0]<0.0) return 0; - if (!screent(sol->time,ts,ts,opt->nmeaintv[0])) return 0; + if (opt->nmeaintv[0] < 0.0) return 0; + if (!screent(sol->time, ts, ts, opt->nmeaintv[0])) return 0; } if (sol->stat <= SOLQ_NONE || (opt->posf == SOLF_ENU && norm_rtk(rb,3) <= 0.0)) { return 0; } - timeu = opt->timeu<0?0:(opt->timeu>20?20:opt->timeu); + timeu = opt->timeu < 0 ? 0 : (opt->timeu > 20 ? 20 : opt->timeu); time = sol->time; if (opt->times >= TIMES_UTC) time = gpst2utc(time); - if (opt->times == TIMES_JST) time = timeadd(time,9*3600.0); + if (opt->times == TIMES_JST) time = timeadd(time, 9*3600.0); - if (opt->timef) time2str(time,s,timeu); + if (opt->timef) time2str(time, s, timeu); else { - gpst = time2gpst(time,&week); - if (86400*7-gpst<0.5/pow(10.0,timeu)) + gpst = time2gpst(time, &week); + if (86400 * 7 - gpst < 0.5 / pow(10.0, timeu)) { week++; gpst = 0.0; } - sprintf(s,"%4d%s%*.*f",week,sep,6+(timeu <= 0?0:timeu+1),timeu,gpst); + snprintf(s, 64, "%4d%s%*.*f", week, sep, 6 + (timeu <= 0 ? 0 : timeu+1), timeu, gpst); } switch (opt->posf) { - case SOLF_LLH: p += outpos (p,s,sol,opt); break; - case SOLF_XYZ: p += outecef(p,s,sol,opt); break; - case SOLF_ENU: p += outenu(p,s,sol,rb,opt); break; - case SOLF_NMEA: p += outnmea_rmc(p,sol); - p += outnmea_gga(p,sol); break; + case SOLF_LLH: p += outpos(p, s, sol, opt); break; + case SOLF_XYZ: p += outecef(p, s, sol, opt); break; + case SOLF_ENU: p += outenu(p, s, sol, rb, opt); break; + case SOLF_NMEA: p += outnmea_rmc(p, sol); + p += outnmea_gga(p, sol); break; } - return p-buff; + return p - buff; } diff --git a/src/algorithms/libs/rtklib/rtklib_stream.cc b/src/algorithms/libs/rtklib/rtklib_stream.cc index 53d2bb8f4..8844f9e1c 100644 --- a/src/algorithms/libs/rtklib/rtklib_stream.cc +++ b/src/algorithms/libs/rtklib/rtklib_stream.cc @@ -1127,7 +1127,7 @@ int reqntrip_s(ntrip_t *ntrip, char *msg) tracet(3, "reqntrip_s: state=%d\n", ntrip->state); - p += sprintf(p, "SOURCE %s %s\r\n", ntrip->passwd, ntrip->mntpnt); + p += snprintf(p, 256 + NTRIP_MAXSTR, "SOURCE %s %s\r\n", ntrip->passwd, ntrip->mntpnt); p += sprintf(p, "Source-Agent: NTRIP %s\r\n", NTRIP_AGENT); p += sprintf(p, "STR: %s\r\n", ntrip->str); p += sprintf(p, "\r\n"); From 7bb3581f4b747b59d75b029470a2253a908e1c7d Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Sun, 6 Aug 2017 10:32:12 +0200 Subject: [PATCH 086/171] Improve buffer handling. Remove warnings raised by gcc 7.1 --- src/algorithms/libs/rtklib/rtklib_solution.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/algorithms/libs/rtklib/rtklib_solution.cc b/src/algorithms/libs/rtklib/rtklib_solution.cc index 3d42806fa..78daf0817 100644 --- a/src/algorithms/libs/rtklib/rtklib_solution.cc +++ b/src/algorithms/libs/rtklib/rtklib_solution.cc @@ -1627,7 +1627,7 @@ int outsols(unsigned char *buff, const sol_t *sol, const double *rb, double gpst; int week,timeu; const char *sep = opt2sep(opt); - char s[64]; + char s[255]; unsigned char *p = buff; trace(3,"outsols :\n"); @@ -1656,7 +1656,7 @@ int outsols(unsigned char *buff, const sol_t *sol, const double *rb, week++; gpst = 0.0; } - snprintf(s, 64, "%4d%s%*.*f", week, sep, 6 + (timeu <= 0 ? 0 : timeu+1), timeu, gpst); + snprintf(s, 255, "%4d%s%*.*f", week, sep, 6 + (timeu <= 0 ? 0 : timeu+1), timeu, gpst); } switch (opt->posf) { From 3dd3c2f444885b63260acb274846411b24545f68 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Mon, 7 Aug 2017 11:08:05 +0200 Subject: [PATCH 087/171] Enable building with Clang in Linux --- CMakeLists.txt | 7 ++++++- .../volk_gnsssdr/apps/CMakeLists.txt | 13 ++++++++----- src/main/CMakeLists.txt | 2 +- src/tests/CMakeLists.txt | 4 +++- 4 files changed, 18 insertions(+), 8 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 045e6e7b9..e5415986e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1351,11 +1351,16 @@ endif(ENABLE_GPROF) if(CMAKE_COMPILER_IS_GNUCXX AND NOT WIN32) set(MY_CXX_FLAGS "${MY_CXX_FLAGS} -std=c++11 -Wall -Wextra") #Add warning flags: For "-Wall" see http://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html endif(CMAKE_COMPILER_IS_GNUCXX AND NOT WIN32) + +# Enable C++11 support in Clang and use lib++ if working in macOS if(CMAKE_CXX_COMPILER_ID MATCHES "Clang") - set(MY_CXX_FLAGS "${MY_CXX_FLAGS} -std=c++11 -stdlib=libc++") + set(MY_CXX_FLAGS "${MY_CXX_FLAGS} -std=c++11") if(CMAKE_BUILD_TYPE MATCHES "Release") set(MY_CXX_FLAGS "${MY_CXX_FLAGS} -Wno-unused-private-field") endif(CMAKE_BUILD_TYPE MATCHES "Release") + if(OS_IS_MACOSX) + set(MY_CXX_FLAGS "${MY_CXX_FLAGS} -stdlib=libc++") + endif(OS_IS_MACOSX) endif(CMAKE_CXX_COMPILER_ID MATCHES "Clang") # Processor-architecture related flags diff --git a/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/apps/CMakeLists.txt b/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/apps/CMakeLists.txt index 40d38a9a1..4ba808db5 100644 --- a/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/apps/CMakeLists.txt +++ b/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/apps/CMakeLists.txt @@ -34,11 +34,14 @@ include_directories( ${Boost_INCLUDE_DIRS} ) -if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") - set(Clang_required_link "c++") -elseif("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") - set(Clang_required_link "") -endif("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") + +set(Clang_required_link "") +if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin") + if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") + set(Clang_required_link "c++") + endif("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") +endif(${CMAKE_SYSTEM_NAME} MATCHES "Darwin") + if(ORC_FOUND) set(orc_lib ${ORC_LIBRARIES}) diff --git a/src/main/CMakeLists.txt b/src/main/CMakeLists.txt index 6a8e42a1b..e1c2870cb 100644 --- a/src/main/CMakeLists.txt +++ b/src/main/CMakeLists.txt @@ -71,7 +71,7 @@ add_definitions( -DGNSS_SDR_VERSION="${VERSION}" ) if(OS_IS_MACOSX) if(CMAKE_CXX_COMPILER_ID MATCHES "Clang") - set(MAC_LIBRARIES "-stdlib=libc++ -std=c++11 -framework Accelerate -lc++") + set(MAC_LIBRARIES "-framework Accelerate -lc++") endif(CMAKE_CXX_COMPILER_ID MATCHES "Clang") endif(OS_IS_MACOSX) diff --git a/src/tests/CMakeLists.txt b/src/tests/CMakeLists.txt index 6448a5388..1ee248914 100644 --- a/src/tests/CMakeLists.txt +++ b/src/tests/CMakeLists.txt @@ -141,7 +141,9 @@ if(OPENSSL_FOUND) endif(OPENSSL_FOUND) if(CMAKE_CXX_COMPILER_ID MATCHES "Clang") - set(CLANG_FLAGS "-stdlib=libc++ -std=c++11 -lc++") + if(OS_IS_MACOSX) + set(CLANG_FLAGS "-stdlib=libc++ -lc++") + endif(OS_IS_MACOSX) endif(CMAKE_CXX_COMPILER_ID MATCHES "Clang") if(OPENCL_FOUND) From 31e393308434375ea328f7079bbae7d3a4a4c4e9 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Mon, 7 Aug 2017 19:29:05 +0200 Subject: [PATCH 088/171] Improve control on minimal required versions --- CMakeLists.txt | 131 +++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 105 insertions(+), 26 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e5415986e..e4065bb44 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,6 +22,7 @@ if(${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_BINARY_DIR}) message(WARNING "In-tree build is bad practice. Try 'cd build && cmake ../' ") endif(${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_BINARY_DIR}) + cmake_minimum_required(VERSION 2.8) project(gnss-sdr CXX C) list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/Modules) @@ -83,6 +84,7 @@ if(ENABLE_FPGA) endif(ENABLE_FPGA) + ############################### # GNSS-SDR version information ############################### @@ -278,6 +280,8 @@ if(UNIX) -D_LARGE_FILES ) endif(UNIX) + +# Determine if we are using make or ninja if(CMAKE_MAKE_PROGRAM MATCHES "make") set(CMAKE_MAKE_PROGRAM_PRETTY_NAME "make") endif(CMAKE_MAKE_PROGRAM MATCHES "make") @@ -291,29 +295,72 @@ endif(NOT CMAKE_MAKE_PROGRAM_PRETTY_NAME) ################################################################################ -# Checkout cmake version +# Minimum required versions ################################################################################ -if(CMAKE_VERSION VERSION_LESS 2.8.8) - message(STATUS "Your CMake version is too old and does not support some features required by GNSS-SDR. CMake version must be at least 2.8.8. For more information check https://github.com/joakimkarlsson/bandit/issues/40") - message(FATAL_ERROR "Fatal error: CMake >= 2.8.8 required.") -endif(CMAKE_VERSION VERSION_LESS 2.8.8) +set(GNSSSDR_CMAKE_MIN_VERSION "2.8.8") +set(GNSSSDR_GCC_MIN_VERSION "4.7.2") +set(GNSSSDR_CLANG_MIN_VERSION "3.4.0") +set(GNSSSDR_APPLECLANG_MIN_VERSION "500") +set(GNSSSDR_GNURADIO_MIN_VERSION "3.7.3") +set(GNSSSDR_BOOST_MIN_VERSION "1.45") +set(GNSSSDR_PYTHON_MIN_VERSION "2.7") +set(GNSSSDR_MAKO_MIN_VERSION "0.4.2") +set(GNSSSDR_ARMADILLO_MIN_VERSION "4.200.0") + + +################################################################################ +# Check cmake version +################################################################################ +if(CMAKE_VERSION VERSION_LESS ${GNSSSDR_CMAKE_MIN_VERSION}) + message(STATUS "Your CMake version is too old and does not support some features required by GNSS-SDR. CMake version must be at least ${GNSSSDR_CMAKE_MIN_VERSION}. For more information check https://github.com/joakimkarlsson/bandit/issues/40") + message(FATAL_ERROR "Fatal error: CMake >= ${GNSSSDR_CMAKE_MIN_VERSION} required.") +endif(CMAKE_VERSION VERSION_LESS ${GNSSSDR_CMAKE_MIN_VERSION}) ################################################################################ -# Checkout compiler version +# Check compiler version ################################################################################ -if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU") - if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.7) - message(STATUS "Your GCC version is too old and does not support some C++11 features required by GNSS-SDR. GCC version must be at least 4.7") +if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU") + if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS ${GNSSSDR_GCC_MIN_VERSION}) + message(STATUS "Your GCC version is too old and does not support some C++11 features required by GNSS-SDR. GCC version must be at least ${GNSSSDR_GCC_MIN_VERSION}") if(${LINUX_DISTRIBUTION} MATCHES "Ubuntu") if(${LINUX_VER} MATCHES "12.04") message(STATUS "For instructions on how to upgrade GCC, check http://askubuntu.com/a/271561") endif(${LINUX_VER} MATCHES "12.04") endif(${LINUX_DISTRIBUTION} MATCHES "Ubuntu") - message(FATAL_ERROR "Fatal error: GCC >= 4.7 required.") - endif(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.7) -endif("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU") + message(FATAL_ERROR "Fatal error: GCC >= ${GNSSSDR_GCC_MIN_VERSION} required.") + endif(CMAKE_CXX_COMPILER_VERSION VERSION_LESS ${GNSSSDR_GCC_MIN_VERSION}) +endif(CMAKE_CXX_COMPILER_ID STREQUAL "GNU") + +if(CMAKE_CXX_COMPILER_ID STREQUAL "Clang") + execute_process(COMMAND + ${CMAKE_CXX_COMPILER} -v + RESULT_VARIABLE _res ERROR_VARIABLE _err + ERROR_STRIP_TRAILING_WHITESPACE) + if(${_res} STREQUAL "0") + # output is in error stream + string(REGEX MATCH "^Apple.*" IS_APPLE ${_err}) + if("${IS_APPLE}" STREQUAL "") + set(MIN_VERSION ${GNSSSDR_CLANG_MIN_VERSION}) + set(APPLE_STR "") + # retrieve the compiler's version from it + string(REGEX MATCH "clang version [0-9.]+" CLANG_OTHER_VERSION ${_err}) + string(REGEX MATCH "[0-9.]+" CLANG_VERSION ${CLANG_OTHER_VERSION}) + else("${IS_APPLE}" STREQUAL "") + set(MIN_VERSION ${GNSSSDR_APPLECLANG_MIN_VERSION}) + set(APPLE_STR "Apple ") + # retrieve the compiler's version from it + string(REGEX MATCH "(clang-[0-9.]+)" CLANG_APPLE_VERSION ${_err}) + string(REGEX MATCH "[0-9.]+" CLANG_VERSION ${CLANG_APPLE_VERSION}) + endif("${IS_APPLE}" STREQUAL "") + if(${CLANG_VERSION} VERSION_LESS "${MIN_VERSION}") + message(WARNING "\nThe compiler selected to build GNSS-SDR (${APPLE_STR}Clang version ${CLANG_VERSION} : ${CMAKE_CXX_COMPILER}) is older than that officially supported (${MIN_VERSION} minimum). This build may or not work. We highly recommend using Apple Clang version ${APPLECLANG_MIN_VERSION} or more recent, or Clang version ${CLANG_MIN_VERSION} or more recent.") + endif(${CLANG_VERSION} VERSION_LESS "${MIN_VERSION}") + else(${_res} STREQUAL "0") + message(WARNING "\nCannot determine the version of the compiler selected to build GNSS-SDR (${APPLE_STR}Clang : ${CMAKE_CXX_COMPILER}). This build may or not work. We highly recommend using Apple Clang version ${APPLECLANG_MIN_VERSION} or more recent, or Clang version ${CLANG_MIN_VERSION} or more recent.") + endif(${_res} STREQUAL "0") +endif(CMAKE_CXX_COMPILER_ID STREQUAL "Clang") @@ -393,12 +440,13 @@ set(Boost_ADDITIONAL_VERSIONS "1.60.0" "1.60" "1.61.0" "1.61" "1.62.0" "1.62" "1.63.0" "1.63" "1.64.0" "1.64" "1.65.0" "1.65" "1.66.0" "1.66" "1.67.0" "1.67" "1.68.0" "1.68" "1.69.0" "1.69" "1.70.0" "1.70" "1.71.0" "1.71" "1.72.0" "1.72" "1.73.0" "1.73" "1.74.0" "1.74" + "1.75.0" "1.75" "1.76.0" "1.76" "1.77.0" "1.77" "1.78.0" "1.78" "1.79.0" "1.79" ) set(Boost_USE_MULTITHREAD ON) set(Boost_USE_STATIC_LIBS OFF) find_package(Boost COMPONENTS date_time system filesystem thread serialization chrono unit_test_framework program_options REQUIRED) if(NOT Boost_FOUND) - message(FATAL_ERROR "Fatal error: Boost (version >=1.45.0) required.") + message(FATAL_ERROR "Fatal error: Boost (version >=${GNSSSDR_BOOST_MIN_VERSION}) required.") endif(NOT Boost_FOUND) @@ -409,17 +457,17 @@ endif(NOT Boost_FOUND) set(GR_REQUIRED_COMPONENTS RUNTIME ANALOG BLOCKS FFT FILTER PMT) find_package(Gnuradio) if(PC_GNURADIO_RUNTIME_VERSION) - if(PC_GNURADIO_RUNTIME_VERSION VERSION_LESS 3.7.3) + if(PC_GNURADIO_RUNTIME_VERSION VERSION_LESS ${GNSSSDR_GNURADIO_MIN_VERSION}) set(GNURADIO_RUNTIME_FOUND) message(STATUS "The GNU Radio version installed in your system is too old.") - endif(PC_GNURADIO_RUNTIME_VERSION VERSION_LESS 3.7.3) + endif(PC_GNURADIO_RUNTIME_VERSION VERSION_LESS ${GNSSSDR_GNURADIO_MIN_VERSION}) endif(PC_GNURADIO_RUNTIME_VERSION) if(NOT GNURADIO_RUNTIME_FOUND) - message(STATUS "CMake cannot find GNU Radio >= 3.7.3") + message(STATUS "CMake cannot find GNU Radio >= ${GNSSSDR_GNURADIO_MIN_VERSION}") if(OS_IS_LINUX) message("Go to https://github.com/gnuradio/pybombs") message("and follow the instructions to install GNU Radio in your system.") - message(FATAL_ERROR "GNU Radio 3.7.3 or later is required to build gnss-sdr") + message(FATAL_ERROR "GNU Radio ${GNSSSDR_GNURADIO_MIN_VERSION} or later is required to build gnss-sdr") endif(OS_IS_LINUX) if(OS_IS_MACOSX) message("You can install it easily via Macports:") @@ -427,24 +475,24 @@ if(NOT GNURADIO_RUNTIME_FOUND) message("Alternatively, you can use homebrew:") message(" brew tap odrisci/gnuradio") message(" brew install gnuradio" ) - message(FATAL_ERROR "GNU Radio 3.7.3 or later is required to build gnss-sdr") + message(FATAL_ERROR "GNU Radio ${GNSSSDR_GNURADIO_MIN_VERSION} or later is required to build gnss-sdr") endif(OS_IS_MACOSX) endif(NOT GNURADIO_RUNTIME_FOUND) if(NOT GNURADIO_ANALOG_FOUND) - message(FATAL_ERROR "*** The gnuradio-analog library v3.7.3 or later is required to build gnss-sdr") + message(FATAL_ERROR "*** The gnuradio-analog library v${GNSSSDR_GNURADIO_MIN_VERSION} or later is required to build gnss-sdr") endif() if(NOT GNURADIO_BLOCKS_FOUND) - message(FATAL_ERROR "*** The gnuradio-blocks library v3.7.3 or later is required to build gnss-sdr") + message(FATAL_ERROR "*** The gnuradio-blocks library v${GNSSSDR_GNURADIO_MIN_VERSION} or later is required to build gnss-sdr") endif() if(NOT GNURADIO_FILTER_FOUND) - message(FATAL_ERROR "*** The gnuradio-filter library v3.7.3 or later is required to build gnss-sdr") + message(FATAL_ERROR "*** The gnuradio-filter library v${GNSSSDR_GNURADIO_MIN_VERSION} or later is required to build gnss-sdr") endif() if(NOT GNURADIO_FFT_FOUND) - message(FATAL_ERROR "*** The gnuradio-fft library v3.7.3 or later is required to build gnss-sdr") + message(FATAL_ERROR "*** The gnuradio-fft library v${GNSSSDR_GNURADIO_MIN_VERSION} or later is required to build gnss-sdr") endif() if(NOT GNURADIO_PMT_FOUND) - message(FATAL_ERROR "*** The gnuradio-pmt library v3.7.3 or later is required to build gnss-sdr") + message(FATAL_ERROR "*** The gnuradio-pmt library v${GNSSSDR_GNURADIO_MIN_VERSION} or later is required to build gnss-sdr") endif() @@ -480,12 +528,12 @@ if(NOT VOLK_GNSSSDR_FOUND) # Find Python required modules ############################### include(SetupPython) #sets PYTHON_EXECUTABLE and PYTHON_DASH_B - GNSSSDR_PYTHON_CHECK_MODULE("python >= 2.7" sys "sys.version.split()[0] >= '2.7'" PYTHON_MIN_VER_FOUND) - GNSSSDR_PYTHON_CHECK_MODULE("mako >= 0.4.2" mako "mako.__version__ >= '0.4.2'" MAKO_FOUND) + GNSSSDR_PYTHON_CHECK_MODULE("python >= ${GNSSSDR_PYTHON_MIN_VERSION}" sys "sys.version.split()[0] >= '${GNSSSDR_PYTHON_MIN_VERSION}'" PYTHON_MIN_VER_FOUND) + GNSSSDR_PYTHON_CHECK_MODULE("mako >= ${GNSSSDR_MAKO_MIN_VERSION}" mako "mako.__version__ >= '${GNSSSDR_MAKO_MIN_VERSION}'" MAKO_FOUND) GNSSSDR_PYTHON_CHECK_MODULE("six - python 2 and 3 compatibility library" six "True" SIX_FOUND) if(NOT PYTHON_MIN_VER_FOUND) - message(FATAL_ERROR "Python 2.7 or greater required to build VOLK_GNSSSDR") + message(FATAL_ERROR "Python ${GNSSSDR_PYTHON_MIN_VERSION} or greater required to build VOLK_GNSSSDR") endif() # Mako @@ -949,6 +997,28 @@ if(OS_IS_LINUX) /usr/lib/gcc/sparc64-linux-gnu/6 /usr/lib/gcc/x86_64-linux-gnux32/6 /usr/lib/gcc/sh4-linux-gnu/6 + /usr/lib/gcc/x86_64-linux-gnu/7 # Debian 9 Buster + /usr/lib/gcc/alpha-linux-gnu/7 + /usr/lib/gcc/aarch64-linux-gnu/7 + /usr/lib/gcc/arm-linux-gnueabi/7 + /usr/lib/gcc/arm-linux-gnueabihf/7 + /usr/lib/gcc/hppa-linux-gnu/7 + /usr/lib/gcc/i686-gnu/7 + /usr/lib/gcc/i686-linux-gnu/7 + /usr/lib/gcc/x86_64-kfreebsd-gnu/7 + /usr/lib/gcc/i686-kfreebsd-gnu/7 + /usr/lib/gcc/m68k-linux-gnu/7 + /usr/lib/gcc/mips-linux-gnu/7 + /usr/lib/gcc/mips64el-linux-gnuabi64/7 + /usr/lib/gcc/mipsel-linux-gnu/7 + /usr/lib/gcc/powerpc-linux-gnu/7 + /usr/lib/gcc/powerpc-linux-gnuspe/7 + /usr/lib/gcc/powerpc64-linux-gnu/7 + /usr/lib/gcc/powerpc64le-linux-gnu/7 + /usr/lib/gcc/s390x-linux-gnu/7 + /usr/lib/gcc/sparc64-linux-gnu/7 + /usr/lib/gcc/x86_64-linux-gnux32/7 + /usr/lib/gcc/sh4-linux-gnu/7 ) if(NOT GFORTRAN) message(STATUS "The gfortran library has not been found.") @@ -964,6 +1034,11 @@ if(OS_IS_LINUX) endif(OS_IS_LINUX) find_package(Armadillo) +if(${ARMADILLO_VERSION_STRING} VERSION_LESS ${GNSSSDR_ARMADILLO_MIN_VERSION}) + set(ARMADILLO_FOUND false) + set(ENABLE_OWN_ARMADILLO true) +endif(${ARMADILLO_VERSION_STRING} VERSION_LESS ${GNSSSDR_ARMADILLO_MIN_VERSION}) + if(NOT ARMADILLO_FOUND OR ENABLE_OWN_ARMADILLO) message(STATUS " Armadillo has not been found.") message(STATUS " Armadillo will be downloaded and built automatically") @@ -1213,6 +1288,8 @@ else(ENABLE_CUDA) message(STATUS "Enable it with 'cmake -DENABLE_CUDA=ON ../' to add support for GPU-based acceleration using CUDA." ) endif(ENABLE_CUDA) + + ############################################################################### # FPGA (OPTIONAL) ############################################################################### @@ -1224,6 +1301,8 @@ else(ENABLE_FPGA) message(STATUS "Enable it with 'cmake -DENABLE_FPGA=ON ../' to add support for GPU-based acceleration using the FPGA." ) endif(ENABLE_FPGA) + + ################################################################################ # Setup of optional drivers ################################################################################ From b9b985a506597eeff478b88b26171aa17540f9cd Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Tue, 8 Aug 2017 14:18:19 +0200 Subject: [PATCH 089/171] Switch to C++14 standard when the compiler allows it --- CMakeLists.txt | 77 +++++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 67 insertions(+), 10 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e4065bb44..344e26faa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -308,6 +308,7 @@ set(GNSSSDR_MAKO_MIN_VERSION "0.4.2") set(GNSSSDR_ARMADILLO_MIN_VERSION "4.200.0") + ################################################################################ # Check cmake version ################################################################################ @@ -323,7 +324,7 @@ endif(CMAKE_VERSION VERSION_LESS ${GNSSSDR_CMAKE_MIN_VERSION}) ################################################################################ if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU") if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS ${GNSSSDR_GCC_MIN_VERSION}) - message(STATUS "Your GCC version is too old and does not support some C++11 features required by GNSS-SDR. GCC version must be at least ${GNSSSDR_GCC_MIN_VERSION}") + message(STATUS "Your GCC version is too old and does not support some C++ features required by GNSS-SDR. GCC version must be at least ${GNSSSDR_GCC_MIN_VERSION}") if(${LINUX_DISTRIBUTION} MATCHES "Ubuntu") if(${LINUX_VER} MATCHES "12.04") message(STATUS "For instructions on how to upgrade GCC, check http://askubuntu.com/a/271561") @@ -395,6 +396,7 @@ if(OS_IS_LINUX) endif(OS_IS_LINUX) + ################################################################################ # Googletest - https://github.com/google/googletest ################################################################################ @@ -580,8 +582,34 @@ if(NOT VOLK_GNSSSDR_FOUND) endif(CMAKE_GENERATOR STREQUAL Xcode) endif(OS_IS_MACOSX) - set(CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") set(C_FLAGS "${CMAKE_C_FLAGS} -std=c11") + set(CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") + + if(CMAKE_COMPILER_IS_GNUCXX AND NOT WIN32) + if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS "6.1.1") + set(CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") + else(CMAKE_CXX_COMPILER_VERSION VERSION_LESS "6.1.1") + set(CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14") + endif(CMAKE_CXX_COMPILER_VERSION VERSION_LESS "6.1.1") + endif(CMAKE_COMPILER_IS_GNUCXX AND NOT WIN32) + + if(CMAKE_CXX_COMPILER_ID MATCHES "Clang") + if(OS_IS_LINUX) + if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS "3.5.0") + set(CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") + else(CMAKE_CXX_COMPILER_VERSION VERSION_LESS "3.5.0") + set(CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14") + endif(CMAKE_CXX_COMPILER_VERSION VERSION_LESS "3.5.0") + endif(OS_IS_LINUX) + if(OS_IS_MACOSX) + if(CLANG_VERSION VERSION_LESS "600") + set(CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") + else(CLANG_VERSION VERSION_LESS "600") + set(CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14") + endif(CLANG_VERSION VERSION_LESS "600") + endif(OS_IS_MACOSX) + endif(CMAKE_CXX_COMPILER_ID MATCHES "Clang") + if(CMAKE_CROSSCOMPILING) set(VOLK_GNSSSDR_COMPILER "") else(CMAKE_CROSSCOMPILING) @@ -1034,10 +1062,12 @@ if(OS_IS_LINUX) endif(OS_IS_LINUX) find_package(Armadillo) -if(${ARMADILLO_VERSION_STRING} VERSION_LESS ${GNSSSDR_ARMADILLO_MIN_VERSION}) - set(ARMADILLO_FOUND false) - set(ENABLE_OWN_ARMADILLO true) -endif(${ARMADILLO_VERSION_STRING} VERSION_LESS ${GNSSSDR_ARMADILLO_MIN_VERSION}) +if(ARMADILLO_FOUND) + if(${ARMADILLO_VERSION_STRING} VERSION_LESS ${GNSSSDR_ARMADILLO_MIN_VERSION}) + set(ARMADILLO_FOUND false) + set(ENABLE_OWN_ARMADILLO true) + endif(${ARMADILLO_VERSION_STRING} VERSION_LESS ${GNSSSDR_ARMADILLO_MIN_VERSION}) +endif(ARMADILLO_FOUND) if(NOT ARMADILLO_FOUND OR ENABLE_OWN_ARMADILLO) message(STATUS " Armadillo has not been found.") @@ -1426,14 +1456,34 @@ endif(ENABLE_GPROF) ######################################################################## # Set compiler flags ######################################################################## -# Enable C++11 support in GCC +# Enable C++14 support in GCC / Fallback to C++11 when using GCC < 6.1.1 if(CMAKE_COMPILER_IS_GNUCXX AND NOT WIN32) - set(MY_CXX_FLAGS "${MY_CXX_FLAGS} -std=c++11 -Wall -Wextra") #Add warning flags: For "-Wall" see http://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html + if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS "6.1.1") + set(MY_CXX_FLAGS "${MY_CXX_FLAGS} -std=c++11") + else(CMAKE_CXX_COMPILER_VERSION VERSION_LESS "6.1.1") + set(MY_CXX_FLAGS "${MY_CXX_FLAGS} -std=c++14") + endif(CMAKE_CXX_COMPILER_VERSION VERSION_LESS "6.1.1") + set(MY_CXX_FLAGS "${MY_CXX_FLAGS} -Wall -Wextra") #Add warning flags: For "-Wall" see http://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html endif(CMAKE_COMPILER_IS_GNUCXX AND NOT WIN32) -# Enable C++11 support in Clang and use lib++ if working in macOS +# Enable C++14 support in Clang from 3.5 / Fallback to C++11 if older version and use lib++ if working in macOS if(CMAKE_CXX_COMPILER_ID MATCHES "Clang") - set(MY_CXX_FLAGS "${MY_CXX_FLAGS} -std=c++11") + if(OS_IS_LINUX) + if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS "3.5.0") + set(MY_CXX_FLAGS "${MY_CXX_FLAGS} -std=c++11") + else(CMAKE_CXX_COMPILER_VERSION VERSION_LESS "3.5.0") + set(MY_CXX_FLAGS "${MY_CXX_FLAGS} -std=c++14") + endif(CMAKE_CXX_COMPILER_VERSION VERSION_LESS "3.5.0") + endif(OS_IS_LINUX) + if(OS_IS_MACOSX) + # See https://trac.macports.org/wiki/XcodeVersionInfo for Apple Clang version equivalences + if(CLANG_VERSION VERSION_LESS "600") + set(MY_CXX_FLAGS "${MY_CXX_FLAGS} -std=c++11") + else(CLANG_VERSION VERSION_LESS "600") + set(MY_CXX_FLAGS "${MY_CXX_FLAGS} -std=c++14") + endif(CLANG_VERSION VERSION_LESS "600") + endif(OS_IS_MACOSX) + if(CMAKE_BUILD_TYPE MATCHES "Release") set(MY_CXX_FLAGS "${MY_CXX_FLAGS} -Wno-unused-private-field") endif(CMAKE_BUILD_TYPE MATCHES "Release") @@ -1442,6 +1492,13 @@ if(CMAKE_CXX_COMPILER_ID MATCHES "Clang") endif(OS_IS_MACOSX) endif(CMAKE_CXX_COMPILER_ID MATCHES "Clang") +if(NOT (CMAKE_COMPILER_IS_GNUCXX AND NOT WIN32) AND NOT (CMAKE_CXX_COMPILER_ID MATCHES "Clang")) + if(NOT (CMAKE_VERSION VERSION_LESS "3.1")) + set(CMAKE_C_STANDARD 11) + set(CMAKE_CXX_STANDARD 14) + endif(NOT (CMAKE_VERSION VERSION_LESS "3.1")) +endif(NOT (CMAKE_COMPILER_IS_GNUCXX AND NOT WIN32) AND NOT (CMAKE_CXX_COMPILER_ID MATCHES "Clang")) + # Processor-architecture related flags # See http://gcc.gnu.org/onlinedocs/gcc/i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options if (NOT ARCH_COMPILER_FLAGS) From ed5191fc54fc03ee93879b6d4374d51d642d1776 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Thu, 10 Aug 2017 15:34:38 +0200 Subject: [PATCH 090/171] Clean headers. C++ libraries preferred over C libraries --- src/algorithms/libs/rtklib/rtklib.h | 11 +++++------ src/algorithms/libs/rtklib/rtklib_rtkcmn.cc | 5 +---- .../volk_gnsssdr/lib/qa_utils.cc | 16 ++++++---------- .../galileo_e1b_telemetry_decoder_cc.cc | 1 - .../galileo_e5a_telemetry_decoder_cc.cc | 1 - .../telemetry_decoder/libs/viterbi_decoder.h | 1 - src/tests/system-tests/obs_gps_l1_system_test.cc | 8 +++----- .../gps_l2_m_pcps_acquisition_test.cc | 1 - .../observables/hybrid_observables_test.cc | 12 ++++-------- .../gps_l1_ca_telemetry_decoder_test.cc | 13 +++++-------- .../tracking/gps_l1_ca_dll_pll_tracking_test.cc | 1 - .../gps_l1_ca_dll_pll_tracking_test_fpga.cc | 1 - 12 files changed, 24 insertions(+), 47 deletions(-) diff --git a/src/algorithms/libs/rtklib/rtklib.h b/src/algorithms/libs/rtklib/rtklib.h index 1d0b6df1d..9d16851e5 100644 --- a/src/algorithms/libs/rtklib/rtklib.h +++ b/src/algorithms/libs/rtklib/rtklib.h @@ -53,13 +53,12 @@ #ifndef GNSS_SDR_RTKLIB_H_ #define GNSS_SDR_RTKLIB_H_ -#include -#include -#include -#include +#include +#include +#include #include -#include -#include +#include +#include #include #include #include "MATH_CONSTANTS.h" diff --git a/src/algorithms/libs/rtklib/rtklib_rtkcmn.cc b/src/algorithms/libs/rtklib/rtklib_rtkcmn.cc index 8120152fa..1d569997e 100644 --- a/src/algorithms/libs/rtklib/rtklib_rtkcmn.cc +++ b/src/algorithms/libs/rtklib/rtklib_rtkcmn.cc @@ -51,12 +51,9 @@ *----------------------------------------------------------------------------*/ #include "rtklib_rtkcmn.h" -//#include -//#include -#include +//#include #include #include -//#include #include #include #include diff --git a/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/lib/qa_utils.cc b/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/lib/qa_utils.cc index c5b3f5262..620f64042 100644 --- a/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/lib/qa_utils.cc +++ b/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/lib/qa_utils.cc @@ -17,22 +17,18 @@ */ #include "qa_utils.h" + +#include +#include +#include +#include + #include #include #include #include #include -#include -#include -#include -#include -#include -#include -#include -#include -#include - #include #include #include diff --git a/src/algorithms/telemetry_decoder/gnuradio_blocks/galileo_e1b_telemetry_decoder_cc.cc b/src/algorithms/telemetry_decoder/gnuradio_blocks/galileo_e1b_telemetry_decoder_cc.cc index 62191ef86..3f52f1f4b 100644 --- a/src/algorithms/telemetry_decoder/gnuradio_blocks/galileo_e1b_telemetry_decoder_cc.cc +++ b/src/algorithms/telemetry_decoder/gnuradio_blocks/galileo_e1b_telemetry_decoder_cc.cc @@ -31,7 +31,6 @@ #include "galileo_e1b_telemetry_decoder_cc.h" -#include #include #include #include diff --git a/src/algorithms/telemetry_decoder/gnuradio_blocks/galileo_e5a_telemetry_decoder_cc.cc b/src/algorithms/telemetry_decoder/gnuradio_blocks/galileo_e5a_telemetry_decoder_cc.cc index 0129151ee..55b9cfc0d 100644 --- a/src/algorithms/telemetry_decoder/gnuradio_blocks/galileo_e5a_telemetry_decoder_cc.cc +++ b/src/algorithms/telemetry_decoder/gnuradio_blocks/galileo_e5a_telemetry_decoder_cc.cc @@ -35,7 +35,6 @@ */ #include "galileo_e5a_telemetry_decoder_cc.h" -#include #include #include #include diff --git a/src/algorithms/telemetry_decoder/libs/viterbi_decoder.h b/src/algorithms/telemetry_decoder/libs/viterbi_decoder.h index f9b3249e5..4cd6d6885 100644 --- a/src/algorithms/telemetry_decoder/libs/viterbi_decoder.h +++ b/src/algorithms/telemetry_decoder/libs/viterbi_decoder.h @@ -33,7 +33,6 @@ #define GNSS_SDR_VITERBI_DECODER_H_ #include -#include /*! * \brief Class that implements a Viterbi decoder diff --git a/src/tests/system-tests/obs_gps_l1_system_test.cc b/src/tests/system-tests/obs_gps_l1_system_test.cc index 4948e17b7..b0b15103d 100644 --- a/src/tests/system-tests/obs_gps_l1_system_test.cc +++ b/src/tests/system-tests/obs_gps_l1_system_test.cc @@ -30,14 +30,12 @@ */ #include +#include +#include #include #include -#include -#include #include -#include -#include -#include +#include #include #include #include diff --git a/src/tests/unit-tests/signal-processing-blocks/acquisition/gps_l2_m_pcps_acquisition_test.cc b/src/tests/unit-tests/signal-processing-blocks/acquisition/gps_l2_m_pcps_acquisition_test.cc index a099976c1..e45af6eca 100644 --- a/src/tests/unit-tests/signal-processing-blocks/acquisition/gps_l2_m_pcps_acquisition_test.cc +++ b/src/tests/unit-tests/signal-processing-blocks/acquisition/gps_l2_m_pcps_acquisition_test.cc @@ -34,7 +34,6 @@ #include #include -#include #include #include #include diff --git a/src/tests/unit-tests/signal-processing-blocks/observables/hybrid_observables_test.cc b/src/tests/unit-tests/signal-processing-blocks/observables/hybrid_observables_test.cc index ea6bafd05..00462b0a5 100644 --- a/src/tests/unit-tests/signal-processing-blocks/observables/hybrid_observables_test.cc +++ b/src/tests/unit-tests/signal-processing-blocks/observables/hybrid_observables_test.cc @@ -30,15 +30,11 @@ * ------------------------------------------------------------------------- */ - -#include -#include -#include -#include -#include -#include -#include #include +#include +#include +#include +#include #include #include #include diff --git a/src/tests/unit-tests/signal-processing-blocks/telemetry_decoder/gps_l1_ca_telemetry_decoder_test.cc b/src/tests/unit-tests/signal-processing-blocks/telemetry_decoder/gps_l1_ca_telemetry_decoder_test.cc index 3cd015762..75a249a18 100644 --- a/src/tests/unit-tests/signal-processing-blocks/telemetry_decoder/gps_l1_ca_telemetry_decoder_test.cc +++ b/src/tests/unit-tests/signal-processing-blocks/telemetry_decoder/gps_l1_ca_telemetry_decoder_test.cc @@ -30,15 +30,12 @@ * ------------------------------------------------------------------------- */ - -#include -#include -#include -#include -#include -#include -#include #include +#include +#include +#include +#include +#include #include #include #include diff --git a/src/tests/unit-tests/signal-processing-blocks/tracking/gps_l1_ca_dll_pll_tracking_test.cc b/src/tests/unit-tests/signal-processing-blocks/tracking/gps_l1_ca_dll_pll_tracking_test.cc index c1eeec3cd..fbd5c99d9 100644 --- a/src/tests/unit-tests/signal-processing-blocks/tracking/gps_l1_ca_dll_pll_tracking_test.cc +++ b/src/tests/unit-tests/signal-processing-blocks/tracking/gps_l1_ca_dll_pll_tracking_test.cc @@ -43,7 +43,6 @@ #include #include #include -#include #include "GPS_L1_CA.h" #include "gnss_block_factory.h" #include "gnss_block_interface.h" diff --git a/src/tests/unit-tests/signal-processing-blocks/tracking/gps_l1_ca_dll_pll_tracking_test_fpga.cc b/src/tests/unit-tests/signal-processing-blocks/tracking/gps_l1_ca_dll_pll_tracking_test_fpga.cc index 333b33ffe..82a7272ee 100644 --- a/src/tests/unit-tests/signal-processing-blocks/tracking/gps_l1_ca_dll_pll_tracking_test_fpga.cc +++ b/src/tests/unit-tests/signal-processing-blocks/tracking/gps_l1_ca_dll_pll_tracking_test_fpga.cc @@ -49,7 +49,6 @@ #include #include #include -#include #include "GPS_L1_CA.h" #include "gnss_block_factory.h" #include "gnss_block_interface.h" From 18cd7daa09bd1f09e91b739d613b37c50da3b710 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Fri, 11 Aug 2017 05:18:38 +0200 Subject: [PATCH 091/171] Eliminate ctime library. Replaced by chrono or boost::date_time --- .../PVT/gnuradio_blocks/rtklib_pvt_cc.cc | 9 +- .../PVT/gnuradio_blocks/rtklib_pvt_cc.h | 5 +- src/algorithms/PVT/libs/geojson_printer.cc | 20 ++- src/algorithms/PVT/libs/kml_printer.cc | 25 ++- src/algorithms/PVT/libs/rtcm_printer.cc | 20 ++- src/algorithms/libs/gnss_sdr_valve.cc | 5 + src/algorithms/libs/gnss_sdr_valve.h | 5 +- src/algorithms/libs/rtklib/rtklib.h | 11 +- .../volk_gnsssdr/lib/qa_utils.cc | 11 +- src/main/main.cc | 21 ++- src/tests/system-tests/ttff_gps_l1.cc | 28 ++-- .../arithmetic/code_generation_test.cc | 50 +++--- .../arithmetic/complex_carrier_test.cc | 43 +++-- .../unit-tests/arithmetic/conjugate_test.cc | 54 +++---- .../unit-tests/arithmetic/fft_length_test.cc | 13 +- .../arithmetic/magnitude_squared_test.cc | 56 +++---- .../unit-tests/arithmetic/multiply_test.cc | 80 +++++---- ...8ms_ambiguous_acquisition_gsoc2013_test.cc | 32 ++-- ...cps_ambiguous_acquisition_gsoc2013_test.cc | 31 ++-- ...e1_pcps_ambiguous_acquisition_gsoc_test.cc | 31 ++-- ...ileo_e1_pcps_ambiguous_acquisition_test.cc | 31 ++-- ...wsr_ambiguous_acquisition_gsoc2013_test.cc | 30 ++-- ...ync_ambiguous_acquisition_gsoc2014_test.cc | 37 ++--- ...ong_ambiguous_acquisition_gsoc2013_test.cc | 44 ++--- ...cps_acquisition_gsoc2014_gensource_test.cc | 41 ++--- ...ps_l1_ca_pcps_acquisition_gsoc2013_test.cc | 32 ++-- .../gps_l1_ca_pcps_acquisition_test.cc | 31 ++-- .../gps_l1_ca_pcps_acquisition_test_fpga.cc | 42 ++--- ...s_multithread_acquisition_gsoc2013_test.cc | 30 ++-- ...a_pcps_opencl_acquisition_gsoc2013_test.cc | 30 ++-- ...cps_quicksync_acquisition_gsoc2014_test.cc | 35 ++-- ..._ca_pcps_tong_acquisition_gsoc2013_test.cc | 31 ++-- .../gps_l2_m_pcps_acquisition_test.cc | 31 ++-- .../filter/fir_filter_test.cc | 80 +++++---- .../observables/hybrid_observables_test.cc | 45 +++--- .../direct_resampler_conditioner_cc_test.cc | 16 +- .../gps_l1_ca_telemetry_decoder_test.cc | 24 ++- .../tracking/cpu_multicorrelator_test.cc | 116 ++++++------- .../galileo_e1_dll_pll_veml_tracking_test.cc | 30 ++-- .../tracking/galileo_e5a_tracking_test.cc | 16 +- .../gps_l1_ca_dll_pll_tracking_test.cc | 2 +- .../gps_l1_ca_dll_pll_tracking_test_fpga.cc | 152 ++++++++---------- .../gps_l2_m_dll_pll_tracking_test.cc | 17 +- .../tracking/gpu_multicorrelator_test.cc | 130 ++++++++------- src/utils/front-end-cal/front_end_cal.cc | 1 - src/utils/front-end-cal/main.cc | 15 +- 46 files changed, 759 insertions(+), 880 deletions(-) diff --git a/src/algorithms/PVT/gnuradio_blocks/rtklib_pvt_cc.cc b/src/algorithms/PVT/gnuradio_blocks/rtklib_pvt_cc.cc index a349ef753..df4caef92 100644 --- a/src/algorithms/PVT/gnuradio_blocks/rtklib_pvt_cc.cc +++ b/src/algorithms/PVT/gnuradio_blocks/rtklib_pvt_cc.cc @@ -326,8 +326,7 @@ rtklib_pvt_cc::rtklib_pvt_cc(unsigned int nchannels, bool dump, std::string dump std::cout << "GNSS-SDR can not create message queues!" << std::endl; throw new std::exception(); } - gettimeofday(&tv, NULL); - begin = tv.tv_sec * 1000000 + tv.tv_usec; + start = std::chrono::system_clock::now(); } @@ -568,9 +567,9 @@ int rtklib_pvt_cc::work (int noutput_items, gr_vector_const_void_star &input_ite << " [deg], Height= " << d_ls_pvt->d_height_m << " [m]" << std::endl; ttff_msgbuf ttff; ttff.mtype = 1; - gettimeofday(&tv, NULL); - long long int end = tv.tv_sec * 1000000 + tv.tv_usec; - ttff.ttff = static_cast(end - begin) / 1000000.0; + end = std::chrono::system_clock::now(); + std::chrono::duration elapsed_seconds = end - start; + ttff.ttff = elapsed_seconds.count(); send_sys_v_ttff_msg(ttff); first_fix = false; } diff --git a/src/algorithms/PVT/gnuradio_blocks/rtklib_pvt_cc.h b/src/algorithms/PVT/gnuradio_blocks/rtklib_pvt_cc.h index a23cb4b38..a188c5809 100644 --- a/src/algorithms/PVT/gnuradio_blocks/rtklib_pvt_cc.h +++ b/src/algorithms/PVT/gnuradio_blocks/rtklib_pvt_cc.h @@ -31,7 +31,7 @@ #ifndef GNSS_SDR_RTKLIB_PVT_CC_H #define GNSS_SDR_RTKLIB_PVT_CC_H -#include +#include #include #include #include @@ -143,8 +143,7 @@ private: double ttff; } ttff_msgbuf; bool send_sys_v_ttff_msg(ttff_msgbuf ttff); - struct timeval tv; - long long int begin; + std::chrono::time_point start, end; public: rtklib_pvt_cc(unsigned int nchannels, diff --git a/src/algorithms/PVT/libs/geojson_printer.cc b/src/algorithms/PVT/libs/geojson_printer.cc index 997992934..b86d01a8e 100644 --- a/src/algorithms/PVT/libs/geojson_printer.cc +++ b/src/algorithms/PVT/libs/geojson_printer.cc @@ -31,9 +31,9 @@ #include "geojson_printer.h" -#include #include #include +#include #include GeoJSON_Printer::GeoJSON_Printer() @@ -51,41 +51,39 @@ GeoJSON_Printer::~GeoJSON_Printer () bool GeoJSON_Printer::set_headers(std::string filename, bool time_tag_name) { - time_t rawtime; - struct tm * timeinfo; - time ( &rawtime ); - timeinfo = localtime ( &rawtime ); + boost::posix_time::ptime pt = boost::posix_time::second_clock::local_time(); //::local_sec_clock::local_time(zone); + tm timeinfo = boost::posix_time::to_tm(pt); if (time_tag_name) { std::stringstream strm0; - const int year = timeinfo->tm_year - 100; + const int year = timeinfo.tm_year - 100; strm0 << year; - const int month = timeinfo->tm_mon + 1; + const int month = timeinfo.tm_mon + 1; if(month < 10) { strm0 << "0"; } strm0 << month; - const int day = timeinfo->tm_mday; + const int day = timeinfo.tm_mday; if(day < 10) { strm0 << "0"; } strm0 << day << "_"; - const int hour = timeinfo->tm_hour; + const int hour = timeinfo.tm_hour; if(hour < 10) { strm0 << "0"; } strm0 << hour; - const int min = timeinfo->tm_min; + const int min = timeinfo.tm_min; if(min < 10) { strm0 << "0"; } strm0 << min; - const int sec = timeinfo->tm_sec; + const int sec = timeinfo.tm_sec; if(sec < 10) { strm0 << "0"; diff --git a/src/algorithms/PVT/libs/kml_printer.cc b/src/algorithms/PVT/libs/kml_printer.cc index dd457db45..8e008d2c0 100644 --- a/src/algorithms/PVT/libs/kml_printer.cc +++ b/src/algorithms/PVT/libs/kml_printer.cc @@ -30,51 +30,47 @@ */ #include "kml_printer.h" -#include #include +#include #include using google::LogMessage; bool Kml_Printer::set_headers(std::string filename, bool time_tag_name) { + boost::posix_time::ptime pt = boost::posix_time::second_clock::local_time(); + tm timeinfo = boost::posix_time::to_tm(pt); - time_t rawtime; - struct tm * timeinfo; - time ( &rawtime ); - timeinfo = localtime ( &rawtime ); if (time_tag_name) { - - std::stringstream strm0; - const int year = timeinfo->tm_year - 100; + const int year = timeinfo.tm_year - 100; strm0 << year; - const int month = timeinfo->tm_mon + 1; + const int month = timeinfo.tm_mon + 1; if(month < 10) { strm0 << "0"; } strm0 << month; - const int day = timeinfo->tm_mday; + const int day = timeinfo.tm_mday; if(day < 10) { strm0 << "0"; } strm0 << day << "_"; - const int hour = timeinfo->tm_hour; + const int hour = timeinfo.tm_hour; if(hour < 10) { strm0 << "0"; } strm0 << hour; - const int min = timeinfo->tm_min; + const int min = timeinfo.tm_min; if(min < 10) { strm0 << "0"; } strm0 << min; - const int sec = timeinfo->tm_sec; + const int sec = timeinfo.tm_sec; if(sec < 10) { strm0 << "0"; @@ -88,6 +84,7 @@ bool Kml_Printer::set_headers(std::string filename, bool time_tag_name) kml_filename = filename + ".kml"; } kml_file.open(kml_filename.c_str()); + if (kml_file.is_open()) { DLOG(INFO) << "KML printer writing on " << filename.c_str(); @@ -98,7 +95,7 @@ bool Kml_Printer::set_headers(std::string filename, bool time_tag_name) << "" << std::endl << " " << std::endl << " GNSS Track" << std::endl - << " GNSS-SDR Receiver position log file created at " << asctime (timeinfo) + << " GNSS-SDR Receiver position log file created at " << pt << " " << std::endl << "