Re: [Discuss-gnuradio] Handling custom blocks in GRC

2017-05-24 Thread Vipin Sharma
Cool, thanks! Will try that out soon. On Wed, May 24, 2017 at 12:34 AM Moritz Luca Schmid < luca.moritz.sch...@gmail.com> wrote: > Hey Vipin, > > here is some information to hier blocks > > from the GNU Rad

Re: [Discuss-gnuradio] Handling custom blocks in GRC

2017-05-24 Thread Moritz Luca Schmid
Hey Vipin, here is some information to hier blocks from the GNU Radio wiki. If your structure of A_Func is that simple, I think its the best way to write the hier block by hand. When you implement B_

Re: [Discuss-gnuradio] Handling custom blocks in GRC

2017-05-23 Thread Moritz Luca Schmid
Hi Vipin, The question I have is this: A_Func calls B_Func and C_Func. I don’t think I can instantiate the three custom blocks directly in one GRC flow-graph. What will happen to the function call made in A_Func for B_Func when A_Func custom block is kicked off for execution by the GRC schedu

[Discuss-gnuradio] Handling custom blocks in GRC

2017-05-23 Thread vipinsharma
Hello, My application is written in Matlab. I have converted the Matlab code to C++ code using Matlab Coder. The original Matlab code has top level function, say A_Func which calls multiple other functions, say B_Func and C_Func. Matlab Coder dumps out three C++ functions; one each for A_Func,