blob: e69183fdd3ce6fd9e03dcfd1fe87155db1410fc3 [file] [log] [blame]
piotr437f5462014-02-04 17:57:25 +01001/* -*- c++ -*- */
piotrd0bf1492014-02-05 17:27:32 +01002/*
ptrkrysik529895b2014-12-02 18:07:38 +01003 * @file
4 * @author Piotr Krysik <ptrkrysik@gmail.com>
5 * @section LICENSE
piotrd0bf1492014-02-05 17:27:32 +01006 *
ptrkrysik529895b2014-12-02 18:07:38 +01007 * Gr-gsm is free software; you can redistribute it and/or modify
piotr437f5462014-02-04 17:57:25 +01008 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3, or (at your option)
10 * any later version.
piotrd0bf1492014-02-05 17:27:32 +010011 *
ptrkrysik529895b2014-12-02 18:07:38 +010012 * Gr-gsm is distributed in the hope that it will be useful,
piotr437f5462014-02-04 17:57:25 +010013 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
piotrd0bf1492014-02-05 17:27:32 +010016 *
piotr437f5462014-02-04 17:57:25 +010017 * You should have received a copy of the GNU General Public License
ptrkrysik529895b2014-12-02 18:07:38 +010018 * along with gr-gsm; see the file COPYING. If not, write to
piotr437f5462014-02-04 17:57:25 +010019 * the Free Software Foundation, Inc., 51 Franklin Street,
20 * Boston, MA 02110-1301, USA.
21 */
22
23#ifdef HAVE_CONFIG_H
24#include "config.h"
25#endif
26
27#include <gnuradio/io_signature.h>
piotr437f5462014-02-04 17:57:25 +010028#include <gnuradio/math.h>
29#include <math.h>
30#include <boost/circular_buffer.hpp>
31#include <algorithm>
32#include <numeric>
David Holmf2497bd2014-12-01 21:22:37 +010033#include <vector>
piotr437f5462014-02-04 17:57:25 +010034#include <viterbi_detector.h>
35#include <string.h>
piotr437f5462014-02-04 17:57:25 +010036#include <iostream>
Piotr Krysik0a932e62016-08-29 07:37:30 +020037//#include <iomanip>
piotr6d152d92014-02-21 00:02:44 +010038#include <boost/scoped_ptr.hpp>
ptrkrysik3be74a72014-12-13 10:11:00 +010039
40#include <sch.h>
41#include "receiver_impl.h"
42#include <grgsm/endian.h>
ptrkrysik58213792014-10-30 09:05:15 +010043
ptrkrysikd85d4602014-11-13 10:11:53 +010044//files included for debuging
45//#include "plotting/plotting.hpp"
46//#include <pthread.h>
piotr437f5462014-02-04 17:57:25 +010047
48#define SYNC_SEARCH_RANGE 30
49
piotrd0bf1492014-02-05 17:27:32 +010050namespace gr
51{
52namespace gsm
53{
piotrd0bf1492014-02-05 17:27:32 +010054receiver::sptr
ptrkrysik380dea82015-08-06 10:11:58 +020055receiver::make(int osr, const std::vector<int> &cell_allocation, const std::vector<int> &tseq_nums, bool process_uplink)
piotrd0bf1492014-02-05 17:27:32 +010056{
57 return gnuradio::get_initial_sptr
ptrkrysik380dea82015-08-06 10:11:58 +020058 (new receiver_impl(osr, cell_allocation, tseq_nums, process_uplink));
piotrd0bf1492014-02-05 17:27:32 +010059}
60
61/*
62 * The private constructor
63 */
ptrkrysik380dea82015-08-06 10:11:58 +020064receiver_impl::receiver_impl(int osr, const std::vector<int> &cell_allocation, const std::vector<int> &tseq_nums, bool process_uplink)
piotrc7c249a2014-05-02 17:24:08 +020065 : gr::sync_block("receiver",
ptrkrysik58213792014-10-30 09:05:15 +010066 gr::io_signature::make(1, -1, sizeof(gr_complex)),
piotr7c82b172014-02-08 14:15:27 +010067 gr::io_signature::make(0, 0, 0)),
piotrd0bf1492014-02-05 17:27:32 +010068 d_OSR(osr),
ptrkrysik380dea82015-08-06 10:11:58 +020069 d_process_uplink(process_uplink),
piotrd0bf1492014-02-05 17:27:32 +010070 d_chan_imp_length(CHAN_IMP_RESP_LENGTH),
piotrd0bf1492014-02-05 17:27:32 +010071 d_counter(0),
72 d_fcch_start_pos(0),
piotr4089c1a2014-08-06 14:10:56 +020073 d_freq_offset_setting(0),
piotrd6d66872014-08-06 15:20:33 +020074 d_state(fcch_search),
piotrd0bf1492014-02-05 17:27:32 +010075 d_burst_nr(osr),
piotr6d152d92014-02-21 00:02:44 +010076 d_failed_sch(0),
ptrkrysike518bbf2014-11-06 14:50:59 +010077 d_signal_dbm(-120),
78 d_tseq_nums(tseq_nums),
ptrkrysik32c21162015-04-04 14:01:52 +020079 d_cell_allocation(cell_allocation),
80 d_last_time(0.0)
piotrd0bf1492014-02-05 17:27:32 +010081{
82 int i;
piotr4089c1a2014-08-06 14:10:56 +020083 //don't send samples to the receiver until there are at least samples for one
piotr7f3f3662014-07-08 16:47:53 +020084 set_output_multiple(floor((TS_BITS + 2 * GUARD_PERIOD) * d_OSR)); // burst and two gurad periods (one gurard period is an arbitrary overlap)
piotrd0bf1492014-02-05 17:27:32 +010085 gmsk_mapper(SYNC_BITS, N_SYNC_BITS, d_sch_training_seq, gr_complex(0.0, -1.0));
86 for (i = 0; i < TRAIN_SEQ_NUM; i++)
piotr437f5462014-02-04 17:57:25 +010087 {
piotrf502e0f2014-04-24 10:28:29 +020088 gr_complex startpoint = (train_seq[i][0]==0) ? gr_complex(1.0, 0.0) : gr_complex(-1.0, 0.0); //if first bit of the seqeunce ==0 first symbol ==1
piotr7f3f3662014-07-08 16:47:53 +020089 //if first bit of the seqeunce ==1 first symbol ==-1
piotr437f5462014-02-04 17:57:25 +010090 gmsk_mapper(train_seq[i], N_TRAIN_BITS, d_norm_training_seq[i], startpoint);
piotr437f5462014-02-04 17:57:25 +010091 }
ptrkrysike518bbf2014-11-06 14:50:59 +010092 message_port_register_out(pmt::mp("C0"));
93 message_port_register_out(pmt::mp("CX"));
piotr4089c1a2014-08-06 14:10:56 +020094 message_port_register_out(pmt::mp("measurements"));
piotr903b1d62014-04-17 11:33:27 +020095 configure_receiver(); //configure the receiver - tell it where to find which burst type
piotrd0bf1492014-02-05 17:27:32 +010096}
piotr437f5462014-02-04 17:57:25 +010097
piotrd0bf1492014-02-05 17:27:32 +010098/*
99 * Our virtual destructor.
100 */
101receiver_impl::~receiver_impl()
102{
103}
104
piotrd0bf1492014-02-05 17:27:32 +0100105int
piotrc7c249a2014-05-02 17:24:08 +0200106receiver_impl::work(int noutput_items,
107 gr_vector_const_void_star &input_items,
108 gr_vector_void_star &output_items)
piotrd0bf1492014-02-05 17:27:32 +0100109{
ptrkrysik58213792014-10-30 09:05:15 +0100110// std::vector<const gr_complex *> iii = (std::vector<const gr_complex *>) input_items; // jak zrobić to rzutowanie poprawnie
111 gr_complex * input = (gr_complex *) input_items[0];
piotr4089c1a2014-08-06 14:10:56 +0200112 std::vector<tag_t> freq_offset_tags;
113 uint64_t start = nitems_read(0);
114 uint64_t stop = start + noutput_items;
piotr7c82b172014-02-08 14:15:27 +0100115
ptrkrysik32c21162015-04-04 14:01:52 +0200116 float current_time = static_cast<float>(start)/(GSM_SYMBOL_RATE*d_OSR);
117 if((current_time - d_last_time) > 0.1)
118 {
119 pmt::pmt_t msg = pmt::make_tuple(pmt::mp("current_time"),pmt::from_double(current_time));
120 message_port_pub(pmt::mp("measurements"), msg);
121 d_last_time = current_time;
122 }
123
piotr4089c1a2014-08-06 14:10:56 +0200124 pmt::pmt_t key = pmt::string_to_symbol("setting_freq_offset");
125 get_tags_in_range(freq_offset_tags, 0, start, stop, key);
126 bool freq_offset_tag_in_fcch = false;
piotr4089c1a2014-08-06 14:10:56 +0200127
128 if(!freq_offset_tags.empty()){
129 tag_t freq_offset_tag = freq_offset_tags[0];
Piotr Krysik43af70d2016-07-20 21:37:24 +0200130 uint64_t tag_offset = freq_offset_tag.offset - start;
piotr4089c1a2014-08-06 14:10:56 +0200131
132 burst_type b_type = d_channel_conf.get_burst_type(d_burst_nr);
133 if(d_state == synchronized && b_type == fcch_burst){
134 uint64_t last_sample_nr = ceil((GUARD_PERIOD + 2.0 * TAIL_BITS + 156.25) * d_OSR) + 1;
135 if(tag_offset < last_sample_nr){
piotr4089c1a2014-08-06 14:10:56 +0200136 freq_offset_tag_in_fcch = true;
137 }
piotr4089c1a2014-08-06 14:10:56 +0200138 }
Piotr Krysik43af70d2016-07-20 21:37:24 +0200139 d_freq_offset_setting = pmt::to_double(freq_offset_tag.value);
piotr4089c1a2014-08-06 14:10:56 +0200140 }
141
piotrd0bf1492014-02-05 17:27:32 +0100142 switch (d_state)
piotr437f5462014-02-04 17:57:25 +0100143 {
piotrd0bf1492014-02-05 17:27:32 +0100144 //bootstrapping
ptrkrysik58213792014-10-30 09:05:15 +0100145 case fcch_search:
piotrd0bf1492014-02-05 17:27:32 +0100146 {
piotr4089c1a2014-08-06 14:10:56 +0200147 double freq_offset_tmp;
148 if (find_fcch_burst(input, noutput_items,freq_offset_tmp))
piotrd0bf1492014-02-05 17:27:32 +0100149 {
piotrd6d66872014-08-06 15:20:33 +0200150 pmt::pmt_t msg = pmt::make_tuple(pmt::mp("freq_offset"),pmt::from_double(freq_offset_tmp-d_freq_offset_setting),pmt::mp("fcch_search"));
piotr4089c1a2014-08-06 14:10:56 +0200151 message_port_pub(pmt::mp("measurements"), msg);
152
piotrd0bf1492014-02-05 17:27:32 +0100153 d_state = sch_search;
154 }
155 else
156 {
piotrd6d66872014-08-06 15:20:33 +0200157 d_state = fcch_search;
piotrd0bf1492014-02-05 17:27:32 +0100158 }
159 break;
160 }
piotr437f5462014-02-04 17:57:25 +0100161
piotrd0bf1492014-02-05 17:27:32 +0100162 case sch_search:
163 {
ptrkrysikef5e2db2015-01-03 12:10:14 +0100164 std::vector<gr_complex> channel_imp_resp(CHAN_IMP_RESP_LENGTH*d_OSR);
piotrd0bf1492014-02-05 17:27:32 +0100165 int t1, t2, t3;
166 int burst_start = 0;
167 unsigned char output_binary[BURST_SIZE];
piotr437f5462014-02-04 17:57:25 +0100168
piotrc7c249a2014-05-02 17:24:08 +0200169 if (reach_sch_burst(noutput_items)) //wait for a SCH burst
piotrd0bf1492014-02-05 17:27:32 +0100170 {
171 burst_start = get_sch_chan_imp_resp(input, &channel_imp_resp[0]); //get channel impulse response from it
172 detect_burst(input, &channel_imp_resp[0], burst_start, output_binary); //detect bits using MLSE detection
173 if (decode_sch(&output_binary[3], &t1, &t2, &t3, &d_ncc, &d_bcc) == 0) //decode SCH burst
174 {
piotr437f5462014-02-04 17:57:25 +0100175 d_burst_nr.set(t1, t2, t3, 0); //set counter of bursts value
piotr437f5462014-02-04 17:57:25 +0100176 d_burst_nr++;
177
piotr7f3f3662014-07-08 16:47:53 +0200178 consume_each(burst_start + BURST_SIZE * d_OSR + 4*d_OSR); //consume samples up to next guard period
piotr437f5462014-02-04 17:57:25 +0100179 d_state = synchronized;
piotrd0bf1492014-02-05 17:27:32 +0100180 }
181 else
182 {
piotrd6d66872014-08-06 15:20:33 +0200183 d_state = fcch_search; //if there is error in the sch burst go back to fcch search phase
piotr437f5462014-02-04 17:57:25 +0100184 }
piotrd0bf1492014-02-05 17:27:32 +0100185 }
186 else
187 {
188 d_state = sch_search;
189 }
190 break;
191 }
192 //in this state receiver is synchronized and it processes bursts according to burst type for given burst number
193 case synchronized:
194 {
ptrkrysikef5e2db2015-01-03 12:10:14 +0100195 std::vector<gr_complex> channel_imp_resp(CHAN_IMP_RESP_LENGTH*d_OSR);
piotrd0bf1492014-02-05 17:27:32 +0100196 int offset = 0;
197 int to_consume = 0;
198 unsigned char output_binary[BURST_SIZE];
ptrkrysik58213792014-10-30 09:05:15 +0100199 burst_type b_type;
ptrkrysik380dea82015-08-06 10:11:58 +0200200 unsigned int inputs_to_process=d_cell_allocation.size();
piotr6d152d92014-02-21 00:02:44 +0100201
ptrkrysik380dea82015-08-06 10:11:58 +0200202 if(d_process_uplink)
203 {
204 inputs_to_process = 2*inputs_to_process;
205 }
206
207 for(int input_nr=0; input_nr<inputs_to_process; input_nr++)
piotrd0bf1492014-02-05 17:27:32 +0100208 {
ptrkrysik58213792014-10-30 09:05:15 +0100209 double signal_pwr = 0;
210 input = (gr_complex *)input_items[input_nr];
piotr4089c1a2014-08-06 14:10:56 +0200211
ptrkrysik58213792014-10-30 09:05:15 +0100212 for(int ii=GUARD_PERIOD;ii<TS_BITS;ii++)
piotrd0bf1492014-02-05 17:27:32 +0100213 {
ptrkrysik58213792014-10-30 09:05:15 +0100214 signal_pwr += abs(input[ii])*abs(input[ii]);
piotrd0bf1492014-02-05 17:27:32 +0100215 }
ptrkrysik58213792014-10-30 09:05:15 +0100216 signal_pwr = signal_pwr/(TS_BITS);
217 d_signal_dbm = round(10*log10(signal_pwr/50));
218 if(input_nr==0){
219 d_c0_signal_dbm = d_signal_dbm;
220 }
221
222 if(input_nr==0) //for c0 channel burst type is controlled by channel configuration
piotrd0bf1492014-02-05 17:27:32 +0100223 {
ptrkrysik58213792014-10-30 09:05:15 +0100224 b_type = d_channel_conf.get_burst_type(d_burst_nr); //get burst type for given burst number
225 }
226 else
227 {
228 b_type = normal_or_noise; //for the rest it can be only normal burst or noise (at least at this moment of development)
229 }
230
231 switch (b_type)
232 {
233 case fcch_burst: //if it's FCCH burst
234 {
Piotr Krysik43af70d2016-07-20 21:37:24 +0200235 if(freq_offset_tag_in_fcch==false)
236 {
237 const unsigned first_sample = ceil((GUARD_PERIOD + 2 * TAIL_BITS) * d_OSR) + 1;
238 const unsigned last_sample = first_sample + USEFUL_BITS * d_OSR - TAIL_BITS * d_OSR;
239 double freq_offset_tmp = compute_freq_offset(input, first_sample, last_sample); //extract frequency offset from it
Piotr Krysik43af70d2016-07-20 21:37:24 +0200240 send_burst(d_burst_nr, fc_fb, GSMTAP_BURST_FCCH, input_nr);
ptrkrysik58213792014-10-30 09:05:15 +0100241
Piotr Krysik43af70d2016-07-20 21:37:24 +0200242 pmt::pmt_t msg = pmt::make_tuple(pmt::mp("freq_offset"),pmt::from_double(freq_offset_tmp-d_freq_offset_setting),pmt::mp("synchronized"));
243 message_port_pub(pmt::mp("measurements"), msg);
244 }
ptrkrysik58213792014-10-30 09:05:15 +0100245 break;
246 }
247 case sch_burst: //if it's SCH burst
248 {
249 int t1, t2, t3, d_ncc, d_bcc;
250 d_c0_burst_start = get_sch_chan_imp_resp(input, &channel_imp_resp[0]); //get channel impulse response
251
252 detect_burst(input, &channel_imp_resp[0], d_c0_burst_start, output_binary); //MLSE detection of bits
ptrkrysik617ba032014-11-21 10:11:05 +0100253 send_burst(d_burst_nr, output_binary, GSMTAP_BURST_SCH, input_nr);
ptrkrysik58213792014-10-30 09:05:15 +0100254 if (decode_sch(&output_binary[3], &t1, &t2, &t3, &d_ncc, &d_bcc) == 0) //and decode SCH data
piotrd0bf1492014-02-05 17:27:32 +0100255 {
ptrkrysik58213792014-10-30 09:05:15 +0100256 // d_burst_nr.set(t1, t2, t3, 0); //but only to check if burst_start value is correct
257 d_failed_sch = 0;
258 offset = d_c0_burst_start - floor((GUARD_PERIOD) * d_OSR); //compute offset from burst_start - burst should start after a guard period
259 to_consume += offset; //adjust with offset number of samples to be consumed
piotr437f5462014-02-04 17:57:25 +0100260 }
ptrkrysik58213792014-10-30 09:05:15 +0100261 else
262 {
263 d_failed_sch++;
264 if (d_failed_sch >= MAX_SCH_ERRORS)
265 {
266 d_state = fcch_search;
267 pmt::pmt_t msg = pmt::make_tuple(pmt::mp("freq_offset"),pmt::from_double(0.0),pmt::mp("sync_loss"));
268 message_port_pub(pmt::mp("measurements"), msg);
ptrkrysikd57745d2014-12-02 19:05:36 +0100269 //DCOUT("Re-Synchronization!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
ptrkrysik58213792014-10-30 09:05:15 +0100270 }
271 }
272 break;
piotr437f5462014-02-04 17:57:25 +0100273 }
ptrkrysik58213792014-10-30 09:05:15 +0100274 case normal_burst:
275 {
276 float normal_corr_max; //if it's normal burst
277 d_c0_burst_start = get_norm_chan_imp_resp(input, &channel_imp_resp[0], &normal_corr_max, d_bcc); //get channel impulse response for given training sequence number - d_bcc
278 detect_burst(input, &channel_imp_resp[0], d_c0_burst_start, output_binary); //MLSE detection of bits
ptrkrysik617ba032014-11-21 10:11:05 +0100279 send_burst(d_burst_nr, output_binary, GSMTAP_BURST_NORMAL, input_nr);
ptrkrysik58213792014-10-30 09:05:15 +0100280 break;
281 }
282 case dummy_or_normal:
283 {
284 unsigned int normal_burst_start, dummy_burst_start;
285 float dummy_corr_max, normal_corr_max;
piotr437f5462014-02-04 17:57:25 +0100286
ptrkrysik58213792014-10-30 09:05:15 +0100287 dummy_burst_start = get_norm_chan_imp_resp(input, &channel_imp_resp[0], &dummy_corr_max, TS_DUMMY);
288 normal_burst_start = get_norm_chan_imp_resp(input, &channel_imp_resp[0], &normal_corr_max, d_bcc);
Piotr Krysik9bc0fc02017-01-18 21:53:17 +0100289
ptrkrysik58213792014-10-30 09:05:15 +0100290 if (normal_corr_max > dummy_corr_max)
291 {
292 d_c0_burst_start = normal_burst_start;
293 detect_burst(input, &channel_imp_resp[0], normal_burst_start, output_binary);
ptrkrysik617ba032014-11-21 10:11:05 +0100294 send_burst(d_burst_nr, output_binary, GSMTAP_BURST_NORMAL, input_nr);
ptrkrysik58213792014-10-30 09:05:15 +0100295 }
296 else
297 {
298 d_c0_burst_start = dummy_burst_start;
ptrkrysik617ba032014-11-21 10:11:05 +0100299 send_burst(d_burst_nr, dummy_burst, GSMTAP_BURST_DUMMY, input_nr);
ptrkrysik58213792014-10-30 09:05:15 +0100300 }
301 break;
piotrd0bf1492014-02-05 17:27:32 +0100302 }
ptrkrysik58213792014-10-30 09:05:15 +0100303 case rach_burst:
304 break;
305 case dummy:
ptrkrysik617ba032014-11-21 10:11:05 +0100306 send_burst(d_burst_nr, dummy_burst, GSMTAP_BURST_DUMMY, input_nr);
ptrkrysik58213792014-10-30 09:05:15 +0100307 break;
308 case normal_or_noise:
309 {
310 unsigned int burst_start;
311 float normal_corr_max_tmp;
312 float normal_corr_max=-1e6;
313 int max_tn;
314 std::vector<gr_complex> v(input, input + noutput_items);
Piotr Krysikf0ec6592016-03-11 09:05:46 +0100315 //if(d_signal_dbm>=d_c0_signal_dbm-13)
ptrkrysik58213792014-10-30 09:05:15 +0100316 {
ptrkrysike518bbf2014-11-06 14:50:59 +0100317 if(d_tseq_nums.size()==0) //there is no information about training sequence
318 { //however the receiver can detect it
319 get_norm_chan_imp_resp(input, &channel_imp_resp[0], &normal_corr_max, 0);
320 float ts_max=normal_corr_max; //with use of a very simple algorithm based on finding
321 int ts_max_num=0; //maximum correlation
322 for(int ss=1; ss<=7; ss++)
323 {
324 get_norm_chan_imp_resp(input, &channel_imp_resp[0], &normal_corr_max, ss);
325 if(ts_max<normal_corr_max)
326 {
327 ts_max = normal_corr_max;
328 ts_max_num = ss;
329 }
330 }
331 d_tseq_nums.push_back(ts_max_num);
ptrkrysik58213792014-10-30 09:05:15 +0100332 }
ptrkrysike518bbf2014-11-06 14:50:59 +0100333 int tseq_num;
Piotr Krysikf0ec6592016-03-11 09:05:46 +0100334 if(input_nr<=d_tseq_nums.size())
335 {
ptrkrysike518bbf2014-11-06 14:50:59 +0100336 tseq_num = d_tseq_nums[input_nr-1];
Piotr Krysikf0ec6592016-03-11 09:05:46 +0100337 } else
338 {
ptrkrysike518bbf2014-11-06 14:50:59 +0100339 tseq_num = d_tseq_nums.back();
340 }
341 burst_start = get_norm_chan_imp_resp(input, &channel_imp_resp[0], &normal_corr_max, tseq_num);
342// if(abs(d_c0_burst_start-burst_start)<=2){ //unused check/filter based on timing
Piotr Krysikf0ec6592016-03-11 09:05:46 +0100343 // if((normal_corr_max/sqrt(signal_pwr))>=0.9)
344 {
ptrkrysike518bbf2014-11-06 14:50:59 +0100345 detect_burst(input, &channel_imp_resp[0], burst_start, output_binary);
ptrkrysik617ba032014-11-21 10:11:05 +0100346 send_burst(d_burst_nr, output_binary, GSMTAP_BURST_NORMAL, input_nr);
ptrkrysike518bbf2014-11-06 14:50:59 +0100347 }
ptrkrysik58213792014-10-30 09:05:15 +0100348 }
349 break;
350 }
351 case empty: //if it's empty burst
352 break; //do nothing
353 }
354
ptrkrysik91c28352015-06-07 18:36:15 +0200355 if(input_nr==input_items.size()-1)
ptrkrysik58213792014-10-30 09:05:15 +0100356 {
357 d_burst_nr++; //go to next burst
358 to_consume += TS_BITS * d_OSR + d_burst_nr.get_offset(); //consume samples of the burst up to next guard period
ptrkrysik58213792014-10-30 09:05:15 +0100359 consume_each(to_consume);
360 }
361 //and add offset which is introduced by
362 //0.25 fractional part of a guard period
363 }
piotrd0bf1492014-02-05 17:27:32 +0100364 }
365 break;
piotr437f5462014-02-04 17:57:25 +0100366 }
piotr6d152d92014-02-21 00:02:44 +0100367 return 0;
piotrd0bf1492014-02-05 17:27:32 +0100368}
piotr437f5462014-02-04 17:57:25 +0100369
piotr4089c1a2014-08-06 14:10:56 +0200370bool receiver_impl::find_fcch_burst(const gr_complex *input, const int nitems, double & computed_freq_offset)
piotrd0bf1492014-02-05 17:27:32 +0100371{
ptrkrysikef5e2db2015-01-03 12:10:14 +0100372 boost::circular_buffer<float> phase_diff_buffer(FCCH_HITS_NEEDED * d_OSR); //circular buffer used to scan throug signal to find
piotrd0bf1492014-02-05 17:27:32 +0100373 //best match for FCCH burst
374 float phase_diff = 0;
375 gr_complex conjprod;
376 int start_pos = -1;
377 int hit_count = 0;
378 int miss_count = 0;
379 float min_phase_diff;
380 float max_phase_diff;
381 double best_sum = 0;
382 float lowest_max_min_diff = 99999;
383
384 int to_consume = 0;
385 int sample_number = 0;
386 bool end = false;
387 bool result = false;
ptrkrysikef5e2db2015-01-03 12:10:14 +0100388 boost::circular_buffer<float>::iterator buffer_iter;
piotr6d152d92014-02-21 00:02:44 +0100389
piotrd0bf1492014-02-05 17:27:32 +0100390 /**@name Possible states of FCCH search algorithm*/
391 //@{
392 enum states
piotr437f5462014-02-04 17:57:25 +0100393 {
piotr437f5462014-02-04 17:57:25 +0100394 init, ///< initialize variables
395 search, ///< search for positive samples
396 found_something, ///< search for FCCH and the best position of it
397 fcch_found, ///< when FCCH was found
398 search_fail ///< when there is no FCCH in the input vector
piotrd0bf1492014-02-05 17:27:32 +0100399 } fcch_search_state;
400 //@}
piotr437f5462014-02-04 17:57:25 +0100401
piotrd0bf1492014-02-05 17:27:32 +0100402 fcch_search_state = init;
piotr437f5462014-02-04 17:57:25 +0100403
piotrd0bf1492014-02-05 17:27:32 +0100404 while (!end)
405 {
406 switch (fcch_search_state)
407 {
piotr437f5462014-02-04 17:57:25 +0100408
piotrd0bf1492014-02-05 17:27:32 +0100409 case init: //initialize variables
piotr437f5462014-02-04 17:57:25 +0100410 hit_count = 0;
411 miss_count = 0;
412 start_pos = -1;
413 lowest_max_min_diff = 99999;
414 phase_diff_buffer.clear();
415 fcch_search_state = search;
416
417 break;
418
piotr7c82b172014-02-08 14:15:27 +0100419 case search: // search for positive samples
piotr437f5462014-02-04 17:57:25 +0100420 sample_number++;
421
piotrd0bf1492014-02-05 17:27:32 +0100422 if (sample_number > nitems - FCCH_HITS_NEEDED * d_OSR) //if it isn't possible to find FCCH because
423 {
piotr7c82b172014-02-08 14:15:27 +0100424 //there's too few samples left to look into,
piotrd0bf1492014-02-05 17:27:32 +0100425 to_consume = sample_number; //don't do anything with those samples which are left
piotr7c82b172014-02-08 14:15:27 +0100426 //and consume only those which were checked
piotrd0bf1492014-02-05 17:27:32 +0100427 fcch_search_state = search_fail;
428 }
429 else
430 {
431 phase_diff = compute_phase_diff(input[sample_number], input[sample_number-1]);
piotr437f5462014-02-04 17:57:25 +0100432
piotrd0bf1492014-02-05 17:27:32 +0100433 if (phase_diff > 0) //if a positive phase difference was found
434 {
435 to_consume = sample_number;
436 fcch_search_state = found_something; //switch to state in which searches for FCCH
437 }
438 else
439 {
440 fcch_search_state = search;
441 }
piotr437f5462014-02-04 17:57:25 +0100442 }
443
444 break;
445
piotrd0bf1492014-02-05 17:27:32 +0100446 case found_something: // search for FCCH and the best position of it
447 {
448 if (phase_diff > 0)
449 {
piotr437f5462014-02-04 17:57:25 +0100450 hit_count++; //positive phase differencies increases hits_count
piotrd0bf1492014-02-05 17:27:32 +0100451 }
452 else
453 {
piotr437f5462014-02-04 17:57:25 +0100454 miss_count++; //negative increases miss_count
piotrd0bf1492014-02-05 17:27:32 +0100455 }
piotr437f5462014-02-04 17:57:25 +0100456
piotrd0bf1492014-02-05 17:27:32 +0100457 if ((miss_count >= FCCH_MAX_MISSES * d_OSR) && (hit_count <= FCCH_HITS_NEEDED * d_OSR))
458 {
piotr437f5462014-02-04 17:57:25 +0100459 //if miss_count exceeds limit before hit_count
460 fcch_search_state = init; //go to init
461 continue;
piotrd0bf1492014-02-05 17:27:32 +0100462 }
463 else if (((miss_count >= FCCH_MAX_MISSES * d_OSR) && (hit_count > FCCH_HITS_NEEDED * d_OSR)) || (hit_count > 2 * FCCH_HITS_NEEDED * d_OSR))
464 {
piotr437f5462014-02-04 17:57:25 +0100465 //if hit_count and miss_count exceeds limit then FCCH was found
466 fcch_search_state = fcch_found;
467 continue;
piotrd0bf1492014-02-05 17:27:32 +0100468 }
469 else if ((miss_count < FCCH_MAX_MISSES * d_OSR) && (hit_count > FCCH_HITS_NEEDED * d_OSR))
470 {
piotr437f5462014-02-04 17:57:25 +0100471 //find difference between minimal and maximal element in the buffer
472 //for FCCH this value should be low
473 //this part is searching for a region where this value is lowest
474 min_phase_diff = * (min_element(phase_diff_buffer.begin(), phase_diff_buffer.end()));
475 max_phase_diff = * (max_element(phase_diff_buffer.begin(), phase_diff_buffer.end()));
476
piotrd0bf1492014-02-05 17:27:32 +0100477 if (lowest_max_min_diff > max_phase_diff - min_phase_diff)
478 {
479 lowest_max_min_diff = max_phase_diff - min_phase_diff;
480 start_pos = sample_number - FCCH_HITS_NEEDED * d_OSR - FCCH_MAX_MISSES * d_OSR; //store start pos
481 best_sum = 0;
piotr437f5462014-02-04 17:57:25 +0100482
piotrd0bf1492014-02-05 17:27:32 +0100483 for (buffer_iter = phase_diff_buffer.begin();
484 buffer_iter != (phase_diff_buffer.end());
485 buffer_iter++)
486 {
487 best_sum += *buffer_iter - (M_PI / 2) / d_OSR; //store best value of phase offset sum
488 }
piotr437f5462014-02-04 17:57:25 +0100489 }
piotrd0bf1492014-02-05 17:27:32 +0100490 }
piotr437f5462014-02-04 17:57:25 +0100491
piotrd0bf1492014-02-05 17:27:32 +0100492 sample_number++;
piotr437f5462014-02-04 17:57:25 +0100493
piotrd0bf1492014-02-05 17:27:32 +0100494 if (sample_number >= nitems) //if there's no single sample left to check
495 {
piotr437f5462014-02-04 17:57:25 +0100496 fcch_search_state = search_fail;//FCCH search failed
497 continue;
piotr437f5462014-02-04 17:57:25 +0100498 }
piotrd0bf1492014-02-05 17:27:32 +0100499
500 phase_diff = compute_phase_diff(input[sample_number], input[sample_number-1]);
501 phase_diff_buffer.push_back(phase_diff);
502 fcch_search_state = found_something;
503 }
504 break;
505
506 case fcch_found:
507 {
piotrd0bf1492014-02-05 17:27:32 +0100508 to_consume = start_pos + FCCH_HITS_NEEDED * d_OSR + 1; //consume one FCCH burst
509
510 d_fcch_start_pos = d_counter + start_pos;
511
512 //compute frequency offset
513 double phase_offset = best_sum / FCCH_HITS_NEEDED;
piotr4089c1a2014-08-06 14:10:56 +0200514 double freq_offset = phase_offset * 1625000.0/6 / (2 * M_PI); //1625000.0/6 - GMSK symbol rate in GSM
515 computed_freq_offset = freq_offset;
piotrd0bf1492014-02-05 17:27:32 +0100516
517 end = true;
518 result = true;
piotr437f5462014-02-04 17:57:25 +0100519 break;
piotrd0bf1492014-02-05 17:27:32 +0100520 }
piotr437f5462014-02-04 17:57:25 +0100521
piotrd0bf1492014-02-05 17:27:32 +0100522 case search_fail:
piotr437f5462014-02-04 17:57:25 +0100523 end = true;
524 result = false;
525 break;
526 }
piotr437f5462014-02-04 17:57:25 +0100527 }
528
piotrd0bf1492014-02-05 17:27:32 +0100529 d_counter += to_consume;
530 consume_each(to_consume);
piotr437f5462014-02-04 17:57:25 +0100531
piotrd0bf1492014-02-05 17:27:32 +0100532 return result;
533}
534
Piotr Krysikd61f85b2016-08-29 07:38:25 +0200535double receiver_impl::compute_freq_offset(const gr_complex * input, unsigned first_sample, unsigned last_sample)
536{
Piotr Krysik654d6522017-01-23 21:53:48 +0100537 double phase_sum = 0;
538 unsigned ii;
539
540 for (ii = first_sample; ii < last_sample; ii++)
541 {
542 double phase_diff = compute_phase_diff(input[ii], input[ii-1]) - (M_PI / 2) / d_OSR;
543 phase_sum += phase_diff;
544 }
545
546 double phase_offset = phase_sum / (last_sample - first_sample);
547 double freq_offset = phase_offset * 1625000.0 / (12.0 * M_PI);
piotrd0bf1492014-02-05 17:27:32 +0100548 return freq_offset;
549}
piotr437f5462014-02-04 17:57:25 +0100550
piotrd0bf1492014-02-05 17:27:32 +0100551inline float receiver_impl::compute_phase_diff(gr_complex val1, gr_complex val2)
552{
553 gr_complex conjprod = val1 * conj(val2);
554 return fast_atan2f(imag(conjprod), real(conjprod));
555}
piotr437f5462014-02-04 17:57:25 +0100556
piotrd0bf1492014-02-05 17:27:32 +0100557bool receiver_impl::reach_sch_burst(const int nitems)
558{
559 //it just consumes samples to get near to a SCH burst
560 int to_consume = 0;
561 bool result = false;
562 unsigned sample_nr_near_sch_start = d_fcch_start_pos + (FRAME_BITS - SAFETY_MARGIN) * d_OSR;
563
564 //consume samples until d_counter will be equal to sample_nr_near_sch_start
565 if (d_counter < sample_nr_near_sch_start)
566 {
567 if (d_counter + nitems >= sample_nr_near_sch_start)
568 {
569 to_consume = sample_nr_near_sch_start - d_counter;
570 }
571 else
572 {
573 to_consume = nitems;
piotr437f5462014-02-04 17:57:25 +0100574 }
575 result = false;
piotrd0bf1492014-02-05 17:27:32 +0100576 }
577 else
578 {
piotr437f5462014-02-04 17:57:25 +0100579 to_consume = 0;
580 result = true;
piotr437f5462014-02-04 17:57:25 +0100581 }
582
piotrd0bf1492014-02-05 17:27:32 +0100583 d_counter += to_consume;
584 consume_each(to_consume);
585 return result;
586}
587
588int receiver_impl::get_sch_chan_imp_resp(const gr_complex *input, gr_complex * chan_imp_resp)
589{
ptrkrysikef5e2db2015-01-03 12:10:14 +0100590 std::vector<gr_complex> correlation_buffer;
591 std::vector<float> power_buffer;
592 std::vector<float> window_energy_buffer;
piotrd0bf1492014-02-05 17:27:32 +0100593
594 int strongest_window_nr;
595 int burst_start = 0;
596 int chan_imp_resp_center = 0;
597 float max_correlation = 0;
598 float energy = 0;
599
600 for (int ii = SYNC_POS * d_OSR; ii < (SYNC_POS + SYNC_SEARCH_RANGE) *d_OSR; ii++)
piotr437f5462014-02-04 17:57:25 +0100601 {
piotr437f5462014-02-04 17:57:25 +0100602 gr_complex correlation = correlate_sequence(&d_sch_training_seq[5], N_SYNC_BITS - 10, &input[ii]);
603 correlation_buffer.push_back(correlation);
604 power_buffer.push_back(std::pow(abs(correlation), 2));
piotrd0bf1492014-02-05 17:27:32 +0100605 }
piotrd0bf1492014-02-05 17:27:32 +0100606 //compute window energies
ptrkrysikef5e2db2015-01-03 12:10:14 +0100607 std::vector<float>::iterator iter = power_buffer.begin();
piotrd0bf1492014-02-05 17:27:32 +0100608 bool loop_end = false;
609 while (iter != power_buffer.end())
610 {
ptrkrysikef5e2db2015-01-03 12:10:14 +0100611 std::vector<float>::iterator iter_ii = iter;
piotr437f5462014-02-04 17:57:25 +0100612 energy = 0;
613
piotrd0bf1492014-02-05 17:27:32 +0100614 for (int ii = 0; ii < (d_chan_imp_length) *d_OSR; ii++, iter_ii++)
615 {
616 if (iter_ii == power_buffer.end())
617 {
618 loop_end = true;
619 break;
620 }
621 energy += (*iter_ii);
piotr437f5462014-02-04 17:57:25 +0100622 }
piotrd0bf1492014-02-05 17:27:32 +0100623 if (loop_end)
624 {
625 break;
piotr437f5462014-02-04 17:57:25 +0100626 }
627 iter++;
628 window_energy_buffer.push_back(energy);
piotrd0bf1492014-02-05 17:27:32 +0100629 }
piotr437f5462014-02-04 17:57:25 +0100630
piotrd0bf1492014-02-05 17:27:32 +0100631 strongest_window_nr = max_element(window_energy_buffer.begin(), window_energy_buffer.end()) - window_energy_buffer.begin();
piotr437f5462014-02-04 17:57:25 +0100632 // d_channel_imp_resp.clear();
633
piotrd0bf1492014-02-05 17:27:32 +0100634 max_correlation = 0;
635 for (int ii = 0; ii < (d_chan_imp_length) *d_OSR; ii++)
636 {
piotr437f5462014-02-04 17:57:25 +0100637 gr_complex correlation = correlation_buffer[strongest_window_nr + ii];
piotrd0bf1492014-02-05 17:27:32 +0100638 if (abs(correlation) > max_correlation)
639 {
640 chan_imp_resp_center = ii;
641 max_correlation = abs(correlation);
piotr437f5462014-02-04 17:57:25 +0100642 }
piotrd0bf1492014-02-05 17:27:32 +0100643 // d_channel_imp_resp.push_back(correlation);
piotr437f5462014-02-04 17:57:25 +0100644 chan_imp_resp[ii] = correlation;
piotr437f5462014-02-04 17:57:25 +0100645 }
646
piotrd0bf1492014-02-05 17:27:32 +0100647 burst_start = strongest_window_nr + chan_imp_resp_center - 48 * d_OSR - 2 * d_OSR + 2 + SYNC_POS * d_OSR;
648 return burst_start;
649}
piotr437f5462014-02-04 17:57:25 +0100650
651
piotrd0bf1492014-02-05 17:27:32 +0100652void receiver_impl::detect_burst(const gr_complex * input, gr_complex * chan_imp_resp, int burst_start, unsigned char * output_binary)
653{
654 float output[BURST_SIZE];
David Holmf2497bd2014-12-01 21:22:37 +0100655 std::vector<gr_complex> rhh_temp(CHAN_IMP_RESP_LENGTH*d_OSR);
piotrd0bf1492014-02-05 17:27:32 +0100656 gr_complex rhh[CHAN_IMP_RESP_LENGTH];
657 gr_complex filtered_burst[BURST_SIZE];
658 int start_state = 3;
659 unsigned int stop_states[2] = {4, 12};
660
David Holmf2497bd2014-12-01 21:22:37 +0100661 autocorrelation(chan_imp_resp, &rhh_temp[0], d_chan_imp_length*d_OSR);
piotrd0bf1492014-02-05 17:27:32 +0100662 for (int ii = 0; ii < (d_chan_imp_length); ii++)
piotr437f5462014-02-04 17:57:25 +0100663 {
piotr437f5462014-02-04 17:57:25 +0100664 rhh[ii] = conj(rhh_temp[ii*d_OSR]);
piotr437f5462014-02-04 17:57:25 +0100665 }
666
piotrd0bf1492014-02-05 17:27:32 +0100667 mafi(&input[burst_start], BURST_SIZE, chan_imp_resp, d_chan_imp_length*d_OSR, filtered_burst);
668
669 viterbi_detector(filtered_burst, BURST_SIZE, rhh, start_state, stop_states, 2, output);
670
671 for (int i = 0; i < BURST_SIZE ; i++)
piotr437f5462014-02-04 17:57:25 +0100672 {
piotrd0bf1492014-02-05 17:27:32 +0100673 output_binary[i] = (output[i] > 0);
674 }
675}
piotr437f5462014-02-04 17:57:25 +0100676
piotrd0bf1492014-02-05 17:27:32 +0100677void receiver_impl::gmsk_mapper(const unsigned char * input, int nitems, gr_complex * gmsk_output, gr_complex start_point)
678{
679 gr_complex j = gr_complex(0.0, 1.0);
piotr437f5462014-02-04 17:57:25 +0100680
piotrd0bf1492014-02-05 17:27:32 +0100681 int current_symbol;
682 int encoded_symbol;
683 int previous_symbol = 2 * input[0] - 1;
684 gmsk_output[0] = start_point;
685
686 for (int i = 1; i < nitems; i++)
687 {
piotr437f5462014-02-04 17:57:25 +0100688 //change bits representation to NRZ
689 current_symbol = 2 * input[i] - 1;
690 //differentially encode
691 encoded_symbol = current_symbol * previous_symbol;
692 //and do gmsk mapping
693 gmsk_output[i] = j * gr_complex(encoded_symbol, 0.0) * gmsk_output[i-1];
694 previous_symbol = current_symbol;
piotr437f5462014-02-04 17:57:25 +0100695 }
piotrd0bf1492014-02-05 17:27:32 +0100696}
piotr437f5462014-02-04 17:57:25 +0100697
piotrd0bf1492014-02-05 17:27:32 +0100698gr_complex receiver_impl::correlate_sequence(const gr_complex * sequence, int length, const gr_complex * input)
699{
700 gr_complex result(0.0, 0.0);
701 int sample_number = 0;
702
703 for (int ii = 0; ii < length; ii++)
piotr437f5462014-02-04 17:57:25 +0100704 {
piotr437f5462014-02-04 17:57:25 +0100705 sample_number = (ii * d_OSR) ;
706 result += sequence[ii] * conj(input[sample_number]);
piotr437f5462014-02-04 17:57:25 +0100707 }
708
piotrd0bf1492014-02-05 17:27:32 +0100709 result = result / gr_complex(length, 0);
710 return result;
711}
712
713//computes autocorrelation for positive arguments
piotrd0bf1492014-02-05 17:27:32 +0100714inline void receiver_impl::autocorrelation(const gr_complex * input, gr_complex * out, int nitems)
715{
716 int i, k;
717 for (k = nitems - 1; k >= 0; k--)
piotr437f5462014-02-04 17:57:25 +0100718 {
piotr437f5462014-02-04 17:57:25 +0100719 out[k] = gr_complex(0, 0);
piotrd0bf1492014-02-05 17:27:32 +0100720 for (i = k; i < nitems; i++)
721 {
722 out[k] += input[i] * conj(input[i-k]);
piotr437f5462014-02-04 17:57:25 +0100723 }
piotr437f5462014-02-04 17:57:25 +0100724 }
piotrd0bf1492014-02-05 17:27:32 +0100725}
piotr437f5462014-02-04 17:57:25 +0100726
piotrd0bf1492014-02-05 17:27:32 +0100727inline void receiver_impl::mafi(const gr_complex * input, int nitems, gr_complex * filter, int filter_length, gr_complex * output)
728{
729 int ii = 0, n, a;
730
731 for (n = 0; n < nitems; n++)
piotr437f5462014-02-04 17:57:25 +0100732 {
piotr437f5462014-02-04 17:57:25 +0100733 a = n * d_OSR;
734 output[n] = 0;
735 ii = 0;
736
piotrd0bf1492014-02-05 17:27:32 +0100737 while (ii < filter_length)
738 {
piotrda8a0662014-04-24 10:29:38 +0200739 if ((a + ii) >= nitems*d_OSR){
piotrd0bf1492014-02-05 17:27:32 +0100740 break;
piotrda8a0662014-04-24 10:29:38 +0200741 }
piotrd0bf1492014-02-05 17:27:32 +0100742 output[n] += input[a+ii] * filter[ii];
743 ii++;
piotr437f5462014-02-04 17:57:25 +0100744 }
piotr437f5462014-02-04 17:57:25 +0100745 }
piotrd0bf1492014-02-05 17:27:32 +0100746}
piotr437f5462014-02-04 17:57:25 +0100747
piotrd0bf1492014-02-05 17:27:32 +0100748//especially computations of strongest_window_nr
piotr7e3b0db2014-02-05 22:44:30 +0100749int receiver_impl::get_norm_chan_imp_resp(const gr_complex *input, gr_complex * chan_imp_resp, float *corr_max, int bcc)
piotrd0bf1492014-02-05 17:27:32 +0100750{
ptrkrysikef5e2db2015-01-03 12:10:14 +0100751 std::vector<gr_complex> correlation_buffer;
752 std::vector<float> power_buffer;
753 std::vector<float> window_energy_buffer;
piotr437f5462014-02-04 17:57:25 +0100754
piotrd0bf1492014-02-05 17:27:32 +0100755 int strongest_window_nr;
756 int burst_start = 0;
757 int chan_imp_resp_center = 0;
758 float max_correlation = 0;
759 float energy = 0;
piotr5c820252014-04-17 09:43:02 +0200760
piotrd0bf1492014-02-05 17:27:32 +0100761 int search_center = (int)((TRAIN_POS + GUARD_PERIOD) * d_OSR);
piotr7c82b172014-02-08 14:15:27 +0100762 int search_start_pos = search_center + 1 - 5*d_OSR;
piotr437f5462014-02-04 17:57:25 +0100763 // int search_start_pos = search_center - d_chan_imp_length * d_OSR;
piotr5c820252014-04-17 09:43:02 +0200764 int search_stop_pos = search_center + d_chan_imp_length * d_OSR + 5 * d_OSR;
piotr437f5462014-02-04 17:57:25 +0100765
ptrkrysik58213792014-10-30 09:05:15 +0100766 for(int ii = search_start_pos; ii < search_stop_pos; ii++)
piotrd0bf1492014-02-05 17:27:32 +0100767 {
piotr437f5462014-02-04 17:57:25 +0100768 gr_complex correlation = correlate_sequence(&d_norm_training_seq[bcc][TRAIN_BEGINNING], N_TRAIN_BITS - 10, &input[ii]);
piotr437f5462014-02-04 17:57:25 +0100769 correlation_buffer.push_back(correlation);
770 power_buffer.push_back(std::pow(abs(correlation), 2));
piotrd0bf1492014-02-05 17:27:32 +0100771 }
ptrkrysike518bbf2014-11-06 14:50:59 +0100772// plot(power_buffer);
piotrd0bf1492014-02-05 17:27:32 +0100773 //compute window energies
ptrkrysikef5e2db2015-01-03 12:10:14 +0100774 std::vector<float>::iterator iter = power_buffer.begin();
piotrd0bf1492014-02-05 17:27:32 +0100775 bool loop_end = false;
776 while (iter != power_buffer.end())
777 {
ptrkrysikef5e2db2015-01-03 12:10:14 +0100778 std::vector<float>::iterator iter_ii = iter;
piotr437f5462014-02-04 17:57:25 +0100779 energy = 0;
780
Piotr Krysik97d4f8a2016-02-11 08:40:44 +0100781 for (int ii = 0; ii < (d_chan_imp_length)*d_OSR; ii++, iter_ii++)
piotrd0bf1492014-02-05 17:27:32 +0100782 {
piotrd0bf1492014-02-05 17:27:32 +0100783 if (iter_ii == power_buffer.end())
784 {
785 loop_end = true;
786 break;
787 }
788 energy += (*iter_ii);
piotr437f5462014-02-04 17:57:25 +0100789 }
piotrd0bf1492014-02-05 17:27:32 +0100790 if (loop_end)
791 {
792 break;
piotr437f5462014-02-04 17:57:25 +0100793 }
794 iter++;
795
796 window_energy_buffer.push_back(energy);
piotrd0bf1492014-02-05 17:27:32 +0100797 }
piotr437f5462014-02-04 17:57:25 +0100798
piotr5c820252014-04-17 09:43:02 +0200799 strongest_window_nr = max_element(window_energy_buffer.begin(), window_energy_buffer.end()-((d_chan_imp_length)*d_OSR)) - window_energy_buffer.begin();
800 //strongest_window_nr = strongest_window_nr-d_OSR;
801 if(strongest_window_nr<0){
802 strongest_window_nr = 0;
803 }
piotr6d152d92014-02-21 00:02:44 +0100804
piotrd0bf1492014-02-05 17:27:32 +0100805 max_correlation = 0;
806 for (int ii = 0; ii < (d_chan_imp_length)*d_OSR; ii++)
807 {
piotr437f5462014-02-04 17:57:25 +0100808 gr_complex correlation = correlation_buffer[strongest_window_nr + ii];
piotrd0bf1492014-02-05 17:27:32 +0100809 if (abs(correlation) > max_correlation)
810 {
811 chan_imp_resp_center = ii;
812 max_correlation = abs(correlation);
piotr437f5462014-02-04 17:57:25 +0100813 }
piotrd0bf1492014-02-05 17:27:32 +0100814 // d_channel_imp_resp.push_back(correlation);
piotr437f5462014-02-04 17:57:25 +0100815 chan_imp_resp[ii] = correlation;
piotr437f5462014-02-04 17:57:25 +0100816 }
ptrkrysike518bbf2014-11-06 14:50:59 +0100817
piotr7e3b0db2014-02-05 22:44:30 +0100818 *corr_max = max_correlation;
piotrd0bf1492014-02-05 17:27:32 +0100819
ptrkrysik58213792014-10-30 09:05:15 +0100820 //DCOUT("strongest_window_nr_new: " << strongest_window_nr);
piotrc7c249a2014-05-02 17:24:08 +0200821 burst_start = search_start_pos + strongest_window_nr - TRAIN_POS * d_OSR; //compute first sample posiiton which corresponds to the first sample of the impulse response
piotr7c82b172014-02-08 14:15:27 +0100822
ptrkrysik58213792014-10-30 09:05:15 +0100823 //DCOUT("burst_start: " << burst_start);
piotrd0bf1492014-02-05 17:27:32 +0100824 return burst_start;
825}
piotr437f5462014-02-04 17:57:25 +0100826
827
ptrkrysik617ba032014-11-21 10:11:05 +0100828void receiver_impl::send_burst(burst_counter burst_nr, const unsigned char * burst_binary, uint8_t burst_type, unsigned int input_nr)
piotrd0bf1492014-02-05 17:27:32 +0100829{
piotr6d152d92014-02-21 00:02:44 +0100830 boost::scoped_ptr<gsmtap_hdr> tap_header(new gsmtap_hdr());
ptrkrysik617ba032014-11-21 10:11:05 +0100831
piotr6d152d92014-02-21 00:02:44 +0100832 tap_header->version = GSMTAP_VERSION;
ptrkrysik7f61c642014-10-30 08:57:27 +0100833 tap_header->hdr_len = sizeof(gsmtap_hdr)/4;
piotr6d152d92014-02-21 00:02:44 +0100834 tap_header->type = GSMTAP_TYPE_UM_BURST;
ptrkrysik617ba032014-11-21 10:11:05 +0100835 tap_header->sub_type = burst_type;
ptrkrysik380dea82015-08-06 10:11:58 +0200836 bool uplink_burst = (input_nr >= d_cell_allocation.size());
837 if(!uplink_burst) // downlink burst
838 {
839 tap_header->timeslot = static_cast<uint8_t>(d_burst_nr.get_timeslot_nr());
840 tap_header->frame_number = htobe32(d_burst_nr.get_frame_nr());
841 tap_header->arfcn = htobe16(d_cell_allocation[input_nr]) ;
842 }
843 else //uplink burst
844 {
845 tap_header->timeslot = static_cast<uint8_t>(d_burst_nr.subtract_timeslots(3).get_timeslot_nr());
846 tap_header->frame_number = htobe32(d_burst_nr.subtract_timeslots(3).get_frame_nr());
847 input_nr = input_nr - d_cell_allocation.size();
848 tap_header->arfcn = htobe16(d_cell_allocation[input_nr] | 0x4000);
849 }
piotr6d152d92014-02-21 00:02:44 +0100850 tap_header->signal_dbm = static_cast<int8_t>(d_signal_dbm);
ptrkrysik6f6d46d2014-11-12 22:50:18 +0100851 tap_header->snr_db = 0;
ptrkrysik617ba032014-11-21 10:11:05 +0100852
853 int8_t header_plus_burst[sizeof(gsmtap_hdr)+BURST_SIZE];
854 memcpy(header_plus_burst, tap_header.get(), sizeof(gsmtap_hdr));
855 memcpy(header_plus_burst+sizeof(gsmtap_hdr), burst_binary, BURST_SIZE);
856
857 pmt::pmt_t blob_header_plus_burst = pmt::make_blob(header_plus_burst,sizeof(gsmtap_hdr)+BURST_SIZE);
858 pmt::pmt_t msg = pmt::cons(pmt::PMT_NIL, blob_header_plus_burst);
piotrf2b6a1b2014-08-04 11:28:59 +0200859
ptrkrysike518bbf2014-11-06 14:50:59 +0100860 if(input_nr==0){
861 message_port_pub(pmt::mp("C0"), msg);
862 } else {
863 message_port_pub(pmt::mp("CX"), msg);
864 }
piotrd0bf1492014-02-05 17:27:32 +0100865}
piotr6d152d92014-02-21 00:02:44 +0100866
piotrd0bf1492014-02-05 17:27:32 +0100867void receiver_impl::configure_receiver()
868{
piotrce92f982014-04-17 23:37:18 +0200869 d_channel_conf.set_multiframe_type(TIMESLOT0, multiframe_51);
piotrd0bf1492014-02-05 17:27:32 +0100870 d_channel_conf.set_burst_types(TIMESLOT0, TEST51, sizeof(TEST51) / sizeof(unsigned), dummy_or_normal);
piotr437f5462014-02-04 17:57:25 +0100871
piotrce92f982014-04-17 23:37:18 +0200872 d_channel_conf.set_burst_types(TIMESLOT0, TEST_CCH_FRAMES, sizeof(TEST_CCH_FRAMES) / sizeof(unsigned), dummy_or_normal);
873 d_channel_conf.set_burst_types(TIMESLOT0, FCCH_FRAMES, sizeof(FCCH_FRAMES) / sizeof(unsigned), fcch_burst);
874 d_channel_conf.set_burst_types(TIMESLOT0, SCH_FRAMES, sizeof(SCH_FRAMES) / sizeof(unsigned), sch_burst);
piotr437f5462014-02-04 17:57:25 +0100875
piotrd0bf1492014-02-05 17:27:32 +0100876 d_channel_conf.set_multiframe_type(TIMESLOT1, multiframe_51);
877 d_channel_conf.set_burst_types(TIMESLOT1, TEST51, sizeof(TEST51) / sizeof(unsigned), dummy_or_normal);
878 d_channel_conf.set_multiframe_type(TIMESLOT2, multiframe_51);
879 d_channel_conf.set_burst_types(TIMESLOT2, TEST51, sizeof(TEST51) / sizeof(unsigned), dummy_or_normal);
880 d_channel_conf.set_multiframe_type(TIMESLOT3, multiframe_51);
881 d_channel_conf.set_burst_types(TIMESLOT3, TEST51, sizeof(TEST51) / sizeof(unsigned), dummy_or_normal);
882 d_channel_conf.set_multiframe_type(TIMESLOT4, multiframe_51);
883 d_channel_conf.set_burst_types(TIMESLOT4, TEST51, sizeof(TEST51) / sizeof(unsigned), dummy_or_normal);
884 d_channel_conf.set_multiframe_type(TIMESLOT5, multiframe_51);
885 d_channel_conf.set_burst_types(TIMESLOT5, TEST51, sizeof(TEST51) / sizeof(unsigned), dummy_or_normal);
886 d_channel_conf.set_multiframe_type(TIMESLOT6, multiframe_51);
887 d_channel_conf.set_burst_types(TIMESLOT6, TEST51, sizeof(TEST51) / sizeof(unsigned), dummy_or_normal);
888 d_channel_conf.set_multiframe_type(TIMESLOT7, multiframe_51);
889 d_channel_conf.set_burst_types(TIMESLOT7, TEST51, sizeof(TEST51) / sizeof(unsigned), dummy_or_normal);
piotrd0bf1492014-02-05 17:27:32 +0100890}
piotr437f5462014-02-04 17:57:25 +0100891
ptrkrysik7a7b9b02014-11-19 11:27:34 +0100892void receiver_impl::set_cell_allocation(const std::vector<int> &cell_allocation)
piotrf2b6a1b2014-08-04 11:28:59 +0200893{
ptrkrysike518bbf2014-11-06 14:50:59 +0100894 d_cell_allocation = cell_allocation;
895}
896
897void receiver_impl::set_tseq_nums(const std::vector<int> & tseq_nums)
898{
899 d_tseq_nums = tseq_nums;
piotrf2b6a1b2014-08-04 11:28:59 +0200900}
901
902void receiver_impl::reset()
903{
piotrd6d66872014-08-06 15:20:33 +0200904 d_state = fcch_search;
piotrf2b6a1b2014-08-04 11:28:59 +0200905}
piotr437f5462014-02-04 17:57:25 +0100906
piotrd0bf1492014-02-05 17:27:32 +0100907} /* namespace gsm */
piotr437f5462014-02-04 17:57:25 +0100908} /* namespace gr */
909