/*! * \file gps_l1_ca_subframe_fsm.h * \brief Interface of a GPS NAV message word-to-subframe decoder state machine * \author Javier Arribas, 2011. jarribas(at)cttc.es * * ------------------------------------------------------------------------- * * 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 . * * ------------------------------------------------------------------------- */ #ifndef GNSS_SDR_GPS_L1_CA_SUBFRAME_FSM_H_ #define GNSS_SDR_GPS_L1_CA_SUBFRAME_FSM_H_ #include #include #include #include #include #include #include #include #include #include "concurrent_queue.h" #include #include #include "GPS_L1_CA.h" #include "gps_navigation_message.h" namespace sc = boost::statechart; namespace mpl = boost::mpl; struct gps_subframe_fsm_S0; struct gps_subframe_fsm_S1; struct gps_subframe_fsm_S2; struct gps_subframe_fsm_S3; struct gps_subframe_fsm_S4; struct gps_subframe_fsm_S5; struct gps_subframe_fsm_S6; struct gps_subframe_fsm_S7; struct gps_subframe_fsm_S8; struct gps_subframe_fsm_S9; struct gps_subframe_fsm_S10; struct gps_subframe_fsm_S11; class GpsL1CaSubframeFsm : public sc::state_machine< GpsL1CaSubframeFsm, gps_subframe_fsm_S0 > { public: // channel and satellite info int i_channel_ID; unsigned int i_satellite_PRN; // ephemeris queue concurrent_queue *d_nav_queue; // navigation message class Gps_Navigation_Message d_nav; char d_subframe[GPS_SUBFRAME_LENGTH]; char d_GPS_frame_4bytes[GPS_WORD_LENGTH]; double d_preamble_time_ms; void gps_word_to_subframe(int position); void gps_subframe_to_nav_msg(); //FSM EVENTS void Event_gps_word_valid(); void Event_gps_word_invalid(); void Event_gps_word_preamble(); GpsL1CaSubframeFsm(); }; #endif