Re: [Discuss-gnuradio] Broken pipe when I write the payload to a pipe.

2009-06-29 Thread Eric Blossom
On Mon, Jun 29, 2009 at 04:03:26AM -0700, shesh wrote: > > hi Brook, > me too facing the same error. Could you/anyone please help? > Shesh Please take a look at the man pages. Your example below is attempting to run a command called "pipe" and write to it. There is no such command, hence the mes

Re: [Discuss-gnuradio] Broken pipe when I write the payload to a pipe.

2009-06-29 Thread shesh
hi Brook, me too facing the same error. Could you/anyone please help? Shesh Brook Lin wrote: > > All right, I use 'import signal' and 'signal.signal(signal.SIGPIPE, > signal.SIG_DFL)' to solve the [Errno 32] Broken pipe. Then I met another > problem. The error says 'sh: pipe: not found'. Howev

Re: [Discuss-gnuradio] Broken pipe when I write the payload to a pipe.

2009-01-23 Thread Eric Blossom
On Fri, Jan 23, 2009 at 11:44:20AM -0800, Brook Lin wrote: > > Hi All, > > I am trying to write the payload to a pipe rather than to a file in > benchmark_ofdm_rx.py. The script is attached below. However, I got the error > 'Broeken pipe' when I run the script. Can anyone tell me why is that and

Re: [Discuss-gnuradio] Broken pipe when I write the payload to a pipe.

2009-01-23 Thread Brook Lin
All right, I use 'import signal' and 'signal.signal(signal.SIGPIPE, signal.SIG_DFL)' to solve the [Errno 32] Broken pipe. Then I met another problem. The error says 'sh: pipe: not found'. However, pipe dose be created. How should I do next? Thanks. OFDM Demodulator: Modulation Type: bpsk FFT leng

[Discuss-gnuradio] Broken pipe when I write the payload to a pipe.

2009-01-23 Thread Brook Lin
Hi All, I am trying to write the payload to a pipe rather than to a file in benchmark_ofdm_rx.py. The script is attached below. However, I got the error 'Broeken pipe' when I run the script. Can anyone tell me why is that and how to correct it? rxdata.append(payload[2:]) #os.mkfifo('pipe') myfi