mbed-os/components/wifi/esp8266-driver
Juha Ylinen 273f7c6fd6 ESP8266: Fix compilation error when default interface is enabled
Compile [  1.3%]: ESP8266Interface.cpp
[Error] ESP8266Interface.cpp@582,33: cannot declare static function inside another function
[Error] ESP8266Interface.cpp@583,13: cannot convert 'ESP8266Interface (*)()' to 'WiFiInterface*' in return
Failed to build library
2018-09-03 12:56:26 +03:00
..
ESP8266 Add ESP8266 driver v1.6 2018-09-01 12:36:28 -05:00
ESP8266Interface.cpp ESP8266: Fix compilation error when default interface is enabled 2018-09-03 12:56:26 +03:00
ESP8266Interface.h Add ESP8266 driver v1.6 2018-09-01 12:36:28 -05:00
README.md Add ESP8266 driver v1.6 2018-09-01 12:36:28 -05:00
mbed_lib.json Add ESP8266 driver v1.6 2018-09-01 12:36:28 -05:00

README.md

ESP8266 WiFi driver for Mbed OS

The Mbed OS driver for the ESP8266 WiFi module.

Firmware version

ESP8266 modules come in different shapes and formats, but the most important factor is the firmware version in it. To make sure that the firmware in your module is compatible with Mbed OS, follow the Update guide.

Restrictions

  • The ESP8266 WiFi module does not allow the TCP client to bind on a specific port.
  • Setting up a UDP server is not possible.
  • The serial port does not have hardware flow control enabled. The AT command set does not either have a way to limit the download rate. Therefore, downloading anything larger than the serial port input buffer is unreliable. An application should be able to read fast enough to stay ahead of the network. This affects mostly the TCP protocol where data would be lost with no notification. On UDP, this would lead to only packet losses which the higher layer protocol should recover from.