% Reads GNSS-SDR Tracking dump binary file using the provided % function and plots some internal variables % Javier Arribas, 2011. jarribas(at)cttc.es % Antonio Ramos, 2018. antonio.ramos(at)cttc.es % ------------------------------------------------------------------------- % % Copyright (C) 2010-2019 (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; if ~exist('dll_pll_veml_read_tracking_dump.m', 'file') addpath('./libs') end samplingFreq = 2048000; %[Hz] plot_last_outputs=0; channels = 8; % Number of channels first_channel = 0; % Number of the first channel path = '/Users/javier/git/gnss-sdr/build/test_postpro_24h_casa/'; %% CHANGE THIS PATH for N=1:1:channels tracking_log_path = [path 'tracking_ch_' num2str(N+first_channel-1) '.dat']; %% CHANGE track_ch_ BY YOUR dump_filename GNSS_tracking(N) = 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 if plot_last_outputs>0 && plot_last_outputs