WiFi: Basic support for 11be to Supplicant HAL

In this commit, basic support for 11be is added to Supplicant HAL.
That includes adding EHT to list of WifiTechnologies

Bug: 198746544
Test: Build successful
Change-Id: Ied553e502ab2dba9efbcaac80691a6d54195e942
This commit is contained in:
Ahmed ElArabawy
2021-12-16 16:03:43 -08:00
parent c552b141e3
commit 115180e95a
2 changed files with 5 additions and 0 deletions

View File

@@ -39,4 +39,5 @@ enum WifiTechnology {
HT = 2,
VHT = 3,
HE = 4,
EHT = 5,
}

View File

@@ -39,4 +39,8 @@ enum WifiTechnology {
* For 802.11ax
*/
HE = 4,
/**
* For 802.11be
*/
EHT = 5,
}