ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

80211bSDR LinkLayer-MATLAB-NAV-GUI

2022-05-13 12:33:45  阅读:202  来源: 互联网

标签:file GUI DTx NAV MATLAB USRP directory your LinkLayer


from:https://github.com/80211bSDR/LinkLayer-MATLAB-NAV-GUI

LinkLayer-MATLAB-NAV-GUI

LinkLayer-MATLAB-NAV-GUI is an IEEE 802.11b Standard Compliant Link Layer (PHY and MAC layer) for MATLAB-based SDR. The code is highly modular and is entirely written in MATLAB. See each file for further documentation. The default settings in the files work well with our N210s using WBX daughterboards.

The system is modeled using a finite state machine (FSM) that transitions only on the clock cycles derived from the USRP clock, allowing for slot-time synchronized operations, thereby eliminating the need for external clocks. Furthermore, the model helps create a state-action based system design, wherein the same node switches between transmitter and receiver functions.

The IEEE 802.11b PHY and MAC layer packet structure specifications is adopted in our implementation. Our approach collects all the bits in the packet in multiples of 8 octets, which forms one USRP frame. This makes it easy for us to work with the MATLAB system objects and with PHY and MAC header fields in the RTS/CTS/DATA/ACK packet that happen to have sizes that are multiples of 8 octets. Multiple USRP frames will compose the standard-compliant 802.11b packet.

DBPSK (differential binary phase shift keying) and DSSS direct sequence spread spectrum at the PHY layer and CSMA/CA (carrier sense multiple access with collision avoidance) at the MAC layer is implemented.

802.11 relies mainly on physical carrier sensing and is known to suffer from the hidden node problem. We have implemented the virtual carrier sensing in CSMA/CA using the optional IEEE 802.11 RTS/CTS exchange. RTS/CTS is known to partially solve the hidden node problem in wireless networks. The duration field in the MAC header specifies basically the time the medium will be busy. The nodes will read into the duration field and set their Network Allocation Vector (NAV) counter, which essentially indicates how long it must defer medium access.

The consistent performance of the two nodes (1 DTx and 1 DRx; essentially a bi-directional link) and the three nodes (2 DTxs and 1 DRx) experimental results demonstrate the robustness of the system in mitigating packet collisions and enforcing fairness among nodes when accessing a common channel.

The current work provides a testbed to experiment with and enables the creation of new MAC protocols starting from the fundamental IEEE 802.11b compliant standard.

This work is supported by MathWorks under the Development-Collaboration Research Grant. We would like to thank Mike McLernon and Ethem Sozer for their continued support on this project.

This code is licensed under the LGPLv3 license. Please feel free to use the code in your research and development works. We would appreciate a citation to the paper below when this code is helpful in obtaining results in your future publications.

Publication for citation:
R. Subramanian, B. Drozdenko, E. Doyle, R. Ahmed, M. Leeser and K. R. Chowdhury, "High-Level System Design of IEEE 802.11b Standard-Compliant Link Layer for MATLAB-Based SDR," in IEEE Access, vol. 4, no. , pp. 1494-1509, 2016. doi: 10.1109/ACCESS.2016.2553671

R. Subramanian, E. Doyle, B. Drozdenko, M. Leeser and K. R. Chowdhury, "State-Action Based Link Layer Design for IEEE 802.11b Compliant MATLAB-Based SDR," 2016 International Conference on Distributed Computing in Sensor Systems (DCOSS), Washington, DC, USA, 2016, pp. 193-198. doi: 10.1109/DCOSS.2016.34

Hardware Setup

(A) Configuring Ubuntu OS Settings & Ettus Research USRP N210 Device Setup

1) Ethernet settings

a) Identify the eth# that is NOT connected to the internet.

> ifconfig

b) If it is called, say, eth1, then change the ethernet settings on the card connected to the USRP to use a static IP address (e.g. 192.168.10.1 for DTx, or 192.168.20.1 for DRx). To do this temporarily:

> sudo ifconfig eth1 192.168.10.1 netmask 255.255.255.0
> ifconfig eth1

c) Confirm that eth# has changed appropriately
Note: By default, dhclient will be running for your the ethernet configuration, so, eventually this setting will be overwritten, unless you make a permanent change to the /etc/network/interfaces file. To do this permanently:

> cd /etc/network
> sudo chmod 777 interfaces
> vi interfaces

d) Append the following lines to the end of the file:

 #USRP configuration
 auto eth1
 iface eth1 inet static
    address   192.168.10.1
    netmask   255.255.255.0
    network   192.168.10.0
    broadcast 192.168.10.255 

Then, logout and log back in.

2) Max. OS send/receive buffer size

a) Set the max. OS send buffer size (wmem) and receive buffer size (rmem) for queues on all protocols. To do this temporarily:

> sudo sysctl -w net.core.wmem_max=1048576
> sudo sysctl -w net.core.rmem_max=50000000

b) Note that, by default, these changes will be overwritten the next time you logout and log back into your Ubuntu machine, unless you make a permanent change to the /etc/sysctl.conf file. To do this permanently:

> cd /etc
> sudo chmod 777 sysctl.conf
> vi sysctl.conf

c) Append the following lines to the end of the file:

net.core.wmem_max=1048576
net.core.rmem_max=50000000

Then, logout and log back in.

3) Thread Priority

a) Set the maximum real-time priority for the "usrp" group and your user name. This action gives our transmitter-receiver routines a high thread scheduling priority, so that they won't be preempted by other threads. To do this permanently:

> cd /etc/security
> sudo chmod 777 limits.conf
> vi limits.conf

b) Append the following lines to the end of the file (before "# End of file"):

 @usrp  -    rtprio    50
 ram    -    rtprio    50

where, in place of "ram", you put your Unix login name.

(B) MATLAB R2015b Communications System Toolbox USRP Support Package Setup

1) Where to install the USRP support package?

In reality, the USRP support package can be installed in any directory with write permissions on any machine. The reason we decided to install only in the "/usr/local/MATLAB/2014b/SupportPackages" directory is because of the following:
a. We need to choose a directory for the USRP support package to be installed in that is the same on all the Ubuntu machines. This way, any MEX files we create, which have the usrproot install folder hard-coded within them, can reference the USRP support package shared libraries in the same location on any lab machine.
b. This directory must be accessible by all User accounts that need to run the USRP Support Package (sdru) System objects and transceive functions. That's why the install directory cannot be in the default /home/, since permissions in any home directory are always set to only allow a specific user to access his own files.

2) USRP Support Package Installation Steps:

a) Start the GUI wizard by typing the supportPackageInstaller command in MATLAB. Download the USRP support package usrpradio_download to a folder, e.g. /home/ram/Documents/MATLAB/SupportPackages/R2015b/downloads, where, in place of "ram", you put your Unix login name.
b) Move this usrpradio_download directory to under /usr/local/MATLAB/R2015b/SupportPackages/downloads/
c) Install the USRP support package from the above folder by now picking the 'Install from folder' option in the GUI wizard. You might be prompted to login to your MathWorks account.
d) Make sure to add all the Support Package folders on MATLAB path. Use Set Path from the MATLAB tool tab menu to add path /usr/local/MATLAB/R2015b/toolbox/shared/hwconnectinstaller.

3) Setting the default MATLAB startup directory using Ubuntu OS (strictly optional)

Automatically setting the working directory, to say /usr/local/MATLAB/DTx, every time we start MATLAB is convenient as you don't have to do this yourself. To enact this, you could do the following steps:
a) Open up a new Unix terminal and go to your home directory:

> cd ~

b) Edit the files .profile and .bashrc to append the following line at the very end of each file:

export MATLAB_USE_USERWORK=1

c) Ensure that the shared work directory /usr/local/MATLAB/DTx exists on this machine. If it doesn't, then create it.

> cd /usr/local/MATLAB
> ls
> mkdir DTx
> chmod 777 DTx

d) Start MATLAB R2015b

> matlab

e) At the command prompt, run the userpath function to change your starting directory:

>> userpath('/usr/local/MATLAB/V40');
>> u=userpath
>> cd(u(1:end-1));

f) Close MATLAB and restart your computer using Ubuntu OS. Restart MATLAB and verify that it starts in the shared work directory.

You are now ready to run the scripts!

Start with generating the MEX-file for transceive function at DTx and the DRx. To generate the MEX function transceiveXXX_mex() from transceiveXXX(), execute the DTxInitParameters.m/DRxInitParameters.m script to load onto workspace the values of the relevant variables and then, use the codegen as shown below,
Note: XXX is the last three digits in the IP address of the corresponding USRP node. For e.g., the node set to IP address, say, 192.168.10.1 will have XXX equated to 101. At the DTx, the transceiveXXX() includes a swapFreqFlag, set to 0 by default. By setting it to 1, the center frequency of the transceiver's Tx and Rx operates in different channels. Essentially, the DTx listens for activity in the same channel it will soon transmit the DATA packet from, and switches to a different channel when it starts receiving the ACK. We recommend the different channels be separated by an amount greater than the bandwidth of the system, i.e. 1 MHz.
At the DTx,

>> % the following initialization is only to generate the MEX file; actual parameters for over-the-air experiments set in GUI
>> txGain = 20; rxGain = 15; centerFreqTx = 1.284e9;  centerFreqRx = 1.284e9; decFactor = 500; intFactor = 500;
>> swapFreqFlag = 0; %same channel operation
>> codegen transceiveXXX -args {complex(zeros(1408,1)),true,txGain,rxGain,centerFreqTx,centerFreqRx,decFactor, intFactor,swapFreqFlag}

At the DRx,

>> % the following initialization is only to generate the MEX file; actual parameters for over-the-air experiments set in GUI
>> txGain = 15; rxGain = 20; centerFreqTx = 1.284e9; centerFreqRx = 1.284e9; decFactor = 500; intFactor = 500;
>> codegen transceiveXXX -args {complex(zeros(1408,1)),true,txGain,rxGain,centerFreqTx,centerFreqRx,decFactor, intFactor}

Running the Two Node (1 DTx and 1 DRx) OR the Three Node (2 DTxs and 1 DRx) System with GUI

Run the code GUIMain.m in MATLAB to invoke an interactive GUI (Graphical User Interface). Set the required PHY/MAC parameters as desired to conduct the over-the-air experiments. Default parameter settings are given in bubble choices and in edit text boxes. Once the parameters are set, press the START button to run the experiment. Press HELP button to open up HelpGUI.pdf, a help document, that guides in parameter selection and in running the experiments.

标签:file,GUI,DTx,NAV,MATLAB,USRP,directory,your,LinkLayer
来源: https://www.cnblogs.com/yanghonker/p/16266258.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有