commit-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commit-gnuradio] r4227 - gnuradio/branches/developers/trondeau/digital-


From: trondeau
Subject: [Commit-gnuradio] r4227 - gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/lib/general
Date: Thu, 4 Jan 2007 15:23:04 -0700 (MST)

Author: trondeau
Date: 2007-01-04 15:23:04 -0700 (Thu, 04 Jan 2007)
New Revision: 4227

Modified:
   
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/lib/general/gr_mpsk_receiver_cc.cc
   
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/lib/general/gr_mpsk_receiver_cc.h
Log:
removed file stream member

Modified: 
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/lib/general/gr_mpsk_receiver_cc.cc
===================================================================
--- 
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/lib/general/gr_mpsk_receiver_cc.cc
     2007-01-04 22:21:32 UTC (rev 4226)
+++ 
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/lib/general/gr_mpsk_receiver_cc.cc
     2007-01-04 22:23:04 UTC (rev 4227)
@@ -100,15 +100,10 @@
     d_decision = &gr_mpsk_receiver_cc::decision_generic;
     break;
   }
-  
-  // FIXME: remove when we've got everything working
-  fout.open("timing_recovery.txt");
 }
 
 gr_mpsk_receiver_cc::~gr_mpsk_receiver_cc ()
 {
-  // FIXME: remove when we've got everything working
-  fout.close();
   delete d_interp;
 }
 
@@ -239,15 +234,6 @@
       d_dl[(d_dl_idx + DLLEN)] = sample;  // put this in the second half of 
the buffer for overflows
       d_dl_idx = (d_dl_idx+1) % DLLEN;    // Keep the delay line index in 
bounds
 
-      #if 0
-      // FIXME: remove when we've got everything working
-      fout << d_mu << "\t" << sample.real() << " " << sample.imag();
-      if(d_mu < 1)
-       fout << "\t" << sample.real() << " " << sample.imag() << std::endl;
-      else
-       fout << "0 0" << std::endl;
-      #endif
-
       i++;
     }
     

Modified: 
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/lib/general/gr_mpsk_receiver_cc.h
===================================================================
--- 
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/lib/general/gr_mpsk_receiver_cc.h
      2007-01-04 22:21:32 UTC (rev 4226)
+++ 
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/lib/general/gr_mpsk_receiver_cc.h
      2007-01-04 22:23:04 UTC (rev 4227)
@@ -293,9 +293,6 @@
   //! index to delay line
   unsigned int d_dl_idx;
 
-  // FIXME: remove this once we're satisfied it all works
-  std::ofstream fout;
-  
   friend gr_mpsk_receiver_cc_sptr
   gr_make_mpsk_receiver_cc (unsigned int M, float theta,
                            float alpha, float beta,





reply via email to

[Prev in Thread] Current Thread [Next in Thread]