bpsk_demod_bp.cpp
上传用户:jtjnyq9001
上传日期:2014-11-21
资源大小:3974k
文件大小:3k
源码类别:

3G开发

开发平台:

Visual C++

  1. //
  2. //  File = bpsk_demod_bp.cpp
  3. //
  4. #include <stdlib.h>
  5. #include <fstream>
  6. #include "parmfile.h"
  7. #include "bpsk_demod_bp.h"
  8. #include "misdefs.h"
  9. #include "model_graph.h"
  10. extern ParmFile *ParmInput;
  11. extern int PassNumber;
  12. #ifdef _DEBUG
  13.   extern ofstream *DebugFile;
  14. #endif
  15. //======================================================
  16. BpskBandpassDemod::BpskBandpassDemod( char* instance_name,
  17.                                   PracSimModel* outer_model,
  18.                                   Signal< float >* in_sig,
  19.                                   Signal< float >* ref_sig,
  20.                                   Signal< bit_t >* symb_clock_in,
  21.                                   Signal< bit_t >* decis_out )
  22.                 :PracSimModel(instance_name,
  23.                               outer_model)
  24. {
  25.   MODEL_NAME(BpskBandpassDemod);
  26.   ENABLE_MULTIRATE;
  27.   //-----------------------------------------
  28.   //  Read model config parms
  29.   OPEN_PARM_BLOCK;
  30.   GET_INT_PARM(Samps_Per_Symb);
  31.   GET_DOUBLE_PARM(Dly_To_Start);
  32.   //--------------------------------------
  33.   //  Connect input and output signals
  34.   Decis_Out = decis_out;
  35.   Symb_Clock_In = symb_clock_in;
  36.   In_Sig = in_sig;
  37.   Ref_Sig = ref_sig;
  38.   MAKE_OUTPUT( Decis_Out );
  39.   MAKE_INPUT( Symb_Clock_In );
  40.   MAKE_INPUT( In_Sig );
  41.   MAKE_INPUT( Ref_Sig );
  42.   double resamp_rate = 1.0/double(Samps_Per_Symb);
  43.   CHANGE_RATE( In_Sig, Decis_Out, resamp_rate );
  44.   CHANGE_RATE( Ref_Sig, Decis_Out, resamp_rate );
  45.   CHANGE_RATE( Symb_Clock_In, Decis_Out, resamp_rate );
  46. }
  47. //==============================================
  48. BpskBandpassDemod::~BpskBandpassDemod( void ){ };
  49. //==============================================
  50. void BpskBandpassDemod::Initialize(void)
  51. {
  52.   Block_Size = In_Sig->GetBlockSize();
  53.   Out_Samp_Intvl = Decis_Out->GetSampIntvl();
  54.   Integ_Val = 0.0;
  55. }
  56. //============================================
  57. int BpskBandpassDemod::Execute()
  58. {
  59.   bit_t *decis_out_ptr;
  60.   float *in_sig_ptr;
  61.   float *ref_sig_ptr;
  62.   bit_t *symb_clock_in_ptr;
  63.   float in_val, ref_val;
  64.   double integ_val;
  65.   double max_val=0.0;
  66.   int is;
  67.   #ifdef _DEBUG
  68.     *DebugFile << "In BpskBandpassDemod::Execute" << endl;
  69.   #endif
  70.   in_sig_ptr = GET_INPUT_PTR( In_Sig );
  71.   ref_sig_ptr = GET_INPUT_PTR( Ref_Sig );
  72.   symb_clock_in_ptr = GET_INPUT_PTR( Symb_Clock_In );
  73.   decis_out_ptr = GET_OUTPUT_PTR( Decis_Out );
  74.   integ_val = Integ_Val;
  75.   for (is=0; is<Block_Size; is++)
  76.     {
  77.     in_val = *in_sig_ptr++;
  78.     ref_val = *ref_sig_ptr++;
  79.     // correlate input signal against recovered carrier
  80.     integ_val += in_val * ref_val;
  81.     if(*symb_clock_in_ptr != 0)
  82.       {
  83.       // time to make a decision
  84.       if(integ_val > 0.0 )
  85.         {
  86.         *decis_out_ptr++ = 1;
  87.         }
  88.       else
  89.         {
  90.         *decis_out_ptr++ = 0;
  91.         }
  92.       integ_val = 0.0;
  93.       }
  94.     symb_clock_in_ptr++;
  95.     }
  96.   Integ_Val = integ_val;
  97.   return(_MES_AOK);
  98. }