Changes between Version 27 and Version 28 of Tutorials/k0SDR/Tutorial25
- Timestamp:
- Nov 22, 2017, 7:19:31 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Tutorials/k0SDR/Tutorial25
v27 v28 31 31 * Turn on the node: {{{omf tell -a on -t node11-10}}} 32 32 * Login into the node: {{{ssh root@node11-10}}} 33 34 After login into the node, there is a {{{flexicon_orbit}}} folder under the home directory of {{{node11-10}}} which contains the source code of this example. You can always retrieve the most recently updated code from [https://github.com/Wimnet/flexicon_orbit here]. 33 After login into the node, a {{{flexicon_orbit}}} folder should exist under the home directory of {{{node11-10:~/}}} which contains the source code of this example. You can always retrieve the most recently updated code from [https://github.com/Wimnet/flexicon_orbit here]. 35 34 36 35 … … 38 37 You will need to login into the full-duplex node (by {{{ssh root@node11-10}}}) in two separate terminal windows lo for running the experiment: one for the main full-duplex transceiver UHD program and one for controlling the RF canceller 39 38 40 1. In window 1 (UHD): 39 ==== In Terminal 1 (UHD) ==== 41 40 * Build the example: 42 41 {{{ 43 cd ~/flexicon_orbit/fd_transceiver_simple/uhd 42 cd ~/flexicon_orbit/fd_transceiver_simple/uhd/ 44 43 mkdir build 45 44 cd build … … 47 46 make 48 47 }}} 49 50 * Check the serial number of the USRP N210 (it should be {{{F331D4}}}): {{{uhd_find_devices}}} 51 48 * Check the conection and serial number of the USRP N210 at {{{node11-10}}}: {{{uhd_find_devices}}}. The serial number should be {{{F331D4}}}. 52 49 * Run the example with IQ rate {{{rate}}}, carrier frequency {{{freq}}}, TX gain {{{tx-gain}}}, and RX gain {{{rx-gain}}}: 53 50 {{{ 54 51 ./fd_transceiver_simple --tx-args="serial=F331D4" --rx-args="serial=F331D4" --rate 1e6 --freq 900e6 --tx-gain 10 --rx-gain 10 55 52 }}} 56 The default sine wave has an amplitude {{{ampl = 0.3}}} and wave frequency {{{wave-freq = 100e3}}} (100kHz).53 The default sine wave has an amplitude {{{ampl = 0.3}}} and wave frequency {{{wave-freq = 100e3}}} (100kHz). This terminal window will show the power level at RX baseband, after RF cancellation (before digital) and after digital cancellation, respetively. 57 54 58 2. In window 2 (SUB-20): 55 ==== In Terminal 2 (SUB-20) ==== 56 * Build the RF canceller configuration code: 57 {{{ 58 cd ~/flexicon_orbit/fd_transceiver_simple/sub20/ 59 make 60 }}} 61 * Check the connection to the SUB-20 device: {{{lbusb}}}. You should see a XDIMAX devices connected to the USB hub. 59 62 60 63 64