According to the [datasheet](https://www.espressif.com/sites/default/files/documentation/2c-esp8266_non_os_sdk_api_reference_en.pdf) page 46, the function `sint8 wifi_station_get_rssi(void);` returns `sint8`, but return type in the library is `int32_t`: https://github.com/esp8266/Arduino/blob/bc2b13ae1691f94f9844fa1b0a740cda12107dae/libraries/ESP8266WiFi/src/ESP8266WiFiSTA.cpp#L688 Proposal to change to: ```c++ int8_t ESP8266WiFiSTAClass::RSSI(void); ```