[Discuss-gnuradio] Why can't I easily find how to specify my usrp IP

2015-04-15 Thread Jon West
Seriously, that should be a single google search, I can't find it. It's not in the documentation. What the hell. This is the trouble I've had with quite a few things on GNU radio, no startup info is available. ___ Discuss-gnuradio mailing list Discuss-gnu

Re: [Discuss-gnuradio] Move USRP LO with USRP sink block?

2015-02-10 Thread Jon West
t doxygen [2]. > > Greetings, > Marcus M. > > [1] http://files.ettus.com/manual/page_general.html#general_tuning_rxchain > [2] > http://files.ettus.com/manual/structuhd_1_1tune__request__t.html#af9d2c5fb89c10024b1acae43e88ebe7f > > On 02/10/2015 07:55 PM, Jon West wrote: > > Wh

Re: [Discuss-gnuradio] Move USRP LO with USRP sink block?

2015-02-10 Thread Jon West
eq" parameter in a UHD sink block. > > > > > > > > > On 2015-02-10 13:55, Jon West wrote: > > When I transmit a signal at a certain frequency there is a large spike at > what I have set the center frequency of the USRP. My signal does not have > this la

Re: [Discuss-gnuradio] Move USRP LO with USRP sink block?

2015-02-10 Thread Jon West
tune with lo offset offset_freq_Hz = usrpConfig->rx_lo_offset_MHz * 1e6; uhd::tune_request_t tune_req(usrpConfig->rx_freq_Hz, offset_freq_Hz); tune_res = u2->set_rx_freq(tune_req); On Mon, Feb 9, 2015 at 1:13 PM, Marcus D. Leech wrote: > On 02/09/2015 11:53 A

[Discuss-gnuradio] Move USRP LO with USRP sink block?

2015-02-09 Thread Jon West
Is there a setting to move the USRP LO in the SINK block? Not in code, in the block, I'm am integrating another developers system and need to use the GRC block ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https://lists.gnu.org/mailman/listin

[Discuss-gnuradio] GUI window position

2015-01-30 Thread Jon West
Is there any way to set the position of a gui window? Not the position of elements inside the winow, but that actual window itself. For my need I am running multiple flow graphs with TCP sources, so nothing pops up until a TCP connection is established. I'd like the windows to pop up where I want t

[Discuss-gnuradio] Am I missing something in the documentation regarding Hier blocks?

2015-01-22 Thread Jon West
I have a bunch of hier blocks I'm trying to use. Despite have the python and xml related to the block in ~/.grc-gnuradio I keep getting an error that the hier block does not exist, and clicking on the block and clicking open hier block does nothing. What am I missing? _

Re: [Discuss-gnuradio] consuming all inputs, small outputs

2015-01-19 Thread Jon West
On 01/19/2015 09:24 PM, Jon West wrote: > > I am trying to create a block that outputs one number from each chucnk of > data it takes in, I would like to output this number and be able to use it > in visualizations, what would the best block be for this? > > Sounds like a "

[Discuss-gnuradio] consuming all inputs, small outputs

2015-01-19 Thread Jon West
I am trying to create a block that outputs one number from each chucnk of data it takes in, I would like to output this number and be able to use it in visualizations, what would the best block be for this? Would a decimation block work? what if I would like to out put three numbers from one chunk

Re: [Discuss-gnuradio] Threaded GRC blocks

2015-01-16 Thread Jon West
isting and to-be-written > blocks, you increase the level of parallelity, which generally is a good > thing, because buffering necessary to avoid congestion when a step takes > especially long will then be automatically distributed between a lot of > blocks. > > Greetings, > M

Re: [Discuss-gnuradio] Threaded GRC blocks

2015-01-16 Thread Jon West
... > > > Currently I am creating the thread in the the block constructor and > killing it in the destructor. > > That sounds a bit like you're doing GNU Radio wrong. Your block is already > running in a thread of its own -- that's what the thread-per-block > scheduler

[Discuss-gnuradio] Threaded GRC blocks

2015-01-16 Thread Jon West
I'm new to gnu radio, but I am trying to port a thread SDR application in to a GRC block. My application buffers a bunch of data and then performs some signal processing on it that can take up to 500ms. Once processing is complete, the processing thread waits a certain amount of time before readin