-
Notifications
You must be signed in to change notification settings - Fork 350
update wifi-host-driver to support v1.3.1 #1950
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR updates the wifi-host-driver package to support version 1.3.1, adding new configuration options and hardware support while removing the deprecated v1.0.0 version.
Changes:
- Added v1.3.1 to package.json and removed deprecated v1.0.0
- Reorganized Kconfig with new menu structure for better configuration organization
- Added support for WiFi 6 chips (CYW55500, CYW55572) and new porting options
- Enhanced configuration with country code settings, NVRAM paths, and improved logging options
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| iot/wifi-host-driver/package.json | Added v1.3.1 package entry and removed v1.0.0 |
| iot/wifi-host-driver/Kconfig | Extensive reorganization with new v1.3.1 features including WiFi 6 chip support, country code configuration, NVRAM settings, porting options, and enhanced logging configuration |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
iot/wifi-host-driver/Kconfig
Outdated
| default "PA.1" | ||
| endif | ||
| config CYBSP_OOB_INTR_PRIORITY | ||
| int "Set the interrput priority for HOST_WAKE_IRQ pin" |
Copilot
AI
Jan 15, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Corrected spelling of 'interrput' to 'interrupt'.
| int "Set the interrput priority for HOST_WAKE_IRQ pin" | |
| int "Set the interrupt priority for HOST_WAKE_IRQ pin" |
iot/wifi-host-driver/Kconfig
Outdated
| int "Set the WiFi_REG ON pin number" | ||
| default -1 | ||
| config WHD_LOG_LEVEL_NONE | ||
| select WHD_PRINT_DISABLE |
Copilot
AI
Jan 15, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Inconsistent indentation: the 'select' directive should be indented at the same level as the 'bool' directive. Both should be indented equally under the config option.
| select WHD_PRINT_DISABLE | |
| select WHD_PRINT_DISABLE |
No description provided.