⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gr_simple_correlator.h

📁 gnuradio软件无线电源程序.现在的手机多基于软件无线电
💻 H
字号:
/* -*- c++ -*- *//* * Copyright 2004 Free Software Foundation, Inc. *  * This file is part of GNU Radio *  * GNU Radio 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 2, or (at your option) * any later version. *  * GNU Radio 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 GNU Radio; see the file COPYING.  If not, write to * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */#ifndef INCLUDED_GR_SIMPLE_CORRELATOR_H#define INCLUDED_GR_SIMPLE_CORRELATOR_H#include <gr_block.h>#include <assert.h>class gr_simple_correlator;typedef boost::shared_ptr<gr_simple_correlator> gr_simple_correlator_sptr;gr_simple_correlator_sptr gr_make_simple_correlator (int payload_bytesize);/*! * \brief inverse of gr_simple_framer (more or less) * \ingroup block * * TAPR DCC-2004 demo... */class gr_simple_correlator : public gr_block{  static const int OVERSAMPLE = 8;  enum state_t { ST_LOOKING, ST_UNDER_THRESHOLD, ST_LOCKED };    int	  	 d_payload_bytesize;  state_t	 d_state;  unsigned int	 d_osi;				// over sample index [0,OVERSAMPLE-1]  unsigned int	 d_transition_osi;		// first index where Hamming dist < thresh  unsigned int	 d_center_osi;			// center of bit  unsigned int	 d_shift_reg[OVERSAMPLE];  int		 d_bblen;			// length of bitbuf  unsigned char	*d_bitbuf;			// demodulated bits  int		 d_bbi;				// bitbuf index  friend gr_simple_correlator_sptr gr_make_simple_correlator (int payload_bytesize);  gr_simple_correlator (int payload_bytesize);  void enter_locked ();  void enter_under_threshold ();  void enter_looking ();    static int add_index (int a, int b)  {    int t = a + b;    if (t >= OVERSAMPLE)      t -= OVERSAMPLE;    assert (t >= 0 && t < OVERSAMPLE);    return t;  }  static int sub_index (int a, int b)  {    int t = a - b;    if (t < 0)      t += OVERSAMPLE;    assert (t >= 0 && t < OVERSAMPLE);    return t;  }   public:  ~gr_simple_correlator ();  int general_work (int noutput_items,		    gr_vector_int &ninput_items,		    gr_vector_const_void_star &input_items,		    gr_vector_void_star &output_items);};#endif /* INCLUDED_GR_SIMPLE_CORRELATOR_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -