Hi at all,
I have some problem in running simulation of a block on gnuradio.
I have developed a simple block, .cc, .h, .i and .xml file attouched here.
All code is compile with success cmake/make/make install/ldconfig 
but when I place the block in gnuradio, running the simulation I get

Traceback (most recent call last):
  File "/home/simone/Scrivania/top_block.py", line 155, in <module>
    tb = top_block()
  File "/home/simone/Scrivania/top_block.py", line 106, in __init__
    self.agcs_newblock_0 = agcs.newblock()
AttributeError: 'module' object has no attribute 'newblock'

Who is related this error? 
Have I bad configured some file?
 

Thanks in advance,
Simone Ciccia
#!/usr/bin/env python
##################################################
# Gnuradio Python Flow Graph
# Title: Top Block
# Generated: Thu Jul 31 09:07:17 2014
##################################################

from PyQt4 import Qt
from gnuradio import analog
from gnuradio import blocks
from gnuradio import eng_notation
from gnuradio import gr
from gnuradio import qtgui
from gnuradio.eng_option import eng_option
from gnuradio.filter import firdes
from optparse import OptionParser
import agcs
import ieee802_11
import sip
import sys

class top_block(gr.top_block, Qt.QWidget):

    def __init__(self):
        gr.top_block.__init__(self, "Top Block")
        Qt.QWidget.__init__(self)
        self.setWindowTitle("Top Block")
        try:
             self.setWindowIcon(Qt.QIcon.fromTheme('gnuradio-grc'))
        except:
             pass
        self.top_scroll_layout = Qt.QVBoxLayout()
        self.setLayout(self.top_scroll_layout)
        self.top_scroll = Qt.QScrollArea()
        self.top_scroll.setFrameStyle(Qt.QFrame.NoFrame)
        self.top_scroll_layout.addWidget(self.top_scroll)
        self.top_scroll.setWidgetResizable(True)
        self.top_widget = Qt.QWidget()
        self.top_scroll.setWidget(self.top_widget)
        self.top_layout = Qt.QVBoxLayout(self.top_widget)
        self.top_grid_layout = Qt.QGridLayout()
        self.top_layout.addLayout(self.top_grid_layout)

        self.settings = Qt.QSettings("GNU Radio", "top_block")
        self.restoreGeometry(self.settings.value("geometry").toByteArray())


        ##################################################
        # Variables
        ##################################################
        self.samp_rate = samp_rate = 32000
        self.AMPL = AMPL = 1

        ##################################################
        # Blocks
        ##################################################
        self._AMPL_tool_bar = Qt.QToolBar(self)
        self._AMPL_tool_bar.addWidget(Qt.QLabel("AMPL"+": "))
        self._AMPL_line_edit = Qt.QLineEdit(str(self.AMPL))
        self._AMPL_tool_bar.addWidget(self._AMPL_line_edit)
        self._AMPL_line_edit.returnPressed.connect(
        	lambda: self.set_AMPL(eng_notation.str_to_num(self._AMPL_line_edit.text().toAscii())))
        self.top_layout.addWidget(self._AMPL_tool_bar)
        self.qtgui_time_sink_x_0 = qtgui.time_sink_f(
        	1024, #size
        	samp_rate, #samp_rate
        	"", #name
        	2 #number of inputs
        )
        self.qtgui_time_sink_x_0.set_update_time(0.10)
        self.qtgui_time_sink_x_0.set_y_axis(-1, 1)
        self.qtgui_time_sink_x_0.enable_tags(-1, True)
        self.qtgui_time_sink_x_0.set_trigger_mode(qtgui.TRIG_MODE_FREE, qtgui.TRIG_SLOPE_POS, 0.0, 0, 0, "")
        self.qtgui_time_sink_x_0.enable_autoscale(False)
        
        labels = ["", "", "", "", "",
                  "", "", "", "", ""]
        widths = [1, 1, 1, 1, 1,
                  1, 1, 1, 1, 1]
        colors = ["blue", "red", "green", "black", "cyan",
                  "magenta", "yellow", "dark red", "dark green", "blue"]
        styles = [1, 1, 1, 1, 1,
                  1, 1, 1, 1, 1]
        markers = [-1, -1, -1, -1, -1,
                   -1, -1, -1, -1, -1]
        alphas = [1.0, 1.0, 1.0, 1.0, 1.0,
                  1.0, 1.0, 1.0, 1.0, 1.0]
        
        for i in xrange(2):
            if len(labels[i]) == 0:
                self.qtgui_time_sink_x_0.set_line_label(i, "Data {0}".format(i))
            else:
                self.qtgui_time_sink_x_0.set_line_label(i, labels[i])
            self.qtgui_time_sink_x_0.set_line_width(i, widths[i])
            self.qtgui_time_sink_x_0.set_line_color(i, colors[i])
            self.qtgui_time_sink_x_0.set_line_style(i, styles[i])
            self.qtgui_time_sink_x_0.set_line_marker(i, markers[i])
            self.qtgui_time_sink_x_0.set_line_alpha(i, alphas[i])
        
        self._qtgui_time_sink_x_0_win = sip.wrapinstance(self.qtgui_time_sink_x_0.pyqwidget(), Qt.QWidget)
        self.top_layout.addWidget(self._qtgui_time_sink_x_0_win)
        self.ieee802_11_moving_average_xx_0 = ieee802_11.moving_average_ff(48)
        self.blocks_multiply_xx_0_0 = blocks.multiply_vff(1)
        self.blocks_multiply_xx_0 = blocks.multiply_vff(1)
        self.analog_sig_source_x_0 = analog.sig_source_f(samp_rate, analog.GR_COS_WAVE, 1000, AMPL, 0)
        self.agcs_newblock_0 = agcs.newblock()

        ##################################################
        # Connections
        ##################################################
        self.connect((self.analog_sig_source_x_0, 0), (self.qtgui_time_sink_x_0, 0))
        self.connect((self.blocks_multiply_xx_0, 0), (self.qtgui_time_sink_x_0, 1))
        self.connect((self.blocks_multiply_xx_0_0, 0), (self.ieee802_11_moving_average_xx_0, 0))
        self.connect((self.analog_sig_source_x_0, 0), (self.blocks_multiply_xx_0_0, 1))
        self.connect((self.analog_sig_source_x_0, 0), (self.blocks_multiply_xx_0_0, 0))
        self.connect((self.analog_sig_source_x_0, 0), (self.blocks_multiply_xx_0, 0))
        self.connect((self.ieee802_11_moving_average_xx_0, 0), (self.agcs_newblock_0, 0))
        self.connect((self.agcs_newblock_0, 0), (self.blocks_multiply_xx_0, 1))


    def closeEvent(self, event):
        self.settings = Qt.QSettings("GNU Radio", "top_block")
        self.settings.setValue("geometry", self.saveGeometry())
        event.accept()

    def get_samp_rate(self):
        return self.samp_rate

    def set_samp_rate(self, samp_rate):
        self.samp_rate = samp_rate
        self.analog_sig_source_x_0.set_sampling_freq(self.samp_rate)
        self.qtgui_time_sink_x_0.set_samp_rate(self.samp_rate)

    def get_AMPL(self):
        return self.AMPL

    def set_AMPL(self, AMPL):
        self.AMPL = AMPL
        Qt.QMetaObject.invokeMethod(self._AMPL_line_edit, "setText", Qt.Q_ARG("QString", eng_notation.num_to_str(self.AMPL)))
        self.analog_sig_source_x_0.set_amplitude(self.AMPL)

