Skip to content
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

drivers: wifi: Dynmic Ed changes for Testing #1678

Draft
wants to merge 2 commits into
base: v2.6-branch
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fw_if: src: Add Kconfig for Dynamic ED
Add Kconfig in init command for Dynamic ED.

Signed-off-by: Kapil Bhatt <kapil.bhatt@nordicsemi.no>
kapbh committed Mar 13, 2025
commit 2f27de3f04b2094e616d0dfd545b3bf27b8eb9f4
4 changes: 4 additions & 0 deletions nrf_wifi/fw_if/umac_if/src/cmd.c
Original file line number Diff line number Diff line change
@@ -234,6 +234,10 @@ enum nrf_wifi_status umac_cmd_init(struct nrf_wifi_fmac_dev_ctx *fmac_dev_ctx,
umac_cmd_data->stbc_enable_in_ht = 1;
#endif /* CONFIG_NRF_WIFI_RX_STBC_HT */

#ifndef CONFIG_NRF_WIFI_DYNAMIC_ED
umac_cmd_data->disable_dynamic_ed = 1;
#endif /* CONFIG_NRF_WIFI_DYNAMIC_ED */

status = nrf_wifi_hal_ctrl_cmd_send(fmac_dev_ctx->hal_dev_ctx,
umac_cmd,
(sizeof(*umac_cmd) + len));