Re: [Discuss-gnuradio] File sink question

2017-04-07 Thread Marcus Müller
t. > > > > Again, many thanks! > > > > Ellie > > > > *From:*Marcus Müller [mailto:marcus.muel...@ettus.com] > *Sent:* Saturday, April 1, 2017 4:33 PM > *To:* Ellie White <orionnebul...@outlook.com>; discuss-gnuradio@gnu.org > *Subject:* Re: [Discuss-gnura

Re: [Discuss-gnuradio] File sink question

2017-04-01 Thread Marcus Müller
pril 1, 2017 11:04 AM > *To:* Ellie White <orionnebul...@outlook.com>; discuss-gnuradio@gnu.org > *Subject:* Re: [Discuss-gnuradio] File sink question > > > > No, f_sample is the sampling rate. Remember: every "frequency domain" > 1024-vector you've stored correspon

Re: [Discuss-gnuradio] File sink question

2017-04-01 Thread Marcus Müller
I apologize if I’m > missing something obvious here. > > > > Thanks again! > > > > Ellie > > > > *From:*Marcus Müller [mailto:marcus.muel...@ettus.com] > *Sent:* Friday, March 31, 2017 8:01 AM > *To:* Ellie White <orionnebul...@outlook.com>; discuss-g

Re: [Discuss-gnuradio] File sink question

2017-03-31 Thread Marcus Müller
Hi Ellie, On 31.03.2017 02:52, Ellie White wrote: > Thank you for the quick response. I guess I had been confused and had > set the sampling rate far too high! I think the right sampling rate > should be 2 MHz for the RTL-SDR dongle, based on what I’ve seen online > – does that sound more

Re: [Discuss-gnuradio] File sink question

2017-03-31 Thread Ellie White
-bounces+orionnebula42=outlook@gnu.org] On Behalf Of Marcus Müller Sent: Thursday, March 30, 2017 7:02 PM To: discuss-gnuradio@gnu.org Subject: Re: [Discuss-gnuradio] File sink question Dear Ellie, I'm not aware of any GNU Radio-compatible SDR receiver with a sampling rate of 300 MHz

Re: [Discuss-gnuradio] File sink question

2017-03-30 Thread Marcus Müller
Dear Ellie, I'm not aware of any GNU Radio-compatible SDR receiver with a sampling rate of 300 MHz - that is very high - are you perhaps confusing sampling rate and center frequency? How do you "measure" 5min? GNU Radio doesn't "run" at the sampling rate you set in things like the signal source

[Discuss-gnuradio] File sink question

2017-03-30 Thread Ellie White
Hello again, I have a quick question to ask about how the file sink works (since this was slightly unrelated to the other question I thought I should put it under a different subject line). To provide some background info, my sampling rate is set at 300e6, and I recorded data for (I’m guessing)

Re: [Discuss-gnuradio] File Sink - Question

2017-02-25 Thread Marcus D. Leech
On 02/25/2017 11:44 AM, Kevin Reid wrote: On Sat, Feb 25, 2017 at 8:29 AM, Marcus D. Leech > wrote: On 02/25/2017 11:14 AM, Kevin Reid wrote: On Sat, Feb 25, 2017 at 8:09 AM, Ellie White

Re: [Discuss-gnuradio] File Sink - Question

2017-02-25 Thread Kevin Reid
On Sat, Feb 25, 2017 at 8:29 AM, Marcus D. Leech wrote: > On 02/25/2017 11:14 AM, Kevin Reid wrote: > > On Sat, Feb 25, 2017 at 8:09 AM, Ellie White > wrote: >> >> self.blocks_file_sink_0 = blocks.file_sink(gr.sizeof_float*512, >>

Re: [Discuss-gnuradio] File Sink - Question

2017-02-25 Thread Marcus D. Leech
On 02/25/2017 11:14 AM, Kevin Reid wrote: On Sat, Feb 25, 2017 at 8:09 AM, Ellie White > wrote: self.blocks_file_sink_0 = blocks.file_sink(gr.sizeof_float*512, "C:\Users\Ellie\fm_data.dat", False) Your problem is

Re: [Discuss-gnuradio] File Sink - Question

2017-02-25 Thread Ellie White
iscuss-gnuradio@gnu.org Subject: Re: [Discuss-gnuradio] File Sink - Question On Sat, Feb 25, 2017 at 8:09 AM, Ellie White <orionnebul...@outlook.com<mailto:orionnebul...@outlook.com>> wrote: self.blocks_file_sink_0 = blocks.file_sink(gr.sizeof_float*512, "C:\Users\Ellie\fm_data.dat

Re: [Discuss-gnuradio] File Sink - Question

2017-02-25 Thread Marcus D. Leech
On 02/25/2017 11:09 AM, Ellie White wrote: Hello, I'm a fairly new gnuradio user, and I have a question about the File Sink block. I'm working on building a loop antenna which I have connected to an RTL-SDR dongle, so I'm using the RTL-SDR source block. My goal is to save the signal data from

Re: [Discuss-gnuradio] File Sink - Question

2017-02-25 Thread Kevin Reid
On Sat, Feb 25, 2017 at 8:09 AM, Ellie White wrote: > > self.blocks_file_sink_0 = blocks.file_sink(gr.sizeof_float*512, > "C:\Users\Ellie\fm_data.dat", False) > Your problem is here. Those backslashes need to be escaped in the string literal. Since this code was