if __name__ == '__main__':
    import ctypes
    import sys
    if sys.platform.startswith('linux'):
        try:
            x11 = ctypes.cdll.LoadLibrary('libX11.so')
            x11.XInitThreads()
        except:
            print "Warning: failed to XInitThreads()"
    parser = OptionParser(option_class=eng_option, usage="%prog: [options]")
    (options, args) = parser.parse_args()
    Qt.QApplication.setGraphicsSystem(gr.prefs().get_string('qtgui','style','raster'))
    qapp = Qt.QApplication(sys.argv)
    tb = top_block()
    tb.start()
    tb.show()
    def quitting():
        tb.stop()
        tb.wait()
    qapp.connect(qapp, Qt.SIGNAL("aboutToQuit()"), quitting)
    qapp.exec_()
    tb = None #to clean up Qt widgets
/* -*- c++ -*- */
/* 
 * Copyright 2014 <+YOU OR YOUR COMPANY+>.
 * 
 * This is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3, or (at your option)
 * any later version.
 * 
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this software; see the file COPYING.  If not, write to
 * the Free Software Foundation, Inc., 51 Franklin Street,
 * Boston, MA 02110-1301, USA.
 */

#ifndef INCLUDED_AGCS_NEWBLOCK_IMPL_H
#define INCLUDED_AGCS_NEWBLOCK_IMPL_H

