Re: [Discuss-gnuradio] OOT Module Attribute Error module object has no attribute 'blockname'

2015-08-24 Thread Washbourne, Logan
Subject: Re: [Discuss-gnuradio] OOT Module Attribute Error module object has no attribute 'blockname' Nathan and Patrick, Thanks for the tips! I started with running: nm -C -u libgnuradio-modulename.so and the results of that can be found here: https://gist.github.com/loganwashbourne under

Re: [Discuss-gnuradio] OOT Module Attribute Error module object has no attribute 'blockname'

2015-08-22 Thread Washbourne, Logan
] OOT Module Attribute Error module object has no attribute 'blockname' Nathan and Patrick, Thanks for the tips! I started with running: nm -C -u libgnuradio-modulename.so and the results of that can be found here: https://gist.github.com/loganwashbourne under the *nm -C -u libgnuradio

Re: [Discuss-gnuradio] OOT Module Attribute Error module object has no attribute 'blockname'

2015-08-21 Thread Patrick Sathyanathan
the command line (run python top_block.py in a terminal window). --Patrick Date: Thu, 20 Aug 2015 11:08:56 -0500 From: lwas...@ostatemail.okstate.edu To: discuss-gnuradio@gnu.org Subject: Re: [Discuss-gnuradio] OOT Module Attribute Error module object has no attribute 'blockname' Nathan and Patrick

Re: [Discuss-gnuradio] OOT Module Attribute Error module object has no attribute 'blockname'

2015-08-20 Thread Patrick Sathyanathan
then you should do a make clean before running make again to force SWIG to run. Hope this helps. --Patrick Date: Wed, 19 Aug 2015 14:51:27 -0400 From: n...@ostatemail.okstate.edu To: lwas...@ostatemail.okstate.edu CC: discuss-gnuradio@gnu.org Subject: Re: [Discuss-gnuradio] OOT Module Attribute Error

Re: [Discuss-gnuradio] OOT Module Attribute Error module object has no attribute 'blockname'

2015-08-20 Thread Washbourne, Logan
-- Date: Wed, 19 Aug 2015 14:51:27 -0400 From: n...@ostatemail.okstate.edu To: lwas...@ostatemail.okstate.edu CC: discuss-gnuradio@gnu.org Subject: Re: [Discuss-gnuradio] OOT Module Attribute Error module object has no attribute 'blockname' My gut is telling me this is a swig problem

Re: [Discuss-gnuradio] OOT Module Attribute Error module object has no attribute 'blockname'

2015-08-20 Thread Marcus Müller
Hi! You only seem to define a version of make with a char*parameter, but try to call it without parameters. Can you try doing something like ACK.Text_Sanitize(rubber ducky) ? Best regards, Marcus Am 19. August 2015 16:38:30 MESZ, schrieb Washbourne, Logan lwas...@ostatemail.okstate.edu: Hello

Re: [Discuss-gnuradio] OOT Module Attribute Error module object has no attribute 'blockname'

2015-08-20 Thread Washbourne, Logan
Marcus, Thanks for the reply! So I made the make function parameterless and removed the instances of that parameter throughout my code, tried to run the GRC again and got the same error as before. I then changed the: self.ACK_Text_Sanitize_0 = ACK.Text_Sanitize() to: self.ACK_Text_Sanitize_0 =

Re: [Discuss-gnuradio] OOT Module Attribute Error module object has no attribute 'blockname'

2015-08-20 Thread Richard Bell
One simple thing that can cause this is forgetting to do sudo ldconfig after you do your first sudo make install Various things can cause this, it's a cryptic error that I always hate seeing. Rich On Wed, Aug 19, 2015 at 11:51 AM, West, Nathan n...@ostatemail.okstate.edu wrote: My gut is

[Discuss-gnuradio] OOT Module Attribute Error module object has no attribute 'blockname'

2015-08-19 Thread Washbourne, Logan
Hello all, I know this question has been asked before, several times, but I didn't find a solution that allowed me to use my OOT blocks without running into the error stated in the subject of this email. I scoured through this webpage(

Re: [Discuss-gnuradio] OOT Module Attribute Error module object has no attribute 'blockname'

2015-08-19 Thread West, Nathan
My gut is telling me this is a swig problem. I don't know that it's frowned upon, but it's not easy to read without some kind of highlighting that we'd get from github or a gist with files. If I'm correct we'd also need to see swig/ACK.i (probably missing an include and/or gr swig block magic.