Home
last modified time | relevance | path

Searched refs:scan (Results 1 – 25 of 74) sorted by relevance

123

/hal_espressif-3.5.0/examples/wifi/scan/
DREADME.md5 This example shows how to scan for available set of APs.
23 * Use `Max size of scan list` to set the maximum nunber of access points in the list.
69 I (2783) scan: Total APs scanned = 17
70 I (2783) scan: SSID IoTNetwork
71 I (2783) scan: RSSI -50
72 I (2783) scan: Authmode WIFI_AUTH_WPA2_PSK
73 I (2783) scan: Pairwise Cipher WIFI_CIPHER_TYPE_CCMP
74 I (2793) scan: Group Cipher WIFI_CIPHER_TYPE_CCMP
75 I (2793) scan: Channel 5
77 I (2883) scan: SSID TP-Link_6872
[all …]
DMakefile6 PROJECT_NAME := scan
/hal_espressif-3.5.0/examples/wifi/fast_scan/main/
DKconfig.projbuild16 prompt "scan method"
19 scan method for the esp32 to use
40 bool "fast scan threshold"
43 wifi fast scan threshold
46 int "fast scan minimum rssi"
54 prompt "fast scan weakest authmode"
/hal_espressif-3.5.0/examples/wifi/fast_scan/
DREADME.md5 This example shows how to use the scan functionality of the Wi-Fi driver of ESP for connecting to a…
7 Two scan methods are supported: fast scan and all channel scan.
9 * `fast scan`: in this mode, scan finishes right after a matching AP is detected, even if channels …
11scan`: scan will end only after all channels are scanned; the Wi-Fi driver will store 4 of the ful…
13 After the scan, the Wi-Fi driver will try to connect. Because it needs to to allocate precious dyna…
87 I (2086) scan: got ip:192.168.68.110
/hal_espressif-3.5.0/examples/wifi/ftm/
DREADME.md27 With this example, users can scan for AP's that support FTM Responder role and perform FTM procedur…
38 | 2. Use 'scan' command to search for external AP's |
45scan` command to scan for AP's that support FTM Responder mode. Before initiating FTM with an exte…
48 ftm> scan
49 I (476765) ftm_station: sta start to scan
55 I (478825) ftm_station: sta scan done
58 AP's that support FTM Responder mode can be seen in the scan results. Or setup a SoftAP on another …
83 ftm> scan
84 I (356414) ftm_station: sta start to scan
87 I (358524) ftm_station: sta scan done
/hal_espressif-3.5.0/examples/bluetooth/bluedroid/ble_50/peroidic_sync/tutorial/
DPeriodic_Sync_Example_Walkthrough.md188 * @brief ext scan parameters
191 esp_ble_addr_type_t own_addr_type; /*!< ext scan own addresss type */
192 esp_ble_scan_filter_t filter_policy; /*!< ext scan filter policy */
193 esp_ble_scan_duplicate_t scan_duplicate; /*!< ext scan duplicate scan */
194 esp_ble_ext_scan_cfg_mask_t cfg_mask; /*!< ext scan config mask */
195 esp_ble_ext_scan_cfg_t uncoded_cfg; /*!< ext scan uncoded config parameters */
196 esp_ble_ext_scan_cfg_t coded_cfg; /*!< ext scan coded config parameters */
200 * @brief ext scan config
203 esp_ble_scan_type_t scan_type; /*!< ext scan type */
204 uint16_t scan_interval; /*!< ext scan interval. This is defined as the ti
[all …]
/hal_espressif-3.5.0/tools/ci/
Dbuild_template_app.sh57 cat scan_temp.json >> scan.json
66 cat scan_temp.json >> scan.json
71 …json --keep-going --parallel-count 1 --parallel-index 1 --size-info ${SIZE_INFO_LOCATION} scan.json
72 rm scan.json
129 rm -f scan.json
/hal_espressif-3.5.0/examples/bluetooth/bluedroid/ble/gatt_server/main/
DKconfig.projbuild4 bool "Use raw data for advertising packets and scan response data"
6 …If this config item is set, raw binary data will be used to generate advertising & scan response d…
10 … If this config item is unset, advertising & scan response data is provided via a higher-level
/hal_espressif-3.5.0/components/bt/controller/esp32c3/
DKconfig.in11 scan , sync and adv(periodic adv, multi-adv).
57 int "The maxinum number of 5.0 extend duplicate scan filter"
61 The maxinum number of suplicate scan filter
232 This select enables parameters setting of BLE scan duplicate.
275 int "Maximum number of devices in scan duplicate filter"
280 Maximum number of devices which can be recorded in scan duplicate filter.
284 bool "Special duplicate scan mechanism for BLE Mesh scan"
288 This enables the BLE scan duplicate for special BLE Mesh scan.
291 int "Maximum number of Mesh adv packets in scan duplicate filter"
296 Maximum number of adv packets which can be recorded in duplicate scan cache for BLE Mesh.
/hal_espressif-3.5.0/examples/bluetooth/bluedroid/ble/ble_throughput/throughput_server/main/
DKconfig.projbuild4 bool "Use raw data for advertising packets and scan response data"
6 …If this config item is set, raw binary data will be used to generate advertising & scan response d…
10 … If this config item is unset, advertising & scan response data is provided via a higher-level
/hal_espressif-3.5.0/components/bt/controller/esp32s3/
DKconfig.in72 int "The maxinum number of 5.0 extend duplicate scan filter"
76 The maxinum number of suplicate scan filter
249 This select enables parameters setting of BLE scan duplicate.
292 int "Maximum number of devices in scan duplicate filter"
297 Maximum number of devices which can be recorded in scan duplicate filter.
301 bool "Special duplicate scan mechanism for BLE Mesh scan"
305 This enables the BLE scan duplicate for special BLE Mesh scan.
308 int "Maximum number of Mesh adv packets in scan duplicate filter"
313 Maximum number of adv packets which can be recorded in duplicate scan cache for BLE Mesh.
/hal_espressif-3.5.0/docs/en/api-guides/
Dwifi.rst16 - Support both fast scan and all-channel scan
139 The scan-done event is triggered by :cpp:func:`esp_wifi_scan_start()` and will arise in the followi…
141 …- The scan is completed, e.g., the target AP is found successfully, or all channels have been scan…
142 - The scan is stopped by :cpp:func:`esp_wifi_scan_stop()`.
143 …_wifi_scan_start()` is called before the scan is completed. A new scan will override the current s…
145 The scan-done event will not arise in the following scenarios:
147 - It is a blocked scan.
148 - The scan is caused by :cpp:func:`esp_wifi_connect()`.
150 …he Wi-Fi driver to free the internal memory which is allocated during the scan **(do not forget to…
170 …fails to set up a connection with the AP due to certain reasons, e.g. the scan fails to find the t…
[all …]
/hal_espressif-3.5.0/examples/common_components/protocol_examples_common/
DKconfig.projbuild39 WiFi scan method:
41 If "Fast" is selected, scan will end after find SSID match AP.
43 If "All Channel" is selected, scan will end after scan all the channel.
58 The minimum rssi to accept in the scan mode.
64 The weakest authmode to accept in the scan mode.
93 If "Signal" is selected, Sort matched APs in scan list by RSSI.
95 If "Security" is selected, Sort matched APs in scan list by security mode.
/hal_espressif-3.5.0/components/bt/controller/esp32/
DKconfig.in305 This select enables parameters setting of BLE scan duplicate.
348 int "Maximum number of devices in scan duplicate filter"
353 Maximum number of devices which can be recorded in scan duplicate filter.
357 bool "Special duplicate scan mechanism for BLE Mesh scan"
361 This enables the BLE scan duplicate for special BLE Mesh scan.
364 int "Maximum number of Mesh adv packets in scan duplicate filter"
369 Maximum number of adv packets which can be recorded in duplicate scan cache for BLE Mesh.
373 bool "BLE full scan feature supported"
377 The full scan function is mainly used to provide BLE scan performance.
378 … This is required for scenes with high scan performance requirements, such as BLE Mesh scenes.
/hal_espressif-3.5.0/examples/wifi/
DREADME.md10 * `fast_scan` shows how to use fast scan while connecting to an AP..
16 * `scan` shows how to scan for all the available APs.
/hal_espressif-3.5.0/components/wpa_supplicant/esp_supplicant/src/
Desp_wps.c550 wps_parse_scan_result(struct wps_scan_ie *scan) in wps_parse_scan_result() argument
558 strncpy(tmp, (char *)&scan->ssid[2], (int)scan->ssid[1]); in wps_parse_scan_result()
562 if (!sm->is_wps_scan || !scan->bssid) { in wps_parse_scan_result()
573 if (!scan->rsn && !scan->wpa && (scan->capinfo & WIFI_CAPINFO_PRIVACY)) { in wps_parse_scan_result()
588 ) && scan->wps) { in wps_parse_scan_result()
590 struct wpabuf *buf = wpabuf_alloc_copy(scan->wps + 6, scan->wps[1] - 4); in wps_parse_scan_result()
607 if (os_memcmp(sm->dis_ap_list[count].bssid, scan->bssid, ETH_ALEN) == 0) { in wps_parse_scan_result()
608 wpa_printf(MSG_INFO, "discard ap bssid "MACSTR, MAC2STR(scan->bssid)); in wps_parse_scan_result()
619 strncpy((char *)sm->config.ssid, (char *)&scan->ssid[2], (int)scan->ssid[1]); in wps_parse_scan_result()
620 if (scan->bssid && memcmp(sm->config.bssid, scan->bssid, ETH_ALEN) != 0) { in wps_parse_scan_result()
[all …]
/hal_espressif-3.5.0/examples/wifi/roaming/
DREADME.md36 I (11125) wpa: scan issued at time=7579442263
48 I (12825) wpa: scan done received
64 I (379539) wpa: scan issued at time=9979439869
66 I (381979) wpa: scan done received
67 I (381979) wpa: WNM: Process scan results for BSS Transition Management
/hal_espressif-3.5.0/docs/en/api-reference/provisioning/
Dwifi_provisioning.rst204 * - prov-scan
205 - http://wifi-prov.local/prov-scan
206 - Endpoint used for starting Wi-Fi scan and receiving scan results
226 After session establishment, client can also request Wi-Fi scan results from the device. The result…
228 * `scan_start` - For starting Wi-Fi scan with various options :
231 …* `passive` (input) - If true scan is started in passive mode (this may be slower) instead of acti…
232scan all channels in one go (when zero) or perform scanning of channels in groups, with 120ms dela…
236 * `scan_finished` (output) - When scan has finished this returns true
237 …` (output) - This gives the total number of results obtained till now. If scan is yet happening th…
238 * `scan_result` - For fetching scan results. This can be called even if scan is still on going
/hal_espressif-3.5.0/tools/test_apps/protocols/openssl/main/
Dconnect_test.c114 static void scan(char *s, char **test_type, char **host, int *p, char **test_case) in scan() function
129 scan(line, &test_type, &host, &port, &test_case); in connection_test()
/hal_espressif-3.5.0/examples/bluetooth/bluedroid/ble_50/ble50_security_client/tutorial/
Dble50_security_client_Example_Walkthrough.md10 …ity GATT Client implementation, for the more infor about extended scan , periodic scan please refe…
66 …AP_BLE_SET_LOCAL_PRIVACY_COMPLETE_EVT`` is triggered which is used to set scan parameters and star…
77 ESP_LOGE(GATTC_TAG, "set extend scan params error, error code = %x", scan_ret);
82 ESP_LOGE(GATTC_TAG, "extend scan parameters set failed, error status = %x", param->se
92 ESP_LOGE(GATTC_TAG, "scan start failed, error status = %x", param->scan_start_cmpl.st
/hal_espressif-3.5.0/examples/bluetooth/bluedroid/ble/gatt_security_client/tutorial/
DGatt_Security_Client_Example_Walkthrough.md40 …AP_BLE_SET_LOCAL_PRIVACY_COMPLETE_EVT`` is triggered which is used to set scan parameters and star…
50 ESP_LOGE(GATTC_TAG, "set scan params error, error code = %x", scan_ret);
60 //scan start complete event to indicate scan start successfully or failed
62 … ESP_LOGE(GATTC_TAG, "scan start failed, error status = %x", param->scan_start_cmpl.status);
/hal_espressif-3.5.0/examples/bluetooth/bluedroid/ble/ble_ibeacon/
DREADME.md42 …able the **BLE Scan Duplicate Options**, the maximum number of devices in scan duplicate filter de…
45 In the iBeacon receiver demo, the scan result will be posted to `ESP_GAP_SEARCH_INQ_RES_EVT` event:
67 …r initializing the Bluetooth protocol stack, and the iBeacon receiver will scan the iBeacon packet.
/hal_espressif-3.5.0/examples/wifi/scan/main/
DCMakeLists.txt1 idf_component_register(SRCS "scan.c"
/hal_espressif-3.5.0/examples/bluetooth/bluedroid/ble/gatt_client/main/
DKconfig.projbuild4 bool "Dump whole adv data and scan response data in example"
/hal_espressif-3.5.0/examples/bluetooth/bluedroid/ble_50/peroidic_sync/
DREADME.md6 This example supports the periodic extended scan to scan the extended advertisement.

123