#include <agcs/newblock.h>

namespace gr {
  namespace agcs {

    class newblock_impl : public newblock
    {
     private:
      // Nothing to declare in this block.

     public:
      newblock_impl();
      ~newblock_impl();

      // Where all the action really happens
      int work(int noutput_items,
	       gr_vector_const_void_star &input_items,
	       gr_vector_void_star &output_items);
    };

  } // namespace agcs
} // namespace gr

#endif /* INCLUDED_AGCS_NEWBLOCK_IMPL_H */

/* -*- c++ -*- */
/* 
 * Copyright 2014 <+YOU OR YOUR COMPANY+>.
 * 
 * This is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3, or (at your option)
 * any later version.
 * 
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this software; see the file COPYING.  If not, write to
 * the Free Software Foundation, Inc., 51 Franklin Street,
 * Boston, MA 02110-1301, USA.
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <gnuradio/io_signature.h>
#include "newblock_impl.h"
#include <math.h>


float G_n1;


namespace gr {
  namespace agcs {



    newblock::sptr
    newblock::make()
    {
      return gnuradio::get_initial_sptr
        (new newblock_impl());
    }

    /*
     * The private constructor
     */
    newblock_impl::newblock_impl()
      : gr::sync_block("newblock",
              gr::io_signature::make(1, 1, sizeof(float)),
              gr::io_signature::make(1, 1, sizeof(float)))
    {
    G_n1=1;
    }

    /*
     * Our virtual destructor.
     */
    newblock_impl::~newblock_impl()
    {
    }

    int
    newblock_impl::work(int noutput_items,
			  gr_vector_const_void_star &input_items,
			  gr_vector_void_star &output_items)
    {
        float *in = (float *) input_items[0];
        float *out = (float *) output_items[0];
        float ad, G_n;
        float alfa=0.001;
        float Ref=1; 

       // Do <+signal processing+>
	ad=log2(Ref*in[0]);
	G_n=(ad*alfa)+G_n1;	

	out[0]=powf(2,G_n1);    //(unsigned int*) 10*log10(2^(G_n1));
	G_n1=G_n;

        // Tell runtime system how many output items we produced.
        return noutput_items;
    }

  } /* namespace agcs */
} /* namespace gr */

/* -*- c++ -*- */
/* 
 * Copyright 2014 <+YOU OR YOUR COMPANY+>.
 * 
 * This is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3, or (at your option)
 * any later version.
 * 
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this software; see the file COPYING.  If not, write to
 * the Free Software Foundation, Inc., 51 Franklin Street,
 * Boston, MA 02110-1301, USA.
 */


#ifndef INCLUDED_AGCS_NEWBLOCK_H
#define INCLUDED_AGCS_NEWBLOCK_H

#include <agcs/api.h>
#include <gnuradio/sync_block.h>

namespace gr {
  namespace agcs {

    /*!
     * \brief <+description of block+>
     * \ingroup agcs
     *
     */
    class AGCS_API newblock : virtual public gr::sync_block
    {
     public:
      typedef boost::shared_ptr<newblock> sptr;

      /*!
       * \brief Return a shared_ptr to a new instance of agcs::newblock.
       *
       * To avoid accidental use of raw pointers, agcs::newblock's
       * constructor is in a private implementation
       * class. agcs::newblock::make is the public interface for
       * creating new instances.
       */
      static sptr make();
    };

  } // namespace agcs
} // namespace gr

#endif /* INCLUDED_AGCS_NEWBLOCK_H */

/* -*- c++ -*- */

#define AGCS_API

%include "gnuradio.i"			// the common stuff

//load generated python docstrings
%include "agcs_swig_doc.i"

%{
#include "agcs/log2agc.h"
#include "agcs/newblock.h"
%}


%include "agcs/log2agc.h"
GR_SWIG_BLOCK_MAGIC2(agcs, log2agc);
%include "agcs/newblock.h"
GR_SWIG_BLOCK_MAGIC2(agcs, newblock);
<?xml version="1.0"?>
<block>
  <name>newblock</name>
  <key>agcs_newblock</key>
  <category>agcs</category>
  <import>import agcs</import>
  <make>agcs.newblock()</make>

  <sink>
    <name>in</name>
    <type>float</type>
    <nports>1</nports>
  </sink>

  <source>
    <name>out</name>
    <type>float</type>
    <nports>1</nports>
  </source>
</block>
_______________________________________________
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

Reply via email to