Changes between Version 35 and Version 36 of Internal/BuildingGNURadioImage


Ignore:
Timestamp:
Mar 11, 2009, 10:49:20 PM (15 years ago)
Author:
ssugrim
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Internal/BuildingGNURadioImage

    v35 v36  
    609609and we saw :
    610610
    611 [[Image()]]
    612 
     611[[Image(usrp-gmsk-250kbps-fft.JPG)]]
     612
     613To actually "recieve" the sginal we did:
     614
     615{{{
     616node1-2:~/gnuradio/gnuradio-examples/python/digital# ./benchmark_rx.py -f 5M -r 125k -R A -v
     617>>> gr_fir_fff: using SSE
     618bits per symbol = 1
     619M&M clock recovery omega = 2.000000
     620M&M clock recovery gain mu = 0.175000
     621M&M clock recovery mu = 0.500000
     622M&M clock recovery omega rel. limit = 0.005000
     623frequency error = 0.000000
     624
     625Receive Path:
     626Using RX d'board A: Basic Rx
     627Rx gain:         10
     628modulation:      gmsk_demod
     629bitrate:         125kb/s
     630samples/symbol:    2
     631decim:           256
     632Rx Frequency:    5M
     633ok =  True  pktno =    1  n_rcvd =    1  n_right =    1
     634ok =  True  pktno =    2  n_rcvd =    2  n_right =    2
     635ok =  True  pktno =    3  n_rcvd =    3  n_right =    3
     636ok =  True  pktno =    4  n_rcvd =    4  n_right =    4
     637ok =  True  pktno =    5  n_rcvd =    5  n_right =    5
     638ok =  True  pktno =    6  n_rcvd =    6  n_right =    6
     639ok =  True  pktno =    7  n_rcvd =    7  n_right =    7
     640ok =  True  pktno =    8  n_rcvd =    8  n_right =    8
     641}}}
     642
     643''' Note the drop in rate (-r 125k), we had to do this to prevent over runs on the receiver(uOuOuOuOuOuOuOu)'''
     644
     645The sender was passed:
     646{{{
     647node1-1:~/gnuradio/gnuradio-examples/python/digital# ./benchmark_tx.py -f 5M -r 125k -T A -v
     648>>> gr_fir_fff: using SSE
     649bits per symbol = 1
     650Gaussian filter bt = 0.35
     651Using TX d'board A: Basic Tx
     652Tx amplitude     12000
     653modulation:      gmsk_mod
     654bitrate:         125kb/s
     655samples/symbol:    2
     656interp:          512
     657Tx Frequency:    5M
     658.................................................
     659}}}
     660
     661to ship out packets.
     662
     663----
     664
     665Bobs notes on over/under runs:
     666uU:  The [u]srp is experiencing an [U]nderrun.  This only occurs on the receiver, and means we are dropping/missing data.
     667uO:  The [u]srp is experiencing an [O]verrun.  This only occurs on the transmitter, and means we are not getting data to the transmitter fast enough.
     668Most often, these errors are due to USB bus limitations.  Keep in mind that there is a single USB interface from the node to the USRP,
     669so it needs to be shared between the transmitter and receiver.
     670
     671