Hamlib/gnuradio/gr_priv.h

121 wiersze
3.0 KiB
C

/*
* Hamlib GNUradio backend - gnuradio priv structure
* Copyright (c) 2001-2003 by Stephane Fillod
*
* $Id: gr_priv.h,v 1.4 2003-04-06 18:50:21 fillods Exp $
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* This program 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 Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
#ifndef _GR_PRIV_H
#define _GR_PRIV_H 1
#include <VrSigSource.h>
#include <VrSink.h>
#include <VrMultiTask.h>
#include <VrFixOffset.h>
#include <GrFreqXlatingFIRfilterSCF.h>
#include <GrFreqXlatingFIRfilterCCF.h>
#include <GrFIRfilterFSF.h>
#include <VrQuadratureDemod.h> /* FM */
//#include <VrAmplitudeDemod.h> /* AM */
#include <GrIIRfilter.h>
#include <GrConvertFS.h>
/* SSB mod */
//#include <GrSSBMod.h>
//#include <GrHilbert.h>
#include <pthread.h>
#include <hamlib/rig.h>
#define IOTYPE short
struct mod_data {
union {
struct {
/* FM demod */
VrQuadratureDemod<float> *demod;
float FMdemodGain;
GrFreqXlatingFIRfilterCCF *chan2_filter;
GrIIRfilter<float,float,double> *deemph;
GrConvertFS *cfs;
} fm;
struct {
/* WFM demod */
VrQuadratureDemod<float> *demod;
float FMdemodGain;
} wfm;
#if 0
struct {
/* AM demod */
VrAmplitudeDemod<float> *demod;
} am;
#endif
struct {
/* SSB mod */
#if 0
GrHilbert<short> *hilb;
GrSSBMod<short> *shifter;
#endif
} ssb;
} demod;
int CFIRdecimate;
int CFIRdecimate2;
int RFIRdecimate;
GrFreqXlatingFIRfilterSCF *chan_filter;
GrFIRfilterFSF *audio_filter;
GrFIRfilterFFF *audioF_filter;
};
#define NUM_CHAN 2 /* VFO A and VFO B */
struct gnuradio_priv_data {
/* current vfo already in rig_state ? */
vfo_t curr_vfo;
value_t parms[RIG_SETTING_MAX];
channel_t chans[NUM_CHAN];
/* tuner providing IF */
rig_model_t tuner_model;
RIG *tuner;
shortfreq_t input_rate;
shortfreq_t IF_center_freq;
VrSource<IOTYPE> *source; /*< IF source */
VrFixOffset<IOTYPE,IOTYPE> *offset_fixer; /*< some sources need it */
VrSink<short> *sink; /*< Audio sink */
VrMultiTask *m;
int need_fixer; /*< always need Offset fixer ? */
pthread_t process_thread;
pthread_mutex_t mutex_process;
volatile int do_process; /*< flag to tell process thread to stop */
struct mod_data mods[NUM_CHAN]; /*< Modulation objects and stuff, one per channel */
};
//#define GR_SOURCE(priv) ((priv)->need_fixer?(priv)->offset_fixer:(priv)->source)
#define GR_SOURCE(priv) ((priv)->offset_fixer)
#define GR_MAX_FREQUENCY(priv) ((priv)->input_rate/2)
#endif /* _GR_PRIV_H */