Changes between Version 36 and Version 37 of Tutorials/Wireless/mmwave80211adORCA
- Timestamp:
- Sep 4, 2020, 4:29:56 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Tutorials/Wireless/mmwave80211adORCA
v36 v37 46 46 ==== Find and prepare USRPs ==== 47 47 48 * The IP addresses for Ethernet Port 1(10G) on the X310s rfdev3-1 and rfdev3-2 were hard-coded to 10.115. 2.2 and 10.115.2.3respectively. To access them from srv3-lg1 or srv4-lg1, configure the network interface enp1s0 as follows48 * The IP addresses for Ethernet Port 1(10G) on the X310s rfdev3-1 and rfdev3-2 were hard-coded to 10.115.6.1 and 10.115.6.2 respectively. To access them from srv3-lg1 or srv4-lg1, configure the network interface enp1s0 as follows 49 49 {{{#!shell-session 50 root@srv3-lg1:~# ifconfig enp1s0 10.115.1. 1netmask 255.255.0.0 mtu 9000 up50 root@srv3-lg1:~# ifconfig enp1s0 10.115.1.3 netmask 255.255.0.0 mtu 9000 up 51 51 root@srv3-lg1:~# ifconfig enp1s0 52 52 enp1s0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 9000 53 inet 10.115.1. 1netmask 255.255.0.0 broadcast 10.115.255.25553 inet 10.115.1.3 netmask 255.255.0.0 broadcast 10.115.255.255 54 54 inet6 fe80::f652:14ff:fe83:b930 prefixlen 64 scopeid 0x20<link> 55 55 ether f4:52:14:83:b9:30 txqueuelen 1000 (Ethernet) … … 62 62 * Run uhd_find_devices to check if the X310s can be reached 63 63 {{{#!shell-session 64 root@srv3-lg1:~# uhd_find_devices --args="addr=10.115. 2.3"64 root@srv3-lg1:~# uhd_find_devices --args="addr=10.115.6.1" 65 65 [INFO] [UHD] linux; GNU C++ version 7.4.0; Boost_106501; UHD_3.14.1.1-release 66 66 -------------------------------------------------- … … 69 69 Device Address: 70 70 serial: 31B6FFA 71 addr: 10.115. 2.372 fpga: HG73 name: sdr2-md371 addr: 10.115.6.1 72 fpga: XG 73 name: rfdev3-1 74 74 product: X310 75 75 type: x300 … … 101 101 * If the required RFNoC blocks are not found, load X310 with MISO_IMAGE_x300.bit 102 102 {{{#!shell-session 103 root@srv3-lg1:~# uhd_image_loader --args="addr=10.115. 2.2,type=x300" --fpga-path="ORCA_MISO_PROJECT/FPGA_IMAGES/MISO_IMAGE_x300.bit"103 root@srv3-lg1:~# uhd_image_loader --args="addr=10.115.6.1,type=x300" --fpga-path="ORCA_MISO_PROJECT/FPGA_IMAGES/MISO_IMAGE_x300.bit" 104 104 }}} 105 105 * Power cycle X310 to use the new image, and run uhd_usrp_probe to check RFNoC blocks. … … 139 139 }}} 140 140 ==== Run the experiment ==== 141 * Open transmit application TX_TEST.grc on transmit node(srv4-lg1). This application transmits 802.11ad frames over rfdev3-2(10.115. 2.3), at 200MSPS, by reading samples from a pre-generated file.142 * Open receive application RADIORX_CIR.grc on receive node(srv3-lg1). This application receives and processes samples over rfdev3-1(10.115. 2.2) as seen in the grc model below. Channel impulse response computed for every frame is written into a file on the host node.141 * Open transmit application TX_TEST.grc on transmit node(srv4-lg1). This application transmits 802.11ad frames over rfdev3-2(10.115.6.2), at 200MSPS, by reading samples from a pre-generated file. 142 * Open receive application RADIORX_CIR.grc on receive node(srv3-lg1). This application receives and processes samples over rfdev3-1(10.115.6.1) as seen in the grc model below. Channel impulse response computed for every frame is written into a file on the host node. 143 143 144 144 || root@srv4-lg1:~# gnuradio-companion ORCA_MISO_PROJECT/examples/TX_TEST.grc || root@srv3-lg1:~# gnuradio-companion ORCA_MISO_PROJECT/examples/RADIORX_CIR.grc ||