commit-gnuradio
[Top][All Lists]
Advanced

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

[Commit-gnuradio] r3595 - in gnuradio/branches/developers/trondeau/digit


From: trondeau
Subject: [Commit-gnuradio] r3595 - in gnuradio/branches/developers/trondeau/digital-wip: gnuradio-core/src/python/gnuradio gr-atsc/src/lib
Date: Wed, 20 Sep 2006 23:32:52 -0600 (MDT)

Author: trondeau
Date: 2006-09-20 23:32:52 -0600 (Wed, 20 Sep 2006)
New Revision: 3595

Modified:
   
gnuradio/branches/developers/trondeau/digital-wip/gnuradio-core/src/python/gnuradio/packet_utils.py
   gnuradio/branches/developers/trondeau/digital-wip/gr-atsc/src/lib/atsc_fpll.h
Log:
fixed some problems (gri_agc --> gri_agc_ff caused error in atsc); make 
distcheck passed cleanly

Modified: 
gnuradio/branches/developers/trondeau/digital-wip/gnuradio-core/src/python/gnuradio/packet_utils.py
===================================================================
--- 
gnuradio/branches/developers/trondeau/digital-wip/gnuradio-core/src/python/gnuradio/packet_utils.py
 2006-09-21 04:44:48 UTC (rev 3594)
+++ 
gnuradio/branches/developers/trondeau/digital-wip/gnuradio-core/src/python/gnuradio/packet_utils.py
 2006-09-21 05:32:52 UTC (rev 3595)
@@ -116,7 +116,7 @@
         raise ValueError, "access_code must be a string containing only 0's 
and 1's (%r)" % (access_code,)
 
     (packed_access_code, padded) = 
conv_1_0_string_to_packed_binary_string(access_code)
-    (packed_preamble) = conv_1_0_string_to_packed_binary_string(preamble)
+    (packed_preamble, pad) = conv_1_0_string_to_packed_binary_string(preamble)
     
     payload_with_crc = gru.gen_and_append_crc32(payload)
     #print "outbound crc =", string_to_hex_list(payload_with_crc[-4:])

Modified: 
gnuradio/branches/developers/trondeau/digital-wip/gr-atsc/src/lib/atsc_fpll.h
===================================================================
--- 
gnuradio/branches/developers/trondeau/digital-wip/gr-atsc/src/lib/atsc_fpll.h   
    2006-09-21 04:44:48 UTC (rev 3594)
+++ 
gnuradio/branches/developers/trondeau/digital-wip/gr-atsc/src/lib/atsc_fpll.h   
    2006-09-21 05:32:52 UTC (rev 3595)
@@ -25,7 +25,7 @@
 #include <gr_sync_block.h>
 #include <gr_nco.h>
 #include <gr_single_pole_iir.h>
-#include <gri_agc.h>
+#include <gri_agc_ff.h>
 #include <stdio.h>
 #include <atsci_diag_output.h>
 
@@ -67,7 +67,7 @@
   double                        initial_phase;
   bool                          debug_no_update;
   gr_nco<float,float>           nco;
-  gri_agc                        agc;    // automatic gain control
+  gri_agc_ff                    agc;    // automatic gain control
   gr_single_pole_iir<float,float,float> afci;
   gr_single_pole_iir<float,float,float> afcq;
 





reply via email to

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