Skip to content

Commit 3ec15fe

Browse files
kapbhrlubos
authored andcommitted
fw_if: src: Add Kconfig for ps poll and stbc
Add Kconfig in init command for maximum ps poll failures count and stbc enable in HT. Signed-off-by: Kapil Bhatt <[email protected]>
1 parent dc25a0a commit 3ec15fe

File tree

1 file changed

+6
-0
lines changed
  • nrf_wifi/fw_if/umac_if/src

1 file changed

+6
-0
lines changed

nrf_wifi/fw_if/umac_if/src/cmd.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,12 @@ enum nrf_wifi_status umac_cmd_init(struct nrf_wifi_fmac_dev_ctx *fmac_dev_ctx,
228228
umac_cmd_data->ps_exit_strategy = EVERY_TIM;
229229
#endif /* CONFIG_NRF_WIFI_PS_INT_PS */
230230

231+
umac_cmd_data->max_ps_poll_fail_cnt = CONFIG_NRF_WIFI_MAX_PS_POLL_FAIL_CNT;
232+
233+
#ifdef CONFIG_NRF_WIFI_RX_STBC_HT
234+
umac_cmd_data->stbc_enable_in_ht = 1;
235+
#endif /* CONFIG_NRF_WIFI_RX_STBC_HT */
236+
231237
status = nrf_wifi_hal_ctrl_cmd_send(fmac_dev_ctx->hal_dev_ctx,
232238
umac_cmd,
233239
(sizeof(*umac_cmd) + len));

0 commit comments

Comments
 (0)