Re: [Discuss-gnuradio] Dynamic custom bloc parameter

2016-07-05 Thread Marcus Müller
Note that it's generally possible to just implement a setter function and define a in the GRC XML, but then you would have to care about thread safety yourself... And having an asynchronous message passing interface is nice, anyway :) Best regards Marcus Am 5. Juli 2016 15:57:04 MESZ, schrieb

Re: [Discuss-gnuradio] Dynamic custom bloc parameter

2016-07-05 Thread redsalsifi
On 2016-07-05 14:42, Marcus Müller wrote: Hi, I'd generally recommend that you add a message handler to your block, which can be connected via message passing to other blocks. That way, you'll have something that is thread-safe (which is necessary, because Great ! thanks a lot Marcus :) I saw

Re: [Discuss-gnuradio] Dynamic custom bloc parameter

2016-07-05 Thread Marcus Müller
Hi, I'd generally recommend that you add a message handler to your block, which can be connected via message passing to other blocks. That way, you'll have something that is thread-safe (which is necessary, because your xmlrpc server will run in another thread than your block's 'work' method).

[Discuss-gnuradio] Dynamic custom bloc parameter

2016-07-05 Thread redsalsifi
Hi everybody, I would like to know how a parameter can be updated during the execution of a custom C++ block (I have some data to change during the execution of the flowgraph with XMLRPC). Do someone already did it ? :) Thanks in advance ! Best regards, -JM