a59eafbc9d
* fix sdmmc config * Fix warnings in EEPROM from @Curclamas * remove leftover TAG in EEPROM * Initial add of @stickbreaker i2c * Add log_n * fix warnings when log is off * i2c code clean up and reorganization * add flags to interrupt allocator * fix sdmmc config * Fix warnings in EEPROM from @Curclamas * remove leftover TAG in EEPROM * fix errors with latest IDF * fix debug optimization (#1365) incorrect optimization for debugging tick markers. * Fix some missing BT header * Change BTSerial log calls * Update BLE lib * Arduino-ESP32 release management scripted (#1515) * Calculate an absolute path for a custom partitions table (#1452) * * Arduino-ESP32 release management scripted (ready-to-merge) * * secure env for espressif/arduino-esp32 * * build tests enabled * gitter webhook enabled * * gitter room link fixed * better comment * * filepaths fixed * BT Serial adjustments * * don't run sketch builds & tests for tagged builds * Return false from WiFi.hostByName() if hostname is not resolved * Free BT Memory when BT is not used * WIFI_MODE_NULL is not supported anymore * Select some key examples to build with PlatformIO to save some time * Update BLE lib * Fixed BLE lib * Major WiFi overhaul - auto reconnect on connection loss now works - moved to event groups - some code clean up and procedure optimizations - new methods to get a more elaborate system ststus * Add cmake tests to travis * Add initial AsyncUDP * Add NetBIOS lib and fix CMake includes * Add Initial WebServer * Fix WebServer and examples * travis not quiting on build fail * Try different travis build * Update IDF to aaf1239 * Fix WPS Example * fix script permission and add some fail tests to sketch builder * Add missing space in WiFiClient::write(Stream &stream)
268 lines
7.5 KiB
C++
268 lines
7.5 KiB
C++
/*
|
|
ESP8266WiFiScan.cpp - WiFi library for esp8266
|
|
|
|
Copyright (c) 2014 Ivan Grokhotkov. All rights reserved.
|
|
This file is part of the esp8266 core for Arduino environment.
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with this library; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
Reworked on 28 Dec 2015 by Markus Sattler
|
|
|
|
*/
|
|
|
|
#include "WiFi.h"
|
|
#include "WiFiGeneric.h"
|
|
#include "WiFiScan.h"
|
|
|
|
extern "C" {
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <inttypes.h>
|
|
#include <string.h>
|
|
#include <esp_err.h>
|
|
#include <esp_wifi.h>
|
|
#include <esp_event_loop.h>
|
|
#include <esp32-hal.h>
|
|
#include <lwip/ip_addr.h>
|
|
#include "lwip/err.h"
|
|
}
|
|
|
|
bool WiFiScanClass::_scanAsync = false;
|
|
|
|
uint16_t WiFiScanClass::_scanCount = 0;
|
|
void* WiFiScanClass::_scanResult = 0;
|
|
|
|
/**
|
|
* Start scan WiFi networks available
|
|
* @param async run in async mode
|
|
* @param show_hidden show hidden networks
|
|
* @return Number of discovered networks
|
|
*/
|
|
int16_t WiFiScanClass::scanNetworks(bool async, bool show_hidden, bool passive, uint32_t max_ms_per_chan)
|
|
{
|
|
if(WiFiGenericClass::getStatusBits() & WIFI_SCANNING_BIT) {
|
|
return WIFI_SCAN_RUNNING;
|
|
}
|
|
|
|
WiFiScanClass::_scanAsync = async;
|
|
|
|
WiFi.enableSTA(true);
|
|
|
|
scanDelete();
|
|
|
|
wifi_scan_config_t config;
|
|
config.ssid = 0;
|
|
config.bssid = 0;
|
|
config.channel = 0;
|
|
config.show_hidden = show_hidden;
|
|
if(passive){
|
|
config.scan_type = WIFI_SCAN_TYPE_PASSIVE;
|
|
config.scan_time.passive = max_ms_per_chan;
|
|
} else {
|
|
config.scan_type = WIFI_SCAN_TYPE_ACTIVE;
|
|
config.scan_time.active.min = 100;
|
|
config.scan_time.active.max = max_ms_per_chan;
|
|
}
|
|
if(esp_wifi_scan_start(&config, false) == ESP_OK) {
|
|
WiFiGenericClass::clearStatusBits(WIFI_SCAN_DONE_BIT);
|
|
WiFiGenericClass::setStatusBits(WIFI_SCANNING_BIT);
|
|
|
|
if(WiFiScanClass::_scanAsync) {
|
|
return WIFI_SCAN_RUNNING;
|
|
}
|
|
if(WiFiGenericClass::waitStatusBits(WIFI_SCAN_DONE_BIT, 10000)){
|
|
return (int16_t) WiFiScanClass::_scanCount;
|
|
}
|
|
}
|
|
return WIFI_SCAN_FAILED;
|
|
}
|
|
|
|
|
|
/**
|
|
* private
|
|
* scan callback
|
|
* @param result void *arg
|
|
* @param status STATUS
|
|
*/
|
|
void WiFiScanClass::_scanDone()
|
|
{
|
|
esp_wifi_scan_get_ap_num(&(WiFiScanClass::_scanCount));
|
|
if(WiFiScanClass::_scanCount) {
|
|
WiFiScanClass::_scanResult = new wifi_ap_record_t[WiFiScanClass::_scanCount];
|
|
if(!WiFiScanClass::_scanResult || esp_wifi_scan_get_ap_records(&(WiFiScanClass::_scanCount), (wifi_ap_record_t*)_scanResult) != ESP_OK) {
|
|
WiFiScanClass::_scanCount = 0;
|
|
}
|
|
}
|
|
WiFiGenericClass::setStatusBits(WIFI_SCAN_DONE_BIT);
|
|
WiFiGenericClass::clearStatusBits(WIFI_SCANNING_BIT);
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param i specify from which network item want to get the information
|
|
* @return bss_info *
|
|
*/
|
|
void * WiFiScanClass::_getScanInfoByIndex(int i)
|
|
{
|
|
if(!WiFiScanClass::_scanResult || (size_t) i >= WiFiScanClass::_scanCount) {
|
|
return 0;
|
|
}
|
|
return reinterpret_cast<wifi_ap_record_t*>(WiFiScanClass::_scanResult) + i;
|
|
}
|
|
|
|
/**
|
|
* called to get the scan state in Async mode
|
|
* @return scan result or status
|
|
* -1 if scan not fin
|
|
* -2 if scan not triggered
|
|
*/
|
|
int16_t WiFiScanClass::scanComplete()
|
|
{
|
|
if(WiFiGenericClass::getStatusBits() & WIFI_SCAN_DONE_BIT) {
|
|
return WiFiScanClass::_scanCount;
|
|
}
|
|
|
|
if(WiFiGenericClass::getStatusBits() & WIFI_SCANNING_BIT) {
|
|
return WIFI_SCAN_RUNNING;
|
|
}
|
|
|
|
return WIFI_SCAN_FAILED;
|
|
}
|
|
|
|
/**
|
|
* delete last scan result from RAM
|
|
*/
|
|
void WiFiScanClass::scanDelete()
|
|
{
|
|
WiFiGenericClass::clearStatusBits(WIFI_SCAN_DONE_BIT);
|
|
if(WiFiScanClass::_scanResult) {
|
|
delete[] reinterpret_cast<wifi_ap_record_t*>(WiFiScanClass::_scanResult);
|
|
WiFiScanClass::_scanResult = 0;
|
|
WiFiScanClass::_scanCount = 0;
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* loads all infos from a scanned wifi in to the ptr parameters
|
|
* @param networkItem uint8_t
|
|
* @param ssid const char**
|
|
* @param encryptionType uint8_t *
|
|
* @param RSSI int32_t *
|
|
* @param BSSID uint8_t **
|
|
* @param channel int32_t *
|
|
* @return (true if ok)
|
|
*/
|
|
bool WiFiScanClass::getNetworkInfo(uint8_t i, String &ssid, uint8_t &encType, int32_t &rssi, uint8_t* &bssid, int32_t &channel)
|
|
{
|
|
wifi_ap_record_t* it = reinterpret_cast<wifi_ap_record_t*>(_getScanInfoByIndex(i));
|
|
if(!it) {
|
|
return false;
|
|
}
|
|
ssid = (const char*) it->ssid;
|
|
encType = it->authmode;
|
|
rssi = it->rssi;
|
|
bssid = it->bssid;
|
|
channel = it->primary;
|
|
return true;
|
|
}
|
|
|
|
|
|
/**
|
|
* Return the SSID discovered during the network scan.
|
|
* @param i specify from which network item want to get the information
|
|
* @return ssid string of the specified item on the networks scanned list
|
|
*/
|
|
String WiFiScanClass::SSID(uint8_t i)
|
|
{
|
|
wifi_ap_record_t* it = reinterpret_cast<wifi_ap_record_t*>(_getScanInfoByIndex(i));
|
|
if(!it) {
|
|
return String();
|
|
}
|
|
return String(reinterpret_cast<const char*>(it->ssid));
|
|
}
|
|
|
|
|
|
/**
|
|
* Return the encryption type of the networks discovered during the scanNetworks
|
|
* @param i specify from which network item want to get the information
|
|
* @return encryption type (enum wl_enc_type) of the specified item on the networks scanned list
|
|
*/
|
|
wifi_auth_mode_t WiFiScanClass::encryptionType(uint8_t i)
|
|
{
|
|
wifi_ap_record_t* it = reinterpret_cast<wifi_ap_record_t*>(_getScanInfoByIndex(i));
|
|
if(!it) {
|
|
return WIFI_AUTH_OPEN;
|
|
}
|
|
return it->authmode;
|
|
}
|
|
|
|
/**
|
|
* Return the RSSI of the networks discovered during the scanNetworks
|
|
* @param i specify from which network item want to get the information
|
|
* @return signed value of RSSI of the specified item on the networks scanned list
|
|
*/
|
|
int32_t WiFiScanClass::RSSI(uint8_t i)
|
|
{
|
|
wifi_ap_record_t* it = reinterpret_cast<wifi_ap_record_t*>(_getScanInfoByIndex(i));
|
|
if(!it) {
|
|
return 0;
|
|
}
|
|
return it->rssi;
|
|
}
|
|
|
|
|
|
/**
|
|
* return MAC / BSSID of scanned wifi
|
|
* @param i specify from which network item want to get the information
|
|
* @return uint8_t * MAC / BSSID of scanned wifi
|
|
*/
|
|
uint8_t * WiFiScanClass::BSSID(uint8_t i)
|
|
{
|
|
wifi_ap_record_t* it = reinterpret_cast<wifi_ap_record_t*>(_getScanInfoByIndex(i));
|
|
if(!it) {
|
|
return 0;
|
|
}
|
|
return it->bssid;
|
|
}
|
|
|
|
/**
|
|
* return MAC / BSSID of scanned wifi
|
|
* @param i specify from which network item want to get the information
|
|
* @return String MAC / BSSID of scanned wifi
|
|
*/
|
|
String WiFiScanClass::BSSIDstr(uint8_t i)
|
|
{
|
|
char mac[18] = { 0 };
|
|
wifi_ap_record_t* it = reinterpret_cast<wifi_ap_record_t*>(_getScanInfoByIndex(i));
|
|
if(!it) {
|
|
return String();
|
|
}
|
|
sprintf(mac, "%02X:%02X:%02X:%02X:%02X:%02X", it->bssid[0], it->bssid[1], it->bssid[2], it->bssid[3], it->bssid[4], it->bssid[5]);
|
|
return String(mac);
|
|
}
|
|
|
|
int32_t WiFiScanClass::channel(uint8_t i)
|
|
{
|
|
wifi_ap_record_t* it = reinterpret_cast<wifi_ap_record_t*>(_getScanInfoByIndex(i));
|
|
if(!it) {
|
|
return 0;
|
|
}
|
|
return it->primary;
|
|
}
|
|
|