-
Notifications
You must be signed in to change notification settings - Fork 317
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nrf_wi: Fix TX power issue #1238
Conversation
prf->temp_volt_backoff.hb_vbt_lt_vlow = 0; | ||
prf->temp_volt_backoff.lb_vbt_lt_low = 0; | ||
prf->temp_volt_backoff.hb_vbt_lt_low = 0; | ||
#endif |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#endif | |
#endif /* CONFIG_NRF700X_RADIO_TEST */ |
prf->temp_volt_backoff.lb_vbt_lt_vlow = 0; | ||
prf->temp_volt_backoff.hb_vbt_lt_vlow = 0; | ||
prf->temp_volt_backoff.lb_vbt_lt_low = 0; | ||
prf->temp_volt_backoff.hb_vbt_lt_low = 0; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is it needed to set some values to 0 specifically. Why can't prf
be initialized to all 0
at the beginning of the function and only the specific values updated later in the function?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please raise manifest PRs too.
@@ -1041,6 +1049,7 @@ int nrf_wifi_phy_rf_params_init(struct nrf_wifi_osal_priv *opriv, | |||
prf->temp_volt_backoff.hb_vbt_lt_vlow = QFN_HB_VBT_LT_VLOW; | |||
prf->temp_volt_backoff.lb_vbt_lt_low = QFN_LB_VBT_LT_LOW; | |||
prf->temp_volt_backoff.hb_vbt_lt_low = QFN_HB_VBT_LT_LOW; | |||
#endif |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#endif | |
#endif |
#endif | |
#endif /* ~CONFIG_NRF700X_RADIO_TEST */ |
@@ -1009,6 +1015,7 @@ int nrf_wifi_phy_rf_params_init(struct nrf_wifi_osal_priv *opriv, | |||
prf->temp_volt_backoff.hb_vbt_lt_vlow = CSP_HB_VBT_LT_VLOW; | |||
prf->temp_volt_backoff.lb_vbt_lt_low = CSP_LB_VBT_LT_LOW; | |||
prf->temp_volt_backoff.hb_vbt_lt_low = CSP_HB_VBT_LT_LOW; | |||
#endif |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#endif | |
#endif /* !CONFIG_NRF700X_RADIO_TEST */ |
5721a6b
to
68dc1b6
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is there a merge commit?
[SHEL-2533]: The problem of TX output power disparity has been resolved, which occurs when the default power is set without utilizing the TX power command, and the power is explicitly set using the TX power command through the Radio test application. Signed-off-by: Mahammadyunus Patil <[email protected]>
It happened accidentally. Code is now rebased. |
SHEL-2533: The problem of TX output power disparity has been resolved, which occurs when the default power is set without utilizing the TX power command, and the power is explicitly set using the TX power command through the Radio test application.