1ENUM IEEE80211_RATE_(9) Device registration ENUM IEEE80211_RATE_(9)
2
3
4
6 enum_ieee80211_rate_flags - rate flags
7
9 enum ieee80211_rate_flags {
10 IEEE80211_RATE_SHORT_PREAMBLE,
11 IEEE80211_RATE_MANDATORY_A,
12 IEEE80211_RATE_MANDATORY_B,
13 IEEE80211_RATE_MANDATORY_G,
14 IEEE80211_RATE_ERP_G,
15 IEEE80211_RATE_SUPPORTS_5MHZ,
16 IEEE80211_RATE_SUPPORTS_10MHZ
17 };
18
20 IEEE80211_RATE_SHORT_PREAMBLE
21 Hardware can send with short preamble on this bitrate; only
22 relevant in 2.4GHz band and with CCK rates.
23
24 IEEE80211_RATE_MANDATORY_A
25 This bitrate is a mandatory rate when used with 802.11a (on the 5
26 GHz band); filled by the core code when registering the wiphy.
27
28 IEEE80211_RATE_MANDATORY_B
29 This bitrate is a mandatory rate when used with 802.11b (on the 2.4
30 GHz band); filled by the core code when registering the wiphy.
31
32 IEEE80211_RATE_MANDATORY_G
33 This bitrate is a mandatory rate when used with 802.11g (on the 2.4
34 GHz band); filled by the core code when registering the wiphy.
35
36 IEEE80211_RATE_ERP_G
37 This is an ERP rate in 802.11g mode.
38
39 IEEE80211_RATE_SUPPORTS_5MHZ
40 Rate can be used in 5 MHz mode
41
42 IEEE80211_RATE_SUPPORTS_10MHZ
43 Rate can be used in 10 MHz mode
44
46 Hardware/specification flags for rates. These are structured in a way
47 that allows using the same bitrate structure for different bands/PHY
48 modes.
49
51 Johannes Berg <johannes@sipsolutions.net>
52 Author.
53
55Kernel Hackers Manual 3.10 June 2019 ENUM IEEE80211_RATE_(9)