Davide Anastasia wrote:
Hi List,
I'm using a line link this in a script:

self.pack = gr.unpacked_to_packed_ss(1, gr.GR_LSB_FIRST)

It's give me only a sequence of zero, but I don't mind why!
Any suggestion?

What's the previous block? Is it binary? Are you using the wrong
endianness? For most apps here I use gr.GR_MSB_FIRST:

       self.demodulator = gmsk_demod(self, samples_per_symbol)
       self.packer = gr.unpacked_to_packed_bb(1, gr.GR_MSB_FIRST)
       self.connect (self.demodulator, self.packer)

       (x86 architecture)

-Dan



_______________________________________________
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
http://lists.gnu.org/mailman/listinfo/discuss-gnuradio

Reply via email to