Changes between Version 8 and Version 9 of Tutorials/k0SDR/Tutorial00


Ignore:
Timestamp:
Aug 29, 2012, 3:41:27 PM (12 years ago)
Author:
nilanjan
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Tutorials/k0SDR/Tutorial00

    v8 v9  
    163163 * On node1-1 use the waveform generator to continuously transmit a single frequency sine wave with a frequency of 100k Hz sampled at a rate of 8 MSamples / second and modulated upto 5000MHz
    164164{{{
    165 root@node1-1:~/uhd/host/build/examples# ./tx_waveforms --wave-freq 100e3 --wave-type SINE --freq 5000e6 --rate 8e6 --gain 20
     165root@node1-1:~/uhd/host/build/examples# ./tx_waveforms --wave-freq 100e3 --wave-type SINE --freq 5000e6 --rate 8e6 --gain 20 --ampl 0.9
    166166
    167167linux; GNU C++ version 4.6.1; Boost_104601; UHD_003.004.003-0-unknown
     
    208208}}}
    209209
    210  * The output should display a frequency spectrum in the terminal using the ascii art!
     210 * The output should display a frequency spectrum in the terminal using the ascii art! This plot is showing the a peak at 5000 MHz. Note that this peak is composed of the carrier which is centered at 5000 MHz and the tx waveform at 5000 MHz + 100 kHz.
    211211{{{
    212212-50                                                            |
     
    278278}}}
    279279
    280  * Play around with the options on tx_waveforms and verify the corresponding change in the received frequency spectrum. To view all optionsdo the following:
     280 * Now generate a waveform at 1 MHz with a carrier centered at 5000 MHz.
     281{{{
     282root@node1-1:~/uhd/host/build/examples# ./tx_waveforms --wave-freq 1e6 --wave-type SINE --freq 5000e6 --rate 8e6 --ampl 0.5
     283}}}
     284
     285  Two distinguishable peaks should be present in the frequency spectrum of the receiving node. The peak at 5001 MHz corresponds to the 1 MHz sine wave generate and the smaller peak at 5000 MHz corresponds to carrier signal. This can be a very rough estimate of the carrier signal strength of about 75 dBm.
     286{{{
     287                                                                                 :.
     288                                                                                 ||
     289-60                                                                              ||
     290                                                                                 ||
     291                                                                                 ||
     292                                                                                 ||
     293                                                                                 ||
     294                                                                  :              ||
     295                                                                  |              ||
     296-80                                                               |              ||
     297                                                                  |              ||
     298                                                                  |             .||
     299                                                                  |             |||
     300                                                                  |:         .. ||||
     301                                                  : ..           .||        .|||||||!
     302-100                             . :           . !| ||       :.::|||   : .. ||||||||||   !
     303                          :      |!|:     .  | |!||||| |:|  :||||||| | | ||:||||||||||   |.! ||
     304                       !. |    :!||||| ..||  |:|||||||!|||. ||||||||.|!|!||||||||||||||:||||.||:  |  !.   .. ::
     305              !     .  ||:| !: |||||||.||||! |||||||||||||| ||||||||||||||||||||||||||||||||||||! |.||| |.|| ||  !.!.       !
     306      |: |    |!!| .|:!|||| ||:|||||||||||||!|||||||||||||| |||||||||||||||||||||||||||||||||||||.|||||||||| ||:!||||.|    .|
     307      ||||!   ||||.||||||||:||||||||||||||||||||||||||||||| ||||||||||||||||||||||||||||||||||||||||||||||||.|||||||||||.: ||
     308      ||||| !||||||||||||||||||||||||||||||||||||||||||||||.||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||:||
     309-120  ||||| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
     310 dBfs           4997MHz        4998MHz         4999MHz        5000MHz        5001MHz         5002MHz        5003MHz
     311}}}
     312
     313 * Play around with the options on tx_waveforms - vary the tx_waveforms amplitude (--ampl option) and the waveform frequency (--wave-freq); verify the corresponding change in the received frequency spectrum. To view all options do the following:
    281314{{{
    282315root@node1-1:~/uhd/host/build/examples# ./tx_waveforms --help