File tree Expand file tree Collapse file tree 3 files changed +18
-0
lines changed Expand file tree Collapse file tree 3 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,9 @@ Available Features
3737- Binary Symmetric Channel (BSC)
3838- Binary AWGN Channel (BAWGNC)
3939
40+ [ Wifi 802.11 Simulation Class] ( https://github.com/veeresht/CommPy/blob/master/commpy/wifi80211.py )
41+ - A class to simulate the transmissions and receiving parameters of physical layer 802.11 (currently till VHT (ac))
42+
4043[ Filters] ( https://github.com/veeresht/CommPy/blob/master/commpy/filters.py )
4144-------
4245- Rectangular
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ Please add names as needed so that we can keep up with all the contributors.
22
33Veeresh Taranalli for initial creation and contribution of CommPy.
44Bastien Trotobas for adding some features, bugfixes, maintenance.
5+ @eSoare for several enhancements including WiFi 802.11 class and code speedups.
56Vladimir Fadeev for bugfixes, addition of convolutional code puncturing and readme explanation of codings.
67Youness Akourim for adding features and fixing some bugs.
78Rey Tucker for python3 compatibility fixes.
Original file line number Diff line number Diff line change 1+ # Authors: CommPy contributors
2+ # License: BSD 3-Clause
3+
4+ """
5+ ============================================
6+ Wifi 802.11 simulation (:mod:`commpy.wifi80211`)
7+ ============================================
8+
9+ .. autosummary::
10+ :toctree: generated/
11+
12+ Wifi80211 -- Class to simulate the transmissions and receiving parameters of physical layer 802.11
13+ """
14+
115import math
216from typing import List
317
You can’t perform that action at this time.
0 commit comments