Changes between Version 10 and Version 11 of Tutorials/Wireless/Channel Sounding Krypton
- Timestamp:
- May 17, 2020, 11:01:14 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Tutorials/Wireless/Channel Sounding Krypton
v10 v11 7 7 8 8 9 This tutorial demonstrates how to use the RFNoC channel sounder design for obtaining the PDP of channels up to 100MHz wide. An FPGA correlator module computes real time correlation power, and an averaging module, averages contiguous sets of PDP over time, and sends the result to host CPU. This design is compatible with 3rd generation Ettus USRP devices. This tutorial uses USRP 2974s on [wiki:Architecture/Domains/cosmos_sb1 COSMOS SandBox1].9 This tutorial demonstrates how to use the RFNoC channel sounder design for obtaining the PDP of channels up to 100MHz wide. On the transmit side, data samples are spread using a PN sequence. On the receive end, an FPGA correlator module computes real time correlation power, and an averaging module, averages contiguous sets of PDP over time. The results are continuously sent to the host CPU. This design is compatible with 3rd generation Ettus USRP devices and this tutorial uses USRP 2974s on [wiki:Architecture/Domains/cosmos_sb1 COSMOS SandBox1]. 10 10 11 11 === Prerequisites === … … 79 79 80 80 ==== Run the experiment 81 * Start transmit application on the TX node. 81 * Start transmit application on the TX node. It configures transmit RFNoC flowgraph, configures the Spreader module in the FPGA and transmits data samples. 82 82 {{{#!shell-session 83 83 root@sdr2-md1:~# /root/uhd/host/build/examples/rfnoc_tx_spreader --args="type=x300,skip_ddc,skip_duc" --freq 3e9 --gain 30 --duc-args="input_rate=50000000.0,output_rate=200000000.0" 84 84 }}} 85 85 86 * Start receive application on the RX node. 86 * Start receive application on the RX node. It configures receive RFNoC flowgraph, configures the correlator, averaging modules in the FPGA and starts a TCP server to talk to the web application. 87 87 {{{#!shell-session 88 88 root@sdr2-s1-lg1:~# uhd/host/build/examples/rfnoc_rx_channel_sounder --args="type=x300,skip_ddc,skip_duc" --freq 3e9 --gain 10 --ddc-args="output_rate=50000000.0,input_rate=200000000.0"