skip to main
|
skip to sidebar
Bhanage.com
Gautam Bhanage's Personal Website.
Pages
Bio
Blog
Service
Tools
Publications
Patents
Bonjour & Welcome
Welcome to Dr. Gautam Bhanage's personal website.
Connect with me:
Follow @Bhanage
Bio
Labels
WiFi
kernel
embedded linux
wireless
802.11
802.11ac
WLAN
802.11ax
comparison
design
L1
cellular
networks
physical layer
802.11n
algorithms
architecture
cheatsheet
circuits
datastructures
Total Pageviews
Blog Archive
►
2023
(11)
►
December
(1)
►
April
(1)
►
March
(1)
►
February
(3)
►
January
(5)
►
2022
(1)
►
September
(1)
►
2021
(16)
►
November
(2)
►
June
(1)
►
May
(8)
►
April
(5)
►
2020
(16)
►
November
(3)
►
July
(1)
►
June
(4)
►
May
(2)
►
April
(2)
►
February
(1)
►
January
(3)
►
2019
(20)
►
October
(9)
►
September
(2)
►
August
(3)
►
June
(4)
►
May
(1)
►
April
(1)
▼
2018
(2)
▼
September
(1)
WiFi: Difference between 802.11ac VHT Capabilities...
►
February
(1)
►
2017
(16)
►
December
(1)
►
July
(1)
►
June
(1)
►
May
(5)
►
April
(1)
►
March
(1)
►
February
(3)
►
January
(3)
►
2016
(3)
►
March
(2)
►
February
(1)
►
2015
(8)
►
December
(2)
►
November
(6)
Tuesday, September 11, 2018
WiFi: Difference between 802.11ac VHT Capabilities and Operation IE MCS
This is a common question that frequently leads to confusion.
Please read this brief app note for clarification:
PDF
Read more »
Newer Posts
Older Posts
Home
Readers
Popular Posts
How to use IS_ERR and PTR_ERR? What do they mean?
From the kernel definition there are three macros: IS_ERR - used to check, Returns non-0 value if the ptr is an error. Otherwise 0 if it’...
Perforce: Protected namespace access denied
I ran into this error when I was creating a new clientspec and tried to checkout a new tree with this clientspec. I was using p4 sync ... ...
Linux: Kernel crash debugging: BUG: scheduling while atomic
Why do you see that print "Scheduling while atomic" indicates that you've tried to sleep somewhere that you shouldn't - l...
WiFi: Comparison of WiFi Direct vs WiFi Aware vs BLE vs Adhoc mode (802.11)
Summary WiFi Aware - service discovery that helps setup WiFi Direct links. BLE - service discovery and P2P connection. WiFi Direct - P2P...
Linux: Easy solution vim caught deadly signal segv vim preserving files vim finished
Ran into this irritating problem when everything was initially working fine on my system. I had copy pasted something into the command win...
WiFi: PP-AMSDU versus SPP-AMSDU a brief comparison
Before we jump into the different type of AMSDUs supported, let us do a quick recap of where AMSDUs fit in with the aggregation hierarchy. H...
WiFi: AMSDU vs AMPDU: A Brief Tutorial on WiFi Aggregation Support
WiFi MAC architecture supports aggregation at two layers. The MAC service data units (MSDUs) can be aggregated to form AMSDUs. Each ...
Linux: Comparison of netlink vs ioctl mechnaisms for configuration control in kernel space
Why bother? If you are writing a new kernel module or adding configurability to an existing one, typically you need some means by which you...
Linux: Nagle's Algorithm and How to Disable it
Nagle's algorithm is a TCP optimization in the kernel stack that waits to aggregate small chunks of bytes before sending packets on a T...
p4 shelve equivalent in Git with an example
The equivalent of p4 shelve on GIT is stashing. Say I have modified the file on my repository and I see the following: techmuser@gw2:...