discuss-gnuradio
[Top][All Lists]
Advanced

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

[Discuss-gnuradio] NameError!!


From: shashank gaur
Subject: [Discuss-gnuradio] NameError!!
Date: Wed, 27 Oct 2010 14:36:45 +0200

Hey everyone!!
I am pretty trying to use gnuradio and usrp's from past one month and also using the ucla zigbee phy library!!
I was successful in installing the gnuradio following all the instruction given at http://gnuradio.org/redmine/wiki/gnuradio/UbuntuInstall for my ubuntu 10.04
also i installed ucla_zigbee_phy library from https://www.cgran.org/wiki/UCLAZigBee
Right now when i run ./usrp_benchmark_us it shows everything ok and runs tests till 32MB/sec
But when i run the ucla_zigbee_phy examples the current error it is showing is
address@hidden:/ucla_zigbee_phy/src/examples# ./cc1k_txtest.py
cordic_freq = 434.845M
data_rate =  38.4k
samples_per_symbol =  8
fs =  307.2k
usrp interp =  416
Using TX d'board A: Flex 2400 Tx MIMO B
Traceback (most recent call last):
  File "./cc1k_txtest.py", line 173, in <module>
    main ()
  File "./cc1k_txtest.py", line 153, in main
    tx = transmit_path()
  File "./cc1k_txtest.py", line 122, in __init__
    self.packet_transmitter = cc1k_sos_pkt.cc1k_mod_pkts(self, spb=self.samples_per_symbol, msgq_limit=2)
  File "/usr/local/lib/python2.6/dist-packages/gnuradio/ucla_blks/cc1k_sos_pkt.py", line 104, in __init__
    self.cc1k_mod = cc1k.cc1k_mod(fg, *args, **kwargs)
  File "/usr/local/lib/python2.6/dist-packages/gnuradio/ucla_blks/cc1k.py", line 76, in __init__
    gr.hier_block2.__init__(self, fg, self.nrz, self.fmmod)
  File "/usr/local/lib/python2.6/dist-packages/gnuradio/gr/hier_block2.py", line 42, in __init__
    self._hb = hier_block2_swig(name, input_signature, output_signature)
  File "/usr/local/lib/python2.6/dist-packages/gnuradio/gr/gnuradio_swig_py_runtime.py", line 1015, in hier_block2_swig
    return _gnuradio_swig_py_runtime.hier_block2_swig(name, input_signature, output_signature)
NameError: global name 'name' is not defined

Before this the error which was there
address@hidden:/ucla_zigbee_phy/src/examples# ./cc1k_txtest.py
cordic_freq = 434.845M
data_rate =  38.4k
samples_per_symbol =  8
fs =  307.2k
usrp interp =  416
Using TX d'board A: Flex 2400 Tx MIMO B
Traceback (most recent call last):
  File "./cc1k_txtest.py", line 173, in <module>
    main ()
  File "./cc1k_txtest.py", line 153, in main
    tx = transmit_path()
  File "./cc1k_txtest.py", line 122, in __init__
    self.packet_transmitter = cc1k_sos_pkt.cc1k_mod_pkts(self, spb=self.samples_per_symbol, msgq_limit=2)
  File "/usr/local/lib/python2.6/dist-packages/gnuradio/ucla_blks/cc1k_sos_pkt.py", line 104, in __init__
    self.cc1k_mod = cc1k.cc1k_mod(fg, *args, **kwargs)
  File "/usr/local/lib/python2.6/dist-packages/gnuradio/ucla_blks/cc1k.py", line 76, in __init__
    gr.hier_block2.__init__(self, fg, self.nrz, self.fmmod)
  File "/usr/local/lib/python2.6/dist-packages/gnuradio/gr/hier_block2.py", line 42, in __init__
    self._hb = hier_block2_swig(name, input_signature, output_signature)
  File "/usr/local/lib/python2.6/dist-packages/gnuradio/gr/gnuradio_swig_py_runtime.py", line 1015, in hier_block2_swig
    return _gnuradio_swig_py_runtime.hier_block2_swig(*args, **kwargs)
TypeError: in method 'hier_block2_swig', argument 1 of type 'std::string const'

So i changed the line 1015 in gnuradio_swig_py_runtime.py from return _gnuradio_swig_py_runtime.hier_block2_swig(*args, **kwargs) to return _gnuradio_swig_py_runtime.hier_block2_swig(name, input_signature, output_signature)

Now can anyone help me!!


reply via email to

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