You are not logged in.
Pages: 1
In the current code in 802.11 design, the transmission of RTS frame missing call function wlan_platform_tx_power_to_gain_target() to convert tx_power to antennas gain. The code is lies in line 1975 in wlan_mac_dcf.c .
Offline
Great catch; thanks for finding that. That line should be
curr_tx_pow = wlan_platform_tx_power_to_gain_target(wlan_mac_low_get_current_ctrl_tx_pow());
We must have had our wires crossed on whether the framework was storing the dBm power value or tx gain value when recalling with wlan_mac_low_get_current_ctrl_tx_pow(). We'll get that fixed and rolled into the next release. I really appreciate you finding these issues and pointing them out to us.
Offline
Pages: 1