discuss-gnuradio
[Top][All Lists]
Advanced

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

Re: [Discuss-gnuradio] Modulation problem ?


From: Steven Clark
Subject: Re: [Discuss-gnuradio] Modulation problem ?
Date: Mon, 19 May 2008 09:42:16 -0400

This is not surprising. It is likely that you are getting some initial
garbage (non-standard-ascii characters) coming out, or that you have
some bit errors.

Don't open it in gedit. Try:
python
f = open('Resultat.txt')
d = f.read()
f.close()
print(len(d))
print(d)
(or if d is really long, print(d[:50]))


On Mon, May 19, 2008 at 8:15 AM, irene159 <address@hidden> wrote:
>
> Hello,
>
> I am testing QPSK modulation. To do so, I have created a text file that I
> modulate and demodulate with blks2impl dqpsk.py. The problem is the
> resulting demodulated file, which I can not open:
>
> "Could not open the file Resultat.txt.
> gedit has not been able to detect the character coding.
> Please check that you are not trying to open a binary file.
> Select a character coding from the menu and try again."
>
> Help would be appreciated. Please find code files below.
>
> Regards,
> Irene
>
> http://www.nabble.com/file/p17316660/Modulation.py Modulation.py
> http://www.nabble.com/file/p17316660/Demodulation.py Demodulation.py
> --
> View this message in context: 
> http://www.nabble.com/Modulation-problem---tp17316660p17316660.html
> Sent from the GnuRadio mailing list archive at Nabble.com.
>
>
>
> _______________________________________________
> Discuss-gnuradio mailing list
> address@hidden
> http://lists.gnu.org/mailman/listinfo/discuss-gnuradio
>




reply via email to

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