discuss-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Discuss-gnuradio] unpacked_to_packed gives me only zeros


From: Dan Halperin
Subject: Re: [Discuss-gnuradio] unpacked_to_packed gives me only zeros
Date: Mon, 16 Apr 2007 07:48:04 -0700
User-agent: Thunderbird 1.5.0.10 (X11/20070303)

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





reply via email to

[Prev in Thread] Current Thread [Next in Thread]