Re: [Discuss-gnuradio] Error while compiling a processing block

2008-10-31 Thread Francesco B.
Made those changes after your first post, but they hadn't taken effect because I forgot to delete all the generated files from the last make. It compiles, passes testing, and installs now. :) ~ Francesco Karthik Vijayraghavan wrote: > > Change it as below > > GR_SWIG_BLOCK_MAGIC(randsig,sourc

Re: [Discuss-gnuradio] Error while compiling a processing block

2008-10-31 Thread Karthik Vijayraghavan
On Fri, Oct 31, 2008 at 8:23 PM, Francesco B. <[EMAIL PROTECTED]> wrote: > > Here's the .i file I was using: > http://www.nabble.com/file/p20277262/randsig.i randsig.i > > Based on what you said, I changed the line "randsig_source_ff_sptr > randsig_make_source_ff ();" to "randsig_source_ff_sptr >

Re: [Discuss-gnuradio] Error while compiling a processing block

2008-10-31 Thread Francesco B.
Here's the .i file I was using: http://www.nabble.com/file/p20277262/randsig.i randsig.i Based on what you said, I changed the line "randsig_source_ff_sptr randsig_make_source_ff ();" to "randsig_source_ff_sptr randsig_make_source_ff (double sampling_freq);", and "randsig_source_ff ();" to "ran

Re: [Discuss-gnuradio] Error while compiling a processing block

2008-10-31 Thread Karthik Vijayraghavan
On Fri, Oct 31, 2008 at 6:16 PM, Francesco B. <[EMAIL PROTECTED]> wrote: > > Excellent! I've now got ./bootstrap functioning properly, and have narrowed > the error messages down to two in make, one of which seems like it may have > been triggered by the other: > > randsig_source_ff.h: In function

Re: [Discuss-gnuradio] Error while compiling a processing block

2008-10-31 Thread Francesco B.
Excellent! I've now got ./bootstrap functioning properly, and have narrowed the error messages down to two in make, one of which seems like it may have been triggered by the other: randsig_source_ff.h: In function 'PyObject* _wrap_source_ff(PyObject*, PyObject*)': randsig_source_ff.h:74: error: t

Re: [Discuss-gnuradio] Error while compiling a processing block

2008-10-31 Thread Johnathan Corgan
On Fri, 2008-10-31 at 07:44 -0700, Francesco B. wrote: > To this end, I've written a modified version of the > signal generating block (gr_sig_source_X.*), and attempted to follow the > tutorial floating about by Dawei Shen in order to compile it. That tutorial is rather outdated at this point.

[Discuss-gnuradio] Error while compiling a processing block

2008-10-31 Thread Francesco B.
Hello all, I've been spending the past several weeks getting acquainted with GNU Radio, and have reached the point of wanting to go through the task of creating my own processing block. To this end, I've written a modified version of the signal generating block (gr_sig_source_X.*), and attempted