Hi,

Please find the code here https://github.com/saki92/oqpsk-sync-block . I am
trying to build a clock sync block for oqpsk with pfb_clock_sync as
reference.
It does not show any error message from Python or C++. The flowgraph runs
for less than a second and stops. Some times I get a return code -11.

Best regards,
Sakthivel

On Fri, Jan 5, 2018 at 2:20 PM, Müller, Marcus (CEL) <
marcus.muell...@kit.edu> wrote:

> Hi Sakthivel,
>
> this will be impossible to answer without you sharing your code,
> instead of just this pseudocode, alongside with the actual meaning of
> "it crashes". Does it segfault without a message? does it give a python
> error? A C++ exception?
>
> Best regards,
> Marcus
>
>
> On Fri, 2018-01-05 at 10:53 +0100, Sakthivel Velumani wrote:
> > Hi all,
> >
> > I am writing a block which takes in complex samples and performs
> > filtering and other operations on real and imag part separately and
> > then combines them to output as complex. When I combine two
> > fir_filter_fff outputs like -
> >
> > out[i].real(filterObject.filter(<some_float_input>);
> > out[i].imag(filterObject.filter(<some_float_input>);
> >
> > the flowgraph crashes. But when I do something like -
> >
> > out[i].real(<some_float_value>);
> > out[i].imag(<some_float_value>);
> >
> > it runs fine with the specified output value. So I guess the problem
> > is with the output of fir_filter_fff. In the documentation, its
> > return type is float and I also tried type casting to (float) before
> > passing to out[i].real(). Does anyone have a clue where the problem
> > would be?
> >
> > Best regards,
> > Sakthivel
> > _______________________________________________
> > Discuss-gnuradio mailing list
> > Discuss-gnuradio@gnu.org
> > https://lists.gnu.org/mailman/listinfo/discuss-gnuradio
_______________________________________________
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

Reply via email to