From 70339439ecd1311f5841fff9c69426d09715df23 Mon Sep 17 00:00:00 2001 From: yap Date: Thu, 2 Mar 2023 18:07:00 +0530 Subject: [PATCH] Fixed the improper channel result issue in the scan results of network --- examples/platform/silabs/efr32/rs911x/rsi_if.c | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/platform/silabs/efr32/rs911x/rsi_if.c b/examples/platform/silabs/efr32/rs911x/rsi_if.c index acac100f36bfe5..30b175b54efc67 100644 --- a/examples/platform/silabs/efr32/rs911x/rsi_if.c +++ b/examples/platform/silabs/efr32/rs911x/rsi_if.c @@ -737,6 +737,7 @@ void wfx_rsi_task(void * arg) WFX_RSI_LOG("Inside else"); ap.security = scan->security_mode; ap.rssi = (-1) * scan->rssi_val; + ap.chan = scan->rf_channel; memcpy(&ap.bssid[0], &scan->bssid[0], BSSID_MAX_STR_LEN); (*wfx_rsi.scan_cb)(&ap); }