Re: [Discuss-gnuradio] Increase transmission power in gnu radio

2012-09-15 Thread Josh Blum
On 09/14/2012 06:31 PM, usrp n210 wrote: Can anybody tell me how to increase transmitter power in USRPN210 ? I guess you have 3 options: * The digital amplitude of the samples. (The magnitude of a sample should not exceed 1.0 when using complex floats) * The transmitter gain (if the RF

Re: [Discuss-gnuradio] UHD replacement for write_fpga_reg

2012-09-15 Thread Josh Blum
With the UHD version, I can't get the transmitter to turn on, regardless of input. If I connect the usrp_sink to a vector source of 1s, the transmitter turns on, but not for very long. Is there some way to force the transmitter to be on? I am using the RFX series daughtercards. The

Re: [Discuss-gnuradio] Cannot change transmit power

2012-09-15 Thread Josh Blum
Although i have defined set_tx_amplitude and at run time i do provide the user option --tx-amplitude value is set to 0.25 but it still transmits at 16dBm (max power of a USRP N200) when you would expect it to be around a quarter of that power. Any suggestions in this regard would be

Re: [Discuss-gnuradio] using general_work when output rate is not fixed

2012-09-15 Thread Tom Rondeau
On Sun, Sep 9, 2012 at 6:39 PM, Rahman, Muhammad Mahboob Ur mahboob-rah...@uiowa.edu wrote: All, I have made a simple custom block (derived from gr_block class) whose general_work() function is given below: int howto_my_custom_blk::general_work (int noutput_items, gr_vector_int

Re: [Discuss-gnuradio] GNU radio/multimode.py: OpenGL no valid context problems under Mac OS X 10.7.4

2012-09-15 Thread Tom Rondeau
On Wed, Sep 12, 2012 at 10:54 PM, daniel.e.we...@verizon.net wrote: Trying to get gnuradio to work on 10.7.4 Air with an ezcap USB 2.0 DVB-T/DAB/FM dongle. Installed gnuradio using the titanous / homebrew-gnuradio approach. Using gnuradio with qt-gui with a simple grc configuration, I

Re: [Discuss-gnuradio] gr-atsc related question

2012-09-15 Thread Tom Rondeau
On Fri, Sep 14, 2012 at 5:41 PM, Sahoo, Anirudha anirudha.sa...@nist.gov wrote: Hi, I am new to gnu radio/usrp. I am trying out digitial TV application gr-atsc. I have a USRP N210 with a basic omnidirectional antenna. I checked local digital TV stations and found (from Internet) that

Re: [Discuss-gnuradio] MPSK Receiver Class

2012-09-15 Thread Tom Rondeau
On Thu, Sep 13, 2012 at 11:03 AM, Ed Criscuolo edward.l.criscu...@nasa.gov wrote: In my current project, I'm using the MPSK Receiver Class to receive a QPSK modulated signal. We have requirements to log the frequency and phase offsets from the spec more-or-less continuously in order to do

Re: [Discuss-gnuradio] Controlled file sink

2012-09-15 Thread Tom Rondeau
On Thu, Sep 13, 2012 at 10:47 AM, Nemanja Savic vlasi...@gmail.com wrote: Ok, thank you, I will take a look. There are also a couple of squelch implementations that you might be able to use. The uhd_burst_detector is kind of nice, though, in how it creates a new file for each burst with a time

Re: [Discuss-gnuradio] ofdm block

2012-09-15 Thread Tom Rondeau
On Thu, Sep 13, 2012 at 1:29 AM, abd...@cicese.edu.mx wrote: Hi, First I delete all the files in the build folder, later I run the follow comands in the build folder: 1) cmake ../ 2) make 3) sudo make install 4) sudo ldconfig Ivan Enviado desde mi oficina móvil BlackBerry® de Telcel

Re: [Discuss-gnuradio] config.conf location

2012-09-15 Thread Tom Rondeau
On Thu, Sep 13, 2012 at 6:40 AM, Pol Henarejos pol.henare...@cttc.es wrote: Dear list, I have my c++ app written using the audio module. Even though I placed the [audio] audio_module=oss inside ~/.gnuradio/config.conf, the audio_make_sink loads the ALSA sink. Moreover, if I execute

[Discuss-gnuradio] Gnu radio connect api doubt

2012-09-15 Thread usrp n210
Gnu radio has connect api to connect the flow graph,so it connect uni-direction/bi-directionly ? if it is unidirectional then can we change it to bidirection ? ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org

[Discuss-gnuradio] TUN/TAP interface advantage

2012-09-15 Thread usrp n210
Is there any advantage to use TUN/TAP interface ? As 802.11bbn also uses TUN/TAP interface. But I think in the tun/tap performance degrades as we send the packet back to user process? Therefore I compare results with benchmark_xx.py in /ofdm with tunnel.py in /ofdm. In results benchmark_xx.py do

Re: [Discuss-gnuradio] Gnu radio connect api doubt

2012-09-15 Thread Josh Blum
On 09/15/2012 09:50 PM, usrp n210 wrote: Gnu radio has connect api to connect the flow graph,so it connect uni-direction/bi-directionly ? if it is unidirectional then can we change it to bidirection ? connections are unidirectional flows of data. You could however create two connections

Re: [Discuss-gnuradio] TUN/TAP interface advantage

2012-09-15 Thread Josh Blum
On 09/15/2012 11:45 PM, usrp n210 wrote: Is there any advantage to use TUN/TAP interface ? Tun/tap is a convenient way to get access to the network stack from userspace. Unfortunately the benchmark* apps abuse tun/tap as a mac layer, which is precisely the wrong thing to do. For example:

Re: [Discuss-gnuradio] TUN/TAP interface advantage

2012-09-15 Thread Alex Zhang
Cool. How can I get this information at that time? On Sat, Sep 15, 2012 at 11:21 PM, Josh Blum j...@ettus.com wrote: On 09/15/2012 11:45 PM, usrp n210 wrote: Is there any advantage to use TUN/TAP interface ? Tun/tap is a convenient way to get access to the network stack from userspace.