Skip to content

Commit d298ddd

Browse files
committed
Update README.md, THANKS.txt and add toctree in wifi80211.py
1 parent 51c80af commit d298ddd

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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

THANKS.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ Please add names as needed so that we can keep up with all the contributors.
22

33
Veeresh Taranalli for initial creation and contribution of CommPy.
44
Bastien Trotobas for adding some features, bugfixes, maintenance.
5+
@eSoare for several enhancements including WiFi 802.11 class and code speedups.
56
Vladimir Fadeev for bugfixes, addition of convolutional code puncturing and readme explanation of codings.
67
Youness Akourim for adding features and fixing some bugs.
78
Rey Tucker for python3 compatibility fixes.

commpy/wifi80211.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
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+
115
import math
216
from typing import List
317

0 commit comments

Comments
 (0)