Re: Tx/Rx using one USRP board

Hi,

I am facing a few problems in making USRP work as relay.

I use rx_voice.py and tx_voice.py for reception and transmission of
audio files.If i transmit at 910MHz and relay it at 950MHz then after
relaying , very few packets are received on another node. Infact, most
of the packets are not received.

What i know is that the usrp is working as a relay to some extent
because if i transmit a sine wave using usrp_siggen.py and see the wave
after relaying then i do observe the sine wave. But, the sine wave has a
lot of variation. i.e it is continuously changing its amplitude .I
observed it to change from 2500-15000 on oscope. The original wave was
at a perfect amplitude of ard 15000. Now, is the problem in reception of
packets coming because of this kind of variation?? Or is it that the USB
is playing the limiting factor role. The data rates used in audio
transmission is

Bitrate- 50,000
Samples per symbol = 5

Also, Even if i receive a few packets then, i get the error message

terminate called after throwing an instance of ‘std::runtime_error’
what(): msg length is not a multiple of d_itemsize
Aborted (core dumped)

Please tell me how to handle the above problems.

Thanks
Pratik Hetamsaria

On Wed, Aug 01, 2007 at 05:52:56AM +0100, pratik hetamsaria wrote:

hi,

I am posting this again as i havent got any concrete replies.I have
been stuck making the usrp work as a relay for a very long time. I
am giving the code which i am using for making it work as a
relay. Can somebody please point out where is the mistake. I am
trying to receive a signal sent by usrp_siggen.py at 910MHz and
retransmit it at 950MHz. However, when i view the signal at 950MHz
using usrp_oscope.py then i am able to see only noise. There is no
sine wave present at that frequency. I am not able to understand
what is the usrp transmitting at 950 MHz then. What i know is that
the usrp does receive the sine wave at 910MHz.

Are you using one or two daughterboards?

What kind of daughterboard(s)?

Is your rx-subdev-spec the same as tx-subdev-spec?

Checking to see if r is None is highly recommended.

If you’re using a RFX-900 for TX, is the saw filter still in?
(It comes with a 902 to 928 MHz ISM band filter.)

Does the data in usrp_data_receive.dat look reasonable?
What are the min and max values that you see?

What’s your tx-amplitude?

Depending on the tx daughterboard, you may need

dst.set_enable(True)

If you’re trying to use a single RFX-* daughterboard, you’ll need to
set the RX to receive from the RX2 antenna port, not the TX/RX port:

rx_src.select_rx_antenna(‘RX2’)

Eric

    gr.flow_graph.__init_ _(self)
    parser.add_option("-a", "--tx-amplitude", type="eng_float", 

self._tx_amplitude = options.tx_amplitude
self.amp = gr.multiply_const_cc(0)
  self.amp.set_k(self._tx_amplitude)