Added proper phytype definitions for XR and HT

git-svn-id: http://madwifi-project.org/svn/madwifi/trunk@3813 0192ed92-7a03-0410-a25b-9323aeb14dbd
This commit is contained in:
benoit 2008-07-19 20:36:28 +00:00
parent 02bac30645
commit b1f30fd47a

View File

@ -34,11 +34,16 @@
#ifndef _NET80211__IEEE80211_H_ #ifndef _NET80211__IEEE80211_H_
#define _NET80211__IEEE80211_H_ #define _NET80211__IEEE80211_H_
/* Warning : ieee80211_phytype is used by the HAL in its ABI, so this
* enumeration cannot be changed */
enum ieee80211_phytype { enum ieee80211_phytype {
IEEE80211_T_DS, /* direct sequence spread spectrum */ IEEE80211_T_DS = 0, /* direct sequence spread spectrum */
IEEE80211_T_FH, /* frequency hopping */ IEEE80211_T_FH = 1, /* frequency hopping */
IEEE80211_T_OFDM, /* frequency division multiplexing */ IEEE80211_T_OFDM = 2, /* frequency division multiplexing */
IEEE80211_T_TURBO, /* high rate OFDM, aka turbo mode */ IEEE80211_T_TURBO = 3, /* high rate OFDM, aka turbo mode */
IEEE80211_T_HT = 4, /* High Troughput (802.11n) */
IEEE80211_T_XR = 5, /* OFDM eXtended Range */
}; };
#define IEEE80211_T_CCK IEEE80211_T_DS /* more common nomenclature */ #define IEEE80211_T_CCK IEEE80211_T_DS /* more common nomenclature */