Merge ~sylvain-pineau/plainbox-provider-resource:80211ax_support into plainbox-provider-resource:master

Proposed by Sylvain Pineau
Status: Merged
Approved by: Chris Wayne
Approved revision: eccf1ddff52fa2168b3776cd815f8282f6674ed9
Merged at revision: e7ebe93bd053e95f5b8910b5d2be5620547f3ecc
Proposed branch: ~sylvain-pineau/plainbox-provider-resource:80211ax_support
Merge into: plainbox-provider-resource:master
Diff against target: 12 lines (+2/-0)
1 file modified
jobs/resource.pxu (+2/-0)
Reviewer Review Type Date Requested Status
Jonathan Cave (community) Approve
Review via email: mp+372414@code.launchpad.net

Description of the change

80211 ax support

greping iw output for HE specific propoerties, i.e MCS in the range 0-11 (10 and 11 support 1024-QAM)

To post a comment you must log in.
Revision history for this message
Jonathan Cave (jocave) wrote :

I've not seen a device with this support, but looks fine to me.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1diff --git a/jobs/resource.pxu b/jobs/resource.pxu
2index b7b4ea0..deab02b 100644
3--- a/jobs/resource.pxu
4+++ b/jobs/resource.pxu
5@@ -276,6 +276,8 @@ _description:
6 Job listing STA supported 802.11 protocols per interfaces.
7 command:
8 for i in `iw dev | grep -oP 'Interface\s+\K\w+'`; do iw phy phy$(iw dev $i info | grep -oP 'wiphy\s+\K\d+') info | grep -q 'VHT' && echo $i"_ac: supported" || echo $i"_ac: unsupported"; done
9+ # MCS 10 and 11 if present support the ax only 1024-QAM
10+ for i in `iw dev | grep -oP 'Interface\s+\K\w+'`; do iw phy phy$(iw dev $i info | grep -oP 'wiphy\s+\K\d+') info | grep -q 'MCS 0-11' && echo $i"_ax: supported" || echo $i"_ax: unsupported"; done
11 estimated_duration: 0.5
12 flags: preserve-locale
13

Subscribers

People subscribed via source and target branches