-
Notifications
You must be signed in to change notification settings - Fork 8.4k
manifest: Update hal_nxp to add Wi-Fi driver #79536
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
manifest: Update hal_nxp to add Wi-Fi driver #79536
Conversation
|
The following west manifest projects have been modified in this Pull Request:
Note: This message is automatically posted and updated by the Manifest GitHub Action. |
|
looks good, ping when its a sha :) |
e5787e5 to
8666a0b
Compare
f45f3e2 to
a72fb7f
Compare
Too quick, still discussing this internally
a72fb7f to
beffd8e
Compare
445b8b6 to
39c2e10
Compare
|
@bjarki-andreasen it is a sha |
drivers/wifi/nxp/Kconfig.nxp
Outdated
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.
| bool "Build only mode (do not link wireless binary blob)" | |
| bool "Build only mode (do not link wireless firmware blob)" |
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.
Fixed, thanks
|
CI failure is with a new test that merged between last night and resubmission of the PR with a SHA. Working to fix it now :-( |
Update hal_nxp to add Wi-Fi driver code. Signed-off-by: Maochen Wang <[email protected]>
ap_bandwidth API implementation is not complete. Remove the structure definition and implementation from the NXP WiFi driver to fix a build error. Signed-off-by: Daniel DeGrasse <[email protected]>
set_btwt API implementation is not complete. Remove the structure definition and implementation from the NXP WiFi driver to fix a build error. Signed-off-by: Daniel DeGrasse <[email protected]>
Remove references to TWT fields that did not exist, to resolve a build error. Signed-off-by: Daniel DeGrasse <[email protected]>
Remove unused function `nxp_wifi_uap_status`. Signed-off-by: Daniel DeGrasse <[email protected]>
Add CONFIG_NXP_WIFI_BUILD_ONLY_MODE, which allows the NXP WiFi driver to be built without a binary blob. The built application will not be functional, but this enables continuous integration to run upstream. Signed-off-by: Daniel DeGrasse <[email protected]>
Fix build error of multiple definition of `dh5_init' in crypto_mbedtls_alt.c when WPS enabled. Signed-off-by: Maochen Wang <[email protected]>
Remove CONFIG_MBEDTLS_HAVE_TIME_DATE, which will cause that mbedtls include Zephyr time.h and leads to 'DIV_ROUND_UP' redefined warning. Signed-off-by: Maochen Wang <[email protected]>
Generated PEM headers need to be created before we build the WiFi shell when WIFI_NM_WPA_SUPPLICANT_CRYPTO_ENTERPRISE is enabled, so add an explicit dependency on the app target to be certain these headers are created Signed-off-by: Daniel DeGrasse <[email protected]>
Add support for building NXP WiFi. Since the driver typically requires binary blobs, enable CONFIG_NXP_WIFI_BUILD_ONLY_MODE for this testcase. Signed-off-by: Daniel DeGrasse <[email protected]>
4f53c6b
39c2e10 to
4f53c6b
Compare
|
Hi @krish2718 @bjarki-andreasen pls review again |
Update hal_nxp to add Wi-Fi driver code.