Skip to content

Commit eccc88e

Browse files
committed
Add modulation and corresponding coding list to documentation
1 parent d298ddd commit eccc88e

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

commpy/wifi80211.py

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,17 @@ def __init__(self, mcs: int):
112112
----------
113113
mcs : int
114114
The Modulation Coding Scheme (MCS) to simulate.
115-
A list of MCS and which coding and modulations they correspond to
115+
A list of MCS and which coding and modulations they correspond to is bellow:
116+
- 0 : BPSK 1/2
117+
- 1 : QPSK 1/2
118+
- 2 : QPSK 3/4
119+
- 3 : 16-QAM 1/2
120+
- 4 : 16-QAM 3/4
121+
- 5 : 64-QAM 2/3
122+
- 6 : 64-QAM 3/4
123+
- 7 : 64-QAM 5/6
124+
- 8 : 256-QAM 3/4
125+
- 9 : 256-QAM 5/6
116126
"""
117127
self.mcs = mcs
118128
self.modem = None

0 commit comments

Comments
 (0)