Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4b5661e

Browse files
committedMar 13, 2025·
drivers: wifi: Dynmic Ed changes for Testing
These fw binaries have a provision for the enable/disable dynamic_ed through command init and sending dynamic ed stats to upper layers. Signed-off-by: Karun Kumar Eagalapati <karun.kumar@nordicsemi.no>
1 parent 5d8c893 commit 4b5661e

File tree

4 files changed

+11
-0
lines changed

4 files changed

+11
-0
lines changed
 

‎nrf_wifi/fw_bins/default/nrf70.bin

-136 Bytes
Binary file not shown.

‎nrf_wifi/fw_bins/radio_test/nrf70.bin

0 Bytes
Binary file not shown.

‎nrf_wifi/fw_bins/scan_only/nrf70.bin

-4 Bytes
Binary file not shown.

‎nrf_wifi/fw_if/umac_if/inc/fw/host_rpu_sys_if.h

+11
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,8 @@ enum nrf_wifi_sys_events {
196196
NRF_WIFI_EVENT_RAW_TX_DONE,
197197
/** Response to NRF_WIFI_CMD_GET_DEBUG_STATS */
198198
NRF_WIFI_EVENT_DEBUG_STATS,
199+
/** Event for lmac dynamic ed stats event */
200+
NRF_WIFI_EVENT_DYNAMIC_ED_STATS,
199201
};
200202

201203
/**
@@ -921,6 +923,8 @@ struct nrf_wifi_cmd_sys_init {
921923
* By default, RX STBC is enabled.
922924
*/
923925
unsigned int stbc_enable_in_ht;
926+
/** Enables or disables dynamic ed.*/
927+
unsigned int disable_dynamic_ed;
924928
} __NRF_WIFI_PKD;
925929

926930
/**
@@ -1644,4 +1648,11 @@ struct nrf_wifi_umac_event_debug_stats {
16441648
unsigned int rpu_hw_lockup_recovery_done;
16451649
} __NRF_WIFI_PKD;
16461650

1651+
struct nrf_wifi_umac_event_dynamic_ed_stats {
1652+
/** UMAC header, @ref nrf_wifi_sys_head */
1653+
struct nrf_wifi_sys_head sys_head;
1654+
char default_ed_threshold;
1655+
char adjusted_ed_threshold;
1656+
} __NRF_WIFI_PKD;
1657+
16471658
#endif /* __HOST_RPU_SYS_IF_H__ */

0 commit comments

Comments
 (0)
Please sign in to comment.