commit-gnuradio
[Top][All Lists]
Advanced

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

[Commit-gnuradio] r5589 - gnuradio/branches/features/ofdm/receiver/gnura


From: trondeau
Subject: [Commit-gnuradio] r5589 - gnuradio/branches/features/ofdm/receiver/gnuradio-examples/python/ofdm
Date: Fri, 1 Jun 2007 10:48:21 -0600 (MDT)

Author: trondeau
Date: 2007-06-01 10:48:21 -0600 (Fri, 01 Jun 2007)
New Revision: 5589

Modified:
   
gnuradio/branches/features/ofdm/receiver/gnuradio-examples/python/ofdm/benchmark_ofdm.py
   
gnuradio/branches/features/ofdm/receiver/gnuradio-examples/python/ofdm/ofdm.py
Log:
fixed import naming for ofdm_receiver

Modified: 
gnuradio/branches/features/ofdm/receiver/gnuradio-examples/python/ofdm/benchmark_ofdm.py
===================================================================
--- 
gnuradio/branches/features/ofdm/receiver/gnuradio-examples/python/ofdm/benchmark_ofdm.py
    2007-06-01 16:25:47 UTC (rev 5588)
+++ 
gnuradio/branches/features/ofdm/receiver/gnuradio-examples/python/ofdm/benchmark_ofdm.py
    2007-06-01 16:48:21 UTC (rev 5589)
@@ -25,13 +25,13 @@
 from gnuradio import eng_notation
 from gnuradio.eng_option import eng_option
 from optparse import OptionParser
+from gnuradio.blksimpl import ofdm_pkt
 
 import random, time, struct, sys, math, os
 
 # from current dir
 from transmit_path import transmit_path
 from receive_path import receive_path
-import ofdm
 
 class awgn_channel(gr.hier_block):
     def __init__(self, fg, sample_rate, noise_voltage, frequency_offset):
@@ -153,8 +153,8 @@
 
     transmit_path.add_options(parser, expert_grp)
     receive_path.add_options(parser, expert_grp)
-    ofdm.ofdm_mod.add_options(parser, expert_grp)
-    ofdm.ofdm_demod.add_options(parser, expert_grp)
+    ofdm_pkt.mod_ofdm_pkts.add_options(parser, expert_grp)
+    ofdm_pkt.demod_ofdm_pkts.add_options(parser, expert_grp)
     
     (options, args) = parser.parse_args ()
 

Modified: 
gnuradio/branches/features/ofdm/receiver/gnuradio-examples/python/ofdm/ofdm.py
===================================================================
--- 
gnuradio/branches/features/ofdm/receiver/gnuradio-examples/python/ofdm/ofdm.py  
    2007-06-01 16:25:47 UTC (rev 5588)
+++ 
gnuradio/branches/features/ofdm/receiver/gnuradio-examples/python/ofdm/ofdm.py  
    2007-06-01 16:48:21 UTC (rev 5589)
@@ -22,7 +22,7 @@
 
 from gnuradio import gr
 from optparse import OptionParser
-from ofdm_receiver import ofdm_receiver
+from gnuradio.blksimpl.ofdm_receiver import ofdm_receiver
 import math
 
 class ofdm_mod(gr.hier_block):





reply via email to

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