Changes between Version 4 and Version 5 of Documentation/dSDR/GNURadio/Installation31Debian


Ignore:
Timestamp:
Jan 15, 2010, 8:44:57 PM (14 years ago)
Author:
ssugrim
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/dSDR/GNURadio/Installation31Debian

    v4 v5  
    172172interesting graphs.
    173173
    174 Once you have successfully compiled the GNU Radio software, you should take an [wiki:Tutorial/HowToImage image]. Once you have the image on two nodes you can run
     174Once you have successfully compiled the GNU Radio software, you should take an [wiki:Tutorial/HowToImage image]. Once you have the image on two nodes you can run:
    175175{{{
    176176sender node:path.../gnuradio/gnuradio-examples/python/digital# ./benchmark_tx.py -f 5M -r 250k -T A -v
    177 
    178 reciver node:path.../gnuradio/gr-utils/src/python# ./usrp_fft.py -R A -f 5M -d 128
    179 }}}
    180 
     177receiver node:path.../gnuradio/gr-utils/src/python# ./usrp_fft.py -R A -f 5M -d 128
     178}}}
     179
     180If you're X11 exports are working on the receiver you should see:[[BR]]
     181[[Image(usrp-gmsk-250kbps-fft.jpg)]]
     182
     183You can decode the transmitted waveform by using the command:
     184{{{
     185receiver node:path.../gnuradio/gnuradio-examples/python/digital# ./benchmark_rx.py -f 5M -r 125k -R A -v
     186>>> gr_fir_fff: using SSE
     187bits per symbol = 1
     188M&M clock recovery omega = 2.000000
     189M&M clock recovery gain mu = 0.175000
     190M&M clock recovery mu = 0.500000
     191M&M clock recovery omega rel. limit = 0.005000
     192frequency error = 0.000000
     193
     194Receive Path:
     195Using RX d'board A: Basic Rx
     196Rx gain:         10
     197modulation:      gmsk_demod
     198bitrate:         125kb/s
     199samples/symbol:    2
     200decim:           256
     201Rx Frequency:    5M
     202ok =  True  pktno =    1  n_rcvd =    1  n_right =    1
     203ok =  True  pktno =    2  n_rcvd =    2  n_right =    2
     204ok =  True  pktno =    3  n_rcvd =    3  n_right =    3
     205ok =  True  pktno =    4  n_rcvd =    4  n_right =    4
     206ok =  True  pktno =    5  n_rcvd =    5  n_right =    5
     207ok =  True  pktno =    6  n_rcvd =    6  n_right =    6
     208ok =  True  pktno =    7  n_rcvd =    7  n_right =    7
     209ok =  True  pktno =    8  n_rcvd =    8  n_right =    8
     210}}}
     211
     212And you will see the decoded packet count as output.
     213
     214