Skip to content

Commit aae0010

Browse files
committed
nrf_wifi: Scan fixes
Enable management buffer offload for scan and also pass missing args. Signed-off-by: Chaitanya Tata <[email protected]>
1 parent ffa8042 commit aae0010

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

nrf_wifi/CMakeLists.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,12 @@ target_sources_ifdef(CONFIG_NRF700X_STA_MODE
104104
${NRF_WIFI_DIR}/fw_if/umac_if/src/fmac_util.c
105105
)
106106

107+
target_compile_definitions_ifdef(CONFIG_NRF_WIFI_LOW_POWER
108+
nrf-wifi
109+
PRIVATE
110+
-DCONFIG_NRF_WIFI_LOW_POWER
111+
)
112+
107113
target_compile_definitions(
108114
nrf-wifi
109115
PRIVATE

nrf_wifi/fw_bins/scan_only/nrf70.bin

148 Bytes
Binary file not shown.

nrf_wifi/fw_if/umac_if/src/cmd.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,8 @@ enum nrf_wifi_status umac_cmd_init(struct nrf_wifi_fmac_dev_ctx *fmac_dev_ctx,
151151
#endif /* CONFIG_NRF700X_TCP_IP_CHECKSUM_OFFLOAD */
152152
umac_cmd_data->discon_timeout = CONFIG_NRF_WIFI_AP_DEAD_DETECT_TIMEOUT;
153153

154+
umac_cmd_data->mgmt_buff_offload = 1;
155+
154156
nrf_wifi_osal_log_dbg(fmac_dev_ctx->fpriv->opriv, "RPU LPM type: %s",
155157
umac_cmd_data->sys_params.sleep_enable == 2 ? "HW" :
156158
umac_cmd_data->sys_params.sleep_enable == 1 ? "SW" : "DISABLED");

0 commit comments

Comments
 (0)