-
Notifications
You must be signed in to change notification settings - Fork 6.6k
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
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
@@ -20,6 +20,13 @@ module = WIFI_NXP | |||
config WIFI_MGMT_SCAN_CHAN_MAX_MANUAL | |||
default 50 | |||
|
|||
config NXP_WIFI_BUILD_ONLY_MODE | |||
bool "Build only mode (do not link wireless binary 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.
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 <maochen.wang@nxp.com>
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 <daniel.degrasse@nxp.com>
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 <daniel.degrasse@nxp.com>
Remove references to TWT fields that did not exist, to resolve a build error. Signed-off-by: Daniel DeGrasse <daniel.degrasse@nxp.com>
Remove unused function `nxp_wifi_uap_status`. Signed-off-by: Daniel DeGrasse <daniel.degrasse@nxp.com>
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 <daniel.degrasse@nxp.com>
Fix build error of multiple definition of `dh5_init' in crypto_mbedtls_alt.c when WPS enabled. Signed-off-by: Maochen Wang <maochen.wang@nxp.com>
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 <maochen.wang@nxp.com>
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 <daniel.degrasse@nxp.com>
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 <daniel.degrasse@nxp.com>
4f53c6b
39c2e10
to
4f53c6b
Compare
Hi @krish2718 @bjarki-andreasen pls review again |
Update hal_nxp to add Wi-Fi driver code.