1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-17 12:02:15 +03:00

add rssi function of new SDK 1.1.0

fix warning in hexdump and ESP8266WiFiMulti
This commit is contained in:
Markus Sattler
2015-05-25 09:46:34 +02:00
parent fb171329f3
commit 5a86c20f1e
5 changed files with 12 additions and 8 deletions

View File

@ -255,6 +255,11 @@ int32_t ESP8266WiFiClass::channel(void) {
return wifi_get_channel();
}
int32_t ESP8266WiFiClass::RSSI(void) {
return wifi_station_get_rssi();
}
extern "C"
{
typedef STAILQ_HEAD(, bss_info) bss_info_head_t;