-
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
Feature/wifi nxp shim driver bug fixes #78698
base: main
Are you sure you want to change the base?
Feature/wifi nxp shim driver bug fixes #78698
Conversation
Not sure why you had the 3rd commit ("fix code format"), seems totally pointless, the original code looks good. |
just clang-format it and resolve history code format. Because I'm having "Maybe you would like to run clang-format" auto comment. Not sure if I can ignore it. Check notice on line 1783 in drivers/wifi/nxp/nxp_wifi_drv.c " drivers/wifi/nxp/nxp_wifi_drv.c:1783
|
Those clang-format mentions can be ignored for now. Please remove the format commit from this pr. |
9e04f12
to
cad63ab
Compare
ok updated |
@jukkar @dleach02 @danieldegrasse pls review and I believe it is an easy PR. |
@@ -1772,6 +1779,7 @@ static const struct zep_wpa_supp_dev_ops nxp_wifi_drv_ops = { | |||
.dpp_listen = wifi_nxp_wpa_dpp_listen, | |||
.remain_on_channel = wifi_nxp_wpa_supp_remain_on_channel, | |||
.cancel_remain_on_channel = wifi_nxp_wpa_supp_cancel_remain_on_channel, | |||
.send_action_cancel_wait = wifi_nxp_wpa_supp_cancel_action_wait, |
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.
Where is the implementation of this function? I don't see it within Zephyr or NXP's HAL
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.
zephyrproject-rtos/hal_nxp#416
it's in this PR.
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.
Ok, so we need to make this PR dependent on zephyrproject-rtos/hal_nxp#416, then- otherwise this change is effectively adding dead code that can't be built (unless I'm missing something?)
Add cancel action wait ops to cancel remain on channel after TX on specific channel, in case we need to remain on another channel later. Signed-off-by: Fengming Ye <frank.ye@nxp.com>
Fix soft AP net iface auto up after init. Set dormant off/on when soft AP start/stop, to align with STA. Signed-off-by: Fengming Ye <frank.ye@nxp.com>
cad63ab
to
272d037
Compare
Hi @dleach02 @danieldegrasse |
Fix NXP Wi-Fi shim driver bugs.
cad63ab
drivers: wifi: nxp: fix soft AP auto start
874f8a4
drivers: wifi: nxp: add cancel action wait ops