/*! * Navigation message demodulator based on the Kay Borre book MATLAB-based GPS receiver */ /** * Copyright notice */ /** * Author: Javier Arribas, 2011. jarribas(at)cttc.es */ #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "gps_l1_ca_telemetry_decoder_cc.h" #include "control_message_factory.h" #include #include #include #include #include #include using google::LogMessage; 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 (3, 3, sizeof(float)), 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 // set the preamble unsigned short int preambles_bits[8]=GPS_PREAMBLE; memcpy((unsigned short int*)this->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;j7000){ std::cout<<"lost of frame sync"<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.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 if ((d_sample_counter%NAVIGATION_OUTPUT_RATE_MS)==0) { gps_synchro.valid_word=(d_flag_frame_sync==true and d_flag_parity==true); gps_synchro.last_preamble_index=d_preamble_index; gps_synchro.prn_delay=in[2][0]; gps_synchro.satellite_PRN=d_satellite+1; gps_synchro.channel_ID=d_channel; *out[0]=gps_synchro; return 1; }else{ return 0; } } 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; }