Changes between Version 16 and Version 17 of Tutorials/Wireless/intro Tutorial
- Timestamp:
- Jul 22, 2022, 9:06:49 PM (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Tutorials/Wireless/intro Tutorial
v16 v17 87 87 }}} 88 88 89 On the DFT visualization on sdr2-md1, you should see a peak representing the transmitted signal:89 As we can see from the arguments passed to the application, we are transmitting a 1MHz sine wave as a signal using 2.4GHz as the carrier frequency. On the DFT visualization on sdr2-md1, you should see a peak representing the transmitted signal: 90 90 91 91 [[Image(rx-ascii-sine-sig.png, width=1000px)]] 92 93 We can generate a different type of signal by changing the {{{wave-type}}} argument. For instance, if we transmit a square wave: 94 {{{#!shell 95 /usr/lib/uhd/examples/tx_waveforms --args="resource=rio0,type=x300" --wave-freq 1e6 --wave-type SQUARE --freq 2400e6 --rate 5e6 --gain 10 --ampl 0.2 96 }}} 97 98 We can see that the spectrum of the received signal now contains multiple peaks. This is the result of the spectral characteristics of a square wave. 99 100 [[Image(rx-ascii-square-sig.png, width=1000px)]] 101 102