% 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 % ------------------------------------------------------------------------- % % GNSS-SDR is a Global Navigation Satellite System software-defined receiver. % This file is part of GNSS-SDR. % % Copyright (C) 2010-2019 (see AUTHORS file for a list of contributors) % SPDX-License-Identifier: GPL-3.0-or-later % % ------------------------------------------------------------------------- % close all; clear all; if ~exist('dll_pll_veml_read_tracking_dump.m', 'file') addpath('./libs') end samplingFreq = 3000000; %[Hz] plot_last_outputs=0;%1000; channels = 1; % Number of channels first_channel = 0; % Number of the first channel path = '/home/javier/git/gnss-sdr/install/test_inta/'; %% 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