/*! * \file gps_l1_ca_telemetry_decoder_cc.cc * \brief Implementation of a NAV message demodulator block based on * Kay Borre book MATLAB-based GPS receiver * \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 . * * ------------------------------------------------------------------------- */ /*! * \todo Clean this code and move the telemetry definitions to GPS_L1_CA system definitions file */ #include #include #include #include #include #include #include "gps_l1_ca_telemetry_decoder_cc.h" #include "control_message_factory.h" using google::LogMessage; /*! * \todo name and move the magic numbers to GPS_L1_CA.h */ gps_l1_ca_telemetry_decoder_cc_sptr gps_l1_ca_make_telemetry_decoder_cc(unsigned int satellite, long if_freq, long fs_in, unsigned int vector_length, gr_msg_queue_sptr queue, bool dump) { return gps_l1_ca_telemetry_decoder_cc_sptr(new gps_l1_ca_telemetry_decoder_cc(satellite, if_freq, fs_in, vector_length, queue, dump)); } void gps_l1_ca_telemetry_decoder_cc::forecast (int noutput_items, gr_vector_int &ninput_items_required){ for (unsigned i = 0; i < 3; i++) { ninput_items_required[i] =d_samples_per_bit*8; //set the required sample history } } gps_l1_ca_telemetry_decoder_cc::gps_l1_ca_telemetry_decoder_cc(unsigned int satellite, long if_freq, long fs_in, unsigned int vector_length, gr_msg_queue_sptr queue, bool dump) : gr_block ("gps_navigation_cc", gr_make_io_signature (5, 5, sizeof(double)), gr_make_io_signature(1, 1, sizeof(gnss_synchro))) { // initialize internal vars d_queue = queue; d_dump = dump; d_satellite = satellite; d_vector_length = vector_length; d_samples_per_bit=20; // it is exactly 1000*(1/50)=20 d_fs_in=fs_in; d_preamble_duration_seconds=(1.0/(float)GPS_CA_TELEMETRY_RATE_BITS_SECOND)*(float)GPS_CA_PREAMBLE_LENGTH_BITS; //std::cout<<"d_preamble_duration_seconds="<d_preambles_bits, (unsigned short int*)preambles_bits, 8* sizeof(unsigned short int)); // preamble bits to sampled symbols d_preambles_symbols=(signed int*)malloc(sizeof(signed int)*8*d_samples_per_bit); int n=0; for (int i=0;i<8;i++) { for (unsigned int j=0;j=160){ //TODO: Rewrite with state machine if (d_stat==0) { d_GPS_FSM.Event_gps_word_preamble(); d_preamble_index=d_sample_counter;//record the preamble sample stamp std::cout<<"Preamble detection for SAT "<6001){ std::cout<<"Lost of frame sync SAT "<d_satellite<<" preamble_diff= "<0){ //symbol to bit d_GPS_frame_4bytes+=1; //insert the telemetry bit in LSB } d_symbol_accumulator=0; d_symbol_accumulator_counter=0; //******* bits to words ****** d_frame_bit_index++; if (d_frame_bit_index==30) { d_frame_bit_index=0; //parity check //Each word in wordbuff is composed of: // Bits 0 to 29 = the GPS data word // Bits 30 to 31 = 2 LSBs of the GPS word ahead. // prepare the extended frame [-2 -1 0 ... 30] if (d_prev_GPS_frame_4bytes & 0x00000001) { d_GPS_frame_4bytes=d_GPS_frame_4bytes|0x40000000; } if (d_prev_GPS_frame_4bytes & 0x00000002) { d_GPS_frame_4bytes=d_GPS_frame_4bytes|0x80000000; } /* Check that the 2 most recently logged words pass parity. Have to first invert the data bits according to bit 30 of the previous word. */ if(d_GPS_frame_4bytes & 0x40000000) { d_GPS_frame_4bytes ^= 0x3FFFFFC0; // invert the data bits (using XOR) } if (gps_word_parityCheck(d_GPS_frame_4bytes)) { memcpy(&d_GPS_FSM.d_GPS_frame_4bytes,&d_GPS_frame_4bytes,sizeof(char)*4); d_GPS_FSM.d_preamble_time_ms=d_preamble_time_seconds*1000.0; d_GPS_FSM.Event_gps_word_valid(); d_flag_parity=true; }else{ d_GPS_FSM.Event_gps_word_invalid(); d_flag_parity=false; } d_prev_GPS_frame_4bytes=d_GPS_frame_4bytes; // save the actual frame d_GPS_frame_4bytes=d_GPS_frame_4bytes & 0; }else{ d_GPS_frame_4bytes<<=1; //shift 1 bit left the telemetry word } } // output the frame consume_each(1); //one by one gps_synchro.valid_word=(d_flag_frame_sync==true and d_flag_parity==true); gps_synchro.flag_preamble=d_flag_preamble; gps_synchro.preamble_delay_ms=d_preamble_time_seconds*1000.0; gps_synchro.prn_delay_ms=(in[2][0]-d_preamble_duration_seconds)*1000.0; gps_synchro.preamble_code_phase_ms=d_preamble_code_phase_seconds*1000.0; gps_synchro.preamble_code_phase_correction_ms=(in[4][0]-d_preamble_code_phase_seconds)*1000.0; gps_synchro.satellite_PRN=d_satellite; gps_synchro.channel_ID=d_channel; *out[0]=gps_synchro; return 1; } void gps_l1_ca_telemetry_decoder_cc::set_satellite(int satellite) { d_satellite = satellite; d_GPS_FSM.d_satellite_PRN=satellite; LOG_AT_LEVEL(INFO) << "Navigation Satellite set to " << d_satellite; } void gps_l1_ca_telemetry_decoder_cc::set_channel(int channel) { d_channel = channel; d_GPS_FSM.d_channel_ID=channel; LOG_AT_LEVEL(INFO) << "Navigation channel set to " << channel; }