blob: 40ce91d0f141f9b5a5d2e7d0fafa0fef8f7a2acc [file] [log] [blame]
piotr437f5462014-02-04 17:57:25 +01001/* -*- c++ -*- */
2/*
3 * Copyright 2014 <+YOU OR YOUR COMPANY+>.
4 *
5 * This is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3, or (at your option)
8 * any later version.
9 *
10 * This software is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this software; see the file COPYING. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street,
18 * Boston, MA 02110-1301, USA.
19 */
20
21#ifndef INCLUDED_GSM_RECEIVER_IMPL_H
22#define INCLUDED_GSM_RECEIVER_IMPL_H
23
24#include <gsm/receiver.h>
25#include <gsm_constants.h>
26#include <receiver_config.h>
27
28namespace gr {
29 namespace gsm {
30
31 typedef std::vector<gr_complex> vector_complex;
32
33 class receiver_impl : public receiver
34 {
35 private:
36 /**@name Configuration of the receiver */
37 //@{
38 const int d_OSR; ///< oversampling ratio
39 const int d_chan_imp_length; ///< channel impulse length
40 //@}
41
42 gr_complex d_sch_training_seq[N_SYNC_BITS]; ///<encoded training sequence of a SCH burst
43 gr_complex d_norm_training_seq[TRAIN_SEQ_NUM][N_TRAIN_BITS]; ///<encoded training sequences of a normal bursts and dummy bursts
44
45 feval_dd *d_tuner; ///<callback to a python object which is used for frequency tunning
46
47 /** Counts samples consumed by the receiver
48 *
49 * It is used in beetween find_fcch_burst and reach_sch_burst calls.
50 * My intention was to synchronize this counter with some internal sample
51 * counter of the USRP. Simple access to such USRP's counter isn't possible
52 * so this variable isn't used in the "synchronized" state of the receiver yet.
53 */
54 unsigned d_counter;
55
56 /**@name Variables used to store result of the find_fcch_burst fuction */
57 //@{
58 unsigned d_fcch_start_pos; ///< position of the first sample of the fcch burst
59 float d_freq_offset; ///< frequency offset of the received signal
60 //@}
61 std::list<double> d_freq_offset_vals;
62
63 /**@name Identifiers of the BTS extracted from the SCH burst */
64 //@{
65 int d_ncc; ///< network color code
66 int d_bcc; ///< base station color code
67 //@}
68
69 /**@name Internal state of the gsm receiver */
70 //@{
71 enum states {
72 first_fcch_search, next_fcch_search, sch_search, // synchronization search part
73 synchronized // receiver is synchronized in this state
74 } d_state;
75 //@}
76
77 /**@name Variables which make internal state in the "synchronized" state */
78 //@{
79 burst_counter d_burst_nr; ///< frame number and timeslot number
80 channel_configuration d_channel_conf; ///< mapping of burst_counter to burst_type
81 //@}
82
83 unsigned d_failed_sch; ///< number of subsequent erroneous SCH bursts
84
85 /** Function whis is used to search a FCCH burst and to compute frequency offset before
86 * "synchronized" state of the receiver
87 *
88 * TODO: Describe the FCCH search algorithm in the documentation
89 * @param input vector with input signal
90 * @param nitems number of samples in the input vector
91 * @return
92 */
93 bool find_fcch_burst(const gr_complex *input, const int nitems);
94
95 /** Computes frequency offset from FCCH burst samples
96 *
97 * @param input vector with input samples
98 * @param first_sample number of the first sample of the FCCH busrt
99 * @param last_sample number of the last sample of the FCCH busrt
100 * @return frequency offset
101 */
102 double compute_freq_offset(const gr_complex * input, unsigned first_sample, unsigned last_sample);
103
104 /** Calls d_tuner's method to set frequency offset from Python level
105 *
106 * @param freq_offset absolute frequency offset of the received signal
107 */
108 void set_frequency(double freq_offset);
109
110 /** Computes angle between two complex numbers
111 *
112 * @param val1 first complex number
113 * @param val2 second complex number
114 * @return
115 */
116 inline float compute_phase_diff(gr_complex val1, gr_complex val2);
117
118 /** Function whis is used to get near to SCH burst
119 *
120 * @param nitems number of samples in the gsm_receiver's buffer
121 * @return true if SCH burst is near, false otherwise
122 */
123 bool reach_sch_burst(const int nitems);
124
125 /** Extracts channel impulse response from a SCH burst and computes first sample number of this burst
126 *
127 * @param input vector with input samples
128 * @param chan_imp_resp complex vector where channel impulse response will be stored
129 * @return number of first sample of the burst
130 */
131 int get_sch_chan_imp_resp(const gr_complex *input, gr_complex * chan_imp_resp);
132
133 /** MLSE detection of a burst bits
134 *
135 * Detects bits of burst using viterbi algorithm.
136 * @param input vector with input samples
137 * @param chan_imp_resp vector with the channel impulse response
138 * @param burst_start number of the first sample of the burst
139 * @param output_binary vector with output bits
140 */
141 void detect_burst(const gr_complex * input, gr_complex * chan_imp_resp, int burst_start, unsigned char * output_binary);
142
143 /** Encodes differentially input bits and maps them into MSK states
144 *
145 * @param input vector with input bits
146 * @param nitems number of samples in the "input" vector
147 * @param gmsk_output bits mapped into MSK states
148 * @param start_point first state
149 */
150 void gmsk_mapper(const unsigned char * input, int nitems, gr_complex * gmsk_output, gr_complex start_point);
151
152 /** Correlates MSK mapped sequence with input signal
153 *
154 * @param sequence MKS mapped sequence
155 * @param length length of the sequence
156 * @param input_signal vector with input samples
157 * @return correlation value
158 */
159 gr_complex correlate_sequence(const gr_complex * sequence, int length, const gr_complex * input);
160
161 /** Computes autocorrelation of input vector for positive arguments
162 *
163 * @param input vector with input samples
164 * @param out output vector
165 * @param nitems length of the input vector
166 */
167 inline void autocorrelation(const gr_complex * input, gr_complex * out, int nitems);
168
169 /** Filters input signal through channel impulse response
170 *
171 * @param input vector with input samples
172 * @param nitems number of samples to pass through filter
173 * @param filter filter taps - channel impulse response
174 * @param filter_length nember of filter taps
175 * @param output vector with filtered samples
176 */
177 inline void mafi(const gr_complex * input, int nitems, gr_complex * filter, int filter_length, gr_complex * output);
178
179 /** Extracts channel impulse response from a normal burst and computes first sample number of this burst
180 *
181 * @param input vector with input samples
182 * @param chan_imp_resp complex vector where channel impulse response will be stored
183 * @param search_range possible absolute offset of a channel impulse response start
184 * @param bcc base station color code - number of a training sequence
185 * @return first sample number of normal burst
186 */
piotr7e3b0db2014-02-05 22:44:30 +0100187 int get_norm_chan_imp_resp(const gr_complex *input, gr_complex * chan_imp_resp, float *corr_max, int bcc);
piotr437f5462014-02-04 17:57:25 +0100188
189 /**
190 *
191 */
piotr7c82b172014-02-08 14:15:27 +0100192 void send_burst(burst_counter burst_nr, const unsigned char * burst_binary);
piotr437f5462014-02-04 17:57:25 +0100193
194 /**
195 *
196 */
197 void configure_receiver();
198
199 public:
200 receiver_impl(feval_dd * tuner, int osr);
201 ~receiver_impl();
202
203 void forecast(int noutput_items, gr_vector_int &ninput_items_required);
204
205 // Where all the action really happens
206 int general_work(int noutput_items,
207 gr_vector_int &ninput_items,
208 gr_vector_const_void_star &input_items,
209 gr_vector_void_star &output_items);
210 };
211 } // namespace gsm
212} // namespace gr
213
214#endif /* INCLUDED_GSM_RECEIVER_IMPL_H */
215