Re: [Discuss-gnuradio] file sink issue

2012-05-23 Thread Ben Reynwar
It depends what you mean by readable format. If you just want to get an idea of the values and the file isn't to big then do: from gnuradio import gr src = gr.file_source(1, "the_file_name") snk = gr.vector_sink_b() tb = gr.top_block() tb.connect(src, snk) tb.run() # The bytes will be presented a

Re: [Discuss-gnuradio] file sink issue

2012-05-21 Thread Ben Reynwar
On Mon, May 21, 2012 at 12:19 AM, ambily joseph wrote: > Sir > > I am trying to build an SID SDR receiver,,where i require a file sink... > When i run my flow graph,,i get a file of format octet-stream being written > into my computer. > But i am not able to access or open my dat octet-stream file

[Discuss-gnuradio] file sink issue

2012-05-21 Thread ambily joseph
Sir I am trying to build an SID SDR receiver,,where i require a file sink... When i run my flow graph,,i get a file of format octet-stream being written into my computer. But i am not able to access or open my dat octet-stream file. Sir may i know how can i access the data being written into it?