Re: [ath9k-devel] [PATCH 1/2] mac80211: Add STBC RX flag to radiotap

2013-04-29 Thread Oleksij Rempel
Am 29.04.2013 11:04, schrieb Wojciech Dubowik: Add rx flag to radiotap header which tells whether Space-Time Block Code was used. At the moment only 1 stream STBC is supported. TODO: Pass information from the driver on how many STBC streams have been received. Hi, do i understand it

Re: [ath9k-devel] [PATCH 1/2] mac80211: Add STBC RX flag to radiotap

2013-04-29 Thread Johannes Berg
On Mon, 2013-04-29 at 11:04 +0200, Wojciech Dubowik wrote: Add rx flag to radiotap header which tells whether Same here, you can't just randomly add something to radiotap. Go standardise it first. johannes ___ ath9k-devel mailing list

[ath9k-devel] [PATCH 1/2] mac80211: Add STBC RX flag to radiotap. Signed-off-by: Wojciech Dubowik wojciech.dubo...@neratec.com

2012-01-23 Thread Wojciech Dubowik
--- include/net/ieee80211_radiotap.h |3 ++- include/net/mac80211.h |1 + net/mac80211/rx.c|5 - 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/include/net/ieee80211_radiotap.h b/include/net/ieee80211_radiotap.h index 7139254..e5b89c4

Re: [ath9k-devel] [PATCH 1/2] mac80211: Add STBC RX flag to radiotap. Signed-off-by: Wojciech Dubowik wojciech.dubo...@neratec.com

2012-01-23 Thread Johannes Berg
#define IEEE80211_RADIOTAP_MCS_HAVE_GI 0x04 #define IEEE80211_RADIOTAP_MCS_HAVE_FMT 0x08 #define IEEE80211_RADIOTAP_MCS_HAVE_FEC 0x10 +#define IEEE80211_RADIOTAP_MCS_HAVE_STBC 0x20 Need radiotap standardisation *FIRST* before you're allowed to