Searched refs:scan (Results 1 – 25 of 74) sorted by relevance
123
5 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 = 1770 I (2783) scan: SSID IoTNetwork71 I (2783) scan: RSSI -5072 I (2783) scan: Authmode WIFI_AUTH_WPA2_PSK73 I (2783) scan: Pairwise Cipher WIFI_CIPHER_TYPE_CCMP74 I (2793) scan: Group Cipher WIFI_CIPHER_TYPE_CCMP75 I (2793) scan: Channel 577 I (2883) scan: SSID TP-Link_6872[all …]
6 PROJECT_NAME := scan
16 prompt "scan method"19 scan method for the esp32 to use40 bool "fast scan threshold"43 wifi fast scan threshold46 int "fast scan minimum rssi"54 prompt "fast scan weakest authmode"
5 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 …11 …scan`: 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
27 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 |45 …scan` command to scan for AP's that support FTM Responder mode. Before initiating FTM with an exte…48 ftm> scan49 I (476765) ftm_station: sta start to scan55 I (478825) ftm_station: sta scan done58 AP's that support FTM Responder mode can be seen in the scan results. Or setup a SoftAP on another …83 ftm> scan84 I (356414) ftm_station: sta start to scan87 I (358524) ftm_station: sta scan done
188 * @brief ext scan parameters191 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 config203 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 …]
57 cat scan_temp.json >> scan.json66 cat scan_temp.json >> scan.json71 …json --keep-going --parallel-count 1 --parallel-index 1 --size-info ${SIZE_INFO_LOCATION} scan.json72 rm scan.json129 rm -f scan.json
4 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
11 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 filter232 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.
72 int "The maxinum number of 5.0 extend duplicate scan filter"76 The maxinum number of suplicate scan filter249 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.
16 - Support both fast scan and all-channel scan139 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 …]
39 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.
305 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.
10 * `fast_scan` shows how to use fast scan while connecting to an AP..16 * `scan` shows how to scan for all the available APs.
550 wps_parse_scan_result(struct wps_scan_ie *scan) in wps_parse_scan_result() argument558 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 …]
36 I (11125) wpa: scan issued at time=757944226348 I (12825) wpa: scan done received64 I (379539) wpa: scan issued at time=997943986966 I (381979) wpa: scan done received67 I (381979) wpa: WNM: Process scan results for BSS Transition Management
204 * - prov-scan205 - http://wifi-prov.local/prov-scan206 - Endpoint used for starting Wi-Fi scan and receiving scan results226 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…232 …scan 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 true237 …` (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
114 static void scan(char *s, char **test_type, char **host, int *p, char **test_case) in scan() function129 scan(line, &test_type, &host, &port, &test_case); in connection_test()
10 …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->se92 ESP_LOGE(GATTC_TAG, "scan start failed, error status = %x", param->scan_start_cmpl.st
40 …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 failed62 … ESP_LOGE(GATTC_TAG, "scan start failed, error status = %x", param->scan_start_cmpl.status);
42 …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.
1 idf_component_register(SRCS "scan.c"
4 bool "Dump whole adv data and scan response data in example"
6 This example supports the periodic extended scan to scan the extended advertisement.