Changes between Version 11 and Version 12 of Tutorials/Wireless/mmwave Paam Link Rate


Ignore:
Timestamp:
Mar 1, 2024, 6:51:21 PM (9 months ago)
Author:
zhihuigao
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Tutorials/Wireless/mmwave Paam Link Rate

    v11 v12  
    230230In MATLAB, open {{{GetParam.m}}}, and configure the parameters below:
    231231
    232 param.carrier: the carrier frequency of the TX and RX;
    233 
    234232{{{#!shell
    235 aaa
     233    % USRP Setting
     234    param.carrier = 3.0e9;
     235
     236    param.subdevTx = "A:0";
     237    param.deviceTx = "192.168.70.3";
     238    param.gainTx = 15;
     239   
     240    param.deviceRx = "192.168.70.9";
     241    param.subdevRx = "A:0";
     242    param.gainRx = 15;
    236243}}}
    237244
    238 param.subdevTx and param.subdevRX: the subdevice settings of the TX/RX USRP, e.g., A:0 for X series and A:A for B series, and you may find more detials in the link below: https://files.ettus.com/manual/page_configuration.html
    239 param.gainTx and param.gainRx: the TX/RX gain of the USRPs, whose range varies over different USRP types, which can be find by running uhd_usrp_probe command in the terminal.
     245{{{param.carrier}}}: the carrier frequency of the TX and RX;
     246{{{param.subdevTx}}} and {{{param.subdevRX}}}: the subdevice settings of the TX/RX USRP. The connection on the sb2 requires to set both parameters as {{{B:0}}}.
     247{{{param.gainTx}}} and {{{param.gainRx}}}: the TX/RX gain of the USRPs, whose range varies over different USRP types, which can be find by running {{{uhd_usrp_probe}}} command in the terminal. In sb2, the recommended values are {{{60}}}.
    240248
    241249==== Run the experiment ====