Hello!!
When I'm reading carefully about the nRF7002 Power save operations, It's hard to understand about Power save Exit Strategy.
https://docs.nordicsemi.com/bundle/ncs-3.0.0/page/nrf/protocols/wifi/station_mode/powersave.html
In the SDK, The code is written like this. (v2.6.4)
/** * Wi-Fi power save exit strategy */ enum wifi_ps_exit_strategy { /** QoS NULL frame based */ WIFI_PS_EXIT_EVERY_TIM = 0, /** Uses a proprietary combination of PS-Poll and QoS-Null/Null */ WIFI_PS_EXIT_CUSTOM_ALGO, /** Last value */ WIFI_PS_EXIT_LAST, /** Maximum value */ WIFI_PS_EXIT_MAX = WIFI_PS_EXIT_LAST - 1, };
First Question,
my understanding is EVERY_TIM means that wifi is waken by every TIM.
but, there is some confusing thing that Listen Interval Parameter.
In the document, the interval means how many TIM needs for wake up to get QoS Data.
can you explain more about this?
Second thing is the relationship between exit strategy and power save mode.
In the documents, Legacy Save Mode uses PS-Poll, but WMM uses Qos-NULL.
however exit strategy has same keyword about this.
In the document, it has no detail description about exit strategy.
Can you give more detail information?