src/cyw43_ctrl: Implement interference mode configuration#147
Open
mitchellcairns wants to merge 1 commit intogeorgerobotics:mainfrom
Open
src/cyw43_ctrl: Implement interference mode configuration#147mitchellcairns wants to merge 1 commit intogeorgerobotics:mainfrom
mitchellcairns wants to merge 1 commit intogeorgerobotics:mainfrom
Conversation
Add functions to configure and query the WiFi interference mitigation mode: - cyw43_ll_wifi_set_interference_mode / cyw43_wifi_set_interference_mode - cyw43_ll_wifi_get_interference_mode / cyw43_wifi_get_interference_mode The mode is controlled via the WLC_SET/GET_INTERFERENCE_MODE ioctls and accepts one of the CYW43_IFMODE_ constants: CYW43_IFMODE_NONE (0) - disabled CYW43_IFMODE_NONWLAN (1) - non-WLAN interference mitigation CYW43_IFMODE_WLANMANUAL (2) - adjacent channel interference (ACI) CYW43_IFMODE_AUTO (3) - automatic ACI CYW43_IFMODE_AUTONOISE (4) - automatic ACI with noise reduction Unlike the roam APIs, interference mode applies globally to the radio and is not gated on STA_IS_ACTIVE as it affects both STA and AP interfaces in apsta mode. Info was found at: https://community.infineon.com/gfawx74859/attachments/gfawx74859/twwifibtcombo/869/1/wl_002-23156.pdf
087c152 to
22535f6
Compare
Author
|
Kindly requesting review from @dpgeorge |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add functions to configure and query the WiFi interference mitigation
mode:
The mode is controlled via the WLC_SET/GET_INTERFERENCE_MODE ioctls and
accepts one of the CYW43_IFMODE_ constants:
CYW43_IFMODE_NONE (0) - disabled
CYW43_IFMODE_NONWLAN (1) - non-WLAN interference mitigation
CYW43_IFMODE_WLANMANUAL (2) - adjacent channel interference (ACI)
CYW43_IFMODE_AUTO (3) - automatic ACI
CYW43_IFMODE_AUTONOISE (4) - automatic ACI with noise reduction
Unlike the roam APIs, interference mode applies globally to the radio
and is not gated on STA_IS_ACTIVE as it affects both STA and AP
interfaces in apsta mode.
Info was found at: https://community.infineon.com/gfawx74859/attachments/gfawx74859/twwifibtcombo/869/1/wl_002-23156.pdf