ESP-IDF
roaming_app::scanned_aps
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading (1/5)...
Files
loading (3/5)...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
roaming_app::scanned_aps
roaming_app::scanned_aps field
Syntax
Show:
Summary
Declaration
from
esp_roaming.h:95
struct
scanned_ap_info
scanned_aps
;
Examples
References
from
examples
Code
Location
Referrer
struct
scanned_ap_info
scanned_aps
;
esp_roaming.h:95
for
(
i
=
0
;
i
<
g_roaming_app
.
scanned_aps
.
current_count
;
i
++
)
{
roaming_app.c:555
parse_scan_results_and_roam()
rssi_diff
=
g_roaming_app
.
scanned_aps
.
ap_records
[
i
]
.
rssi
-
ap_info
.
rssi
;
roaming_app.c:556
parse_scan_results_and_roam()
MAC2STR
(
g_roaming_app
.
scanned_aps
.
ap_records
[
i
]
.
bssid
)
,
MAC2STR
(
ap_info
.
bssid
)
,
roaming_app.c:558
parse_scan_results_and_roam()
g_roaming_app
.
scanned_aps
.
ap_records
[
i
]
.
rssi
,
ap_info
.
rssi
,
roaming_app.c:559
parse_scan_results_and_roam()
rssi_diff
,
rssi_threshold
,
best_rssi_diff
,
g_roaming_app
.
scanned_aps
.
ap_records
[
i
]
.
authmode
)
;
roaming_app.c:560
parse_scan_results_and_roam()
if
(
(
memcmp
(
g_roaming_app
.
scanned_aps
.
ap_records
[
i
]
.
bssid
,
ap_info
.
bssid
,
ETH_ALEN
)
!=
0
)
&&
roaming_app.c:561
parse_scan_results_and_roam()
candidate_profile_match
(
g_roaming_app
.
scanned_aps
.
ap_records
[
i
]
)
&&
rssi_diff
>
best_rssi_diff
)
{
roaming_app.c:562
parse_scan_results_and_roam()
os_memcpy
(
best_ap
->
bssid
,
g_roaming_app
.
scanned_aps
.
ap_records
[
best_ap_index
]
.
bssid
,
ETH_ALEN
)
;
roaming_app.c:573
parse_scan_results_and_roam()
best_ap
->
channel
=
g_roaming_app
.
scanned_aps
.
ap_records
[
best_ap_index
]
.
primary
;
roaming_app.c:574
parse_scan_results_and_roam()
g_roaming_app
.
scanned_aps
.
current_count
=
MAX_CANDIDATE_COUNT
;
roaming_app.c:593
scan_done_event_handler()
esp_wifi_scan_get_ap_records
(
&
g_roaming_app
.
scanned_aps
.
current_count
,
g_roaming_app
.
scanned_aps
.
ap_records
)
;
roaming_app.c:594
scan_done_event_handler()
print_ap_records
(
&
g_roaming_app
.
scanned_aps
)
;
roaming_app.c:595
scan_done_event_handler()
gettimeofday
(
&
g_roaming_app
.
scanned_aps
.
time
,
NULL
)
;
roaming_app.c:606
conduct_scan()
os_memset
(
&
g_roaming_app
.
scanned_aps
,
0
,
sizeof
(
struct
scanned_ap_info
)
)
;
roaming_app.c:608
conduct_scan()
if
(
time_diff_sec
(
&
now
,
&
g_roaming_app
.
scanned_aps
.
time
)
>
SCAN_RESULTS_USABILITY_WINDOW
)
{
roaming_app.c:625
determine_best_ap()
gettimeofday
(
&
g_roaming_app
.
scanned_aps
.
time
,
NULL
)
;
roaming_app.c:780
init_scan_params()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
roaming_app::scanned_aps
is read by 5 functions:
All items filtered out
roaming_app::scanned_aps
parse_scan_results_and_roam()
scan_done_event_handler()
conduct_scan()
determine_best_ap()
init_scan_params()
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out