Skip to content

Commit

Permalink
nrf_wifi: Update RPU patch to rev#bb58b3b6336
Browse files Browse the repository at this point in the history
UMAC:
     [SHEL-2445]: Passing edge channel information to lmac.
     [SHEL-2471]: RSSI issue in LPM mode.
     [SHEL-2486]: Updating nrf_wifi_sys_params structure in
                  radiotest mode.
     [SHEL-2504]: Regulatory domain setting failed in 7001.
     [SHEL-2506]: Updating antenna gain values from RF params.
     [SHEL-2526]: Mode change from station to Monitor and back prevents
                  station from scan and connecting again.
     [SHEL-2512]: Firmware version update for 2.6.0

LMAC:
     [SHEL-2470]: Incorrect RSSI measurement in LPM mode.

PHY:
     [SHEL-2406]: Disable DPD at 85 degrees.
     [SHEL-2481]: Support for applying frame format dependent edge
                  backoff in PHY firmware.
     [SHEL-2440]: Patch for SX not locking at -40 degree celsius.

Signed-off-by: Mahammadyunus Patil <[email protected]>
  • Loading branch information
imapa committed Feb 29, 2024
1 parent d8c6c3d commit 322f3b8
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
Binary file modified nrf_wifi/fw_bins/default/nrf70.bin
Binary file not shown.
Binary file modified nrf_wifi/fw_bins/radio_test/nrf70.bin
Binary file not shown.
Binary file modified nrf_wifi/fw_bins/scan_only/nrf70.bin
Binary file not shown.
4 changes: 2 additions & 2 deletions nrf_wifi/fw_if/umac_if/inc/fw/patch_info.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ struct nrf70_fw_image_info {

#define RPU_FAMILY (1)
#define RPU_MAJOR_VERSION (2)
#define RPU_MINOR_VERSION (9)
#define RPU_PATCH_VERSION (25)
#define RPU_MINOR_VERSION (10)
#define RPU_PATCH_VERSION (0)

#endif /* _PATCH_INFO_H */
12 changes: 6 additions & 6 deletions nrf_wifi/fw_if/umac_if/src/radio_test/fmac_api.c
Original file line number Diff line number Diff line change
Expand Up @@ -157,17 +157,17 @@ enum nrf_wifi_status nrf_wifi_fmac_dev_init_rt(struct nrf_wifi_fmac_dev_ctx *fma
}

nrf_wifi_osal_mem_set(fmac_dev_ctx->fpriv->opriv,
&phy_rf_params,
0xFF,
sizeof(phy_rf_params));
&phy_rf_params,
0xFF,
sizeof(phy_rf_params));

status = nrf_wifi_fmac_rf_params_get(fmac_dev_ctx,
&phy_rf_params);
&phy_rf_params);

if (status != NRF_WIFI_STATUS_SUCCESS) {
nrf_wifi_osal_log_err(fmac_dev_ctx->fpriv->opriv,
"%s: RF parameters get failed",
__func__);
"%s: RF parameters get failed",
__func__);
goto out;
}

Expand Down

0 comments on commit 322f3b8

Please sign in to comment.