Skip to content

Commit

Permalink
Merge branch 'bugfix/rssi_correction' into 'master'
Browse files Browse the repository at this point in the history
esp_hosted_ng: Correct signal strength in scan results

See merge request app-frameworks/esp_hosted!287
  • Loading branch information
mantriyogesh committed May 11, 2023
2 parents d515213 + c13c46a commit 3500b25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esp_hosted_ng/host/esp_cmd.c
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ static void process_scan_result_event(struct esp_wifi_device *priv,
bss = CFG80211_INFORM_BSS(priv->adapter->wiphy, chan,
scan_evt->bssid, timestamp,
cap_info, beacon_interval, ie_buf, ie_len,
le32_to_cpu(scan_evt->rssi), GFP_ATOMIC);
(le32_to_cpu(scan_evt->rssi) * 100), GFP_ATOMIC);

if (bss)
cfg80211_put_bss(priv->adapter->wiphy, bss);
Expand Down

0 comments on commit 3500b25

Please sign in to comment.