Re: [Discuss-gnuradio] GRC newbie questions

2019-06-27 Thread Kevin Lee
Hello, I believe you'd set the number of outputs to 1, for the array itself, and when you set the data type of the output, you'd use sizeof(float) or sizeof(gr_complex) * array_size, so in this case array_size is 58. You'd do this for both input and output signatures. Good luck! Kevin On Thu, J

[Discuss-gnuradio] GRC newbie questions

2019-06-27 Thread Barry Duggan
This is a restatement of my second question: If the input to a block is an array of X bytes, and I produce an output array of Y bytes, is that still considered a sync_block, i.e. one array in, one array out? For example, if the input array has a length of 64 bytes, and I produce an output arra

[Discuss-gnuradio] GRC newbie questions

2019-06-23 Thread Barry Duggan
1) Are the terms 'vector' and 'array' synonymous? 2) If the input to a block is an array of X bytes, and I produce an output array of Y bytes, is that still considered a sync_block, i.e. one array in, one array out? 3) For Python, what is the advantage of building an OOT block vs. using a Misc.