Re: [Discuss-gnuradio] Block taking in message, outputting items

2014-10-16 Thread Marcus Müller
Hi David, "items" is a output/input buffer stream term in GNU Radio. You can just put whatever data type you'd want (ok, a lot of data types) into PMTs, and send them around; for sample vectors, PMT uniform vectors are the way to go. If you just use message passing, you don't need to implement a m

[Discuss-gnuradio] Block taking in message, outputting items

2014-10-16 Thread David Halls
Dear All, How can I create a block like 'Random PDU Generator', but that outputs items rather than PDUs over a message port? Hopefully its easy but I am not clear if I need a work function or not, and if I don't have one then how do I pass the items out, as one does in a normal block? Perhaps