我正在尝试使用gr_modtool.py在gnuradio中创建一个新的DSP模块。 gnuradio版本是3.3.0。
我在包含文件夹中的abc.h文件中有以下代码

 ifndef INCLUDED_ENERGYDETECTOR_LOCAL_SENSING_FF_H
 #define INCLUDED_ENERGYDETECTOR_LOCAL_SENSING_FF_H
 #include <gr_block.h>

 namespace gr {
   namespace energydetector {
 class ENERGYDETECTOR_API local_sensing_ff : virtual public gr_block
 {
  private:

  public:
    typedef boost::shared_ptr<local_sensing_ff> sptr;
    float d_pfa; int d_L; int d_samples;
    static sptr make(float pfa=0.01,int L=16,int samples=1000);
    virtual void set_pfa(float input_a) { d_pfa = input_a; }
    virtual int get_pfa() { return d_pfa; }
    virtual void set_L(int input_b) { d_L = input_b; }
    virtual int get_L() { return d_L; }
    virtual void set_samples(int input_c) { d_samples = input_c; }
   virtual int get_samples() { return d_samples; }
     };
    } // namespace energydetector
  } // namespace gr
  #endif /* INCLUDED_ENERGYDETECTOR_LOCAL_SENSING_FF_H */


以上头文件的实现类为:

 #ifndef INCLUDED_ENERGY-DETECTOR_LOCAL_SENSING_FF_IMPL_H
 #define INCLUDED_ENERGY-DETECTOR_LOCAL_SENSING_FF_IMPL_H

 #include <energy-detector/local_sensing_ff.h>

 namespace gr {
  namespace energydetector {
   class local_sensing_ff_impl : public local_sensing_ff
   {
   private:
      float d_pfa; int d_L; int d_samples;
  public:
    local_sensing_ff_impl(float pfa,int L,int samples);
    ~local_sensing_ff_impl();
    void set_pfa(float input_a) { d_pfa = input_a; }
    int get_pfa() { return d_pfa; }
    void set_L(int input_b) { d_L = input_b; }
    int get_L() { return d_L; }
    void set_samples(int input_c) { d_samples = input_c; }
    int get_samples() { return d_samples; }
        int general_work(int noutput_items,
           gr_vector_int &ninput_items,
           gr_vector_const_void_star &input_items,
           gr_vector_void_star &output_items);
   };
  } // namespace energy-detector
 } // namespace gr
#endif /* INCLUDED_ENERGY-DETECTOR_LOCAL_SENSING_FF_IMPL_H */


SWIG文件是abc.i作为

 #define ENERGY_DETECTOR_API
 %include "gnuradio.i"          // the common stuff
 %include "energydetector_swig_doc.i"
 %{
    #include "energydetector/local_sensing_ff.h"
  %}

  %include "energydetector/local_sensing_ff.h"
  GR_SWIG_BLOCK_MAGIC2(energydetector, local_sensing_ff);


它构建成功,但是执行时出现以下错误:

def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
AttributeError: No constructor defined


请帮我调试一下。

最佳答案

最后,我知道这是由于不支持的版本。
仅GNURadio 3.6或更高版本支持gr_modtool.py。

尽管我们可以构建该块并在GRC中使用它,但不确定为什么它不起作用。
它必须是由gr_modtool.py生成的代码结构,不适用于版本3.3.0

因此,任何遇到此问题的人都要确保您拥有GNURadio 3.6及更高版本。
但是,如果有人通过修改gr_modtool.py或任何代码解决了该问题,请在此问题内告知我们。

10-06 09:55