Hi all,
I made a grc block that allows the user to select the input/output type using a drop down box. For a while, it seemed like what I had implemented worked fine. Recently, however, only selecting the complex data type works reliably, the other types sometimes cause the flowgraph to stop immediately with no error output. In some flowgraphs the block runs all types, in others it doesn't.const gr_complex *in = (const gr_complex *) input_items[0];
gr_complex *out = (gr_complex *) output_items[0];
const unsigned char *in = (const unsigned char *) input_items[0];
unsigned char *out = (unsigned char *) output_items[0];
No comments:
Post a Comment