Re: [Discuss-gnuradio] stop/start is not called in gr.basic_block

2017-10-05 Thread Miklos Maroti
Hi Bastian, Thanks that solved the issue. I was not aware of that. Best, Miklos On Thu, Oct 5, 2017 at 2:29 AM, Bastian Bloessl wrote: > Hi, > > On 10/05/2017 03:13 AM, Miklos Maroti wrote: >> >> I am trying to implement a simple block in python but it seems that >> stop

Re: [Discuss-gnuradio] stop/start is not called in gr.basic_block

2017-10-05 Thread Bastian Bloessl
Hi, On 10/05/2017 03:13 AM, Miklos Maroti wrote: I am trying to implement a simple block in python but it seems that stop and start is never called when I implement them. The bare bones python code would be this: class test(gr.basic_class): def __init__(self):

[Discuss-gnuradio] stop/start is not called in gr.basic_block

2017-10-04 Thread Miklos Maroti
Hi Guys, I am trying to implement a simple block in python but it seems that stop and start is never called when I implement them. The bare bones python code would be this: class test(gr.basic_class): def __init__(self): gr.basic_block.__init__(self, name="test", in_sig=None,