From 43fc9f1727e78d52cbb98d780fde42a3711bb6f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20St=C3=B6r?= Date: Mon, 23 Apr 2018 20:54:38 +0200 Subject: [PATCH] Fix WiFi status formatting issue (bullet list) --- doc/esp8266wifi/station-class.rst | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/doc/esp8266wifi/station-class.rst b/doc/esp8266wifi/station-class.rst index bf06e9a7fb..ec7ddce973 100644 --- a/doc/esp8266wifi/station-class.rst +++ b/doc/esp8266wifi/station-class.rst @@ -427,7 +427,13 @@ Return the status of Wi-Fi connection. WiFi.status() -Function returns one of the following connection statuses: \* ``WL_CONNECTED`` after successful connection is established \* ``WL_NO_SSID_AVAIL``\ in case configured SSID cannot be reached \* ``WL_CONNECT_FAILED`` if password is incorrect \* ``WL_IDLE_STATUS`` when Wi-Fi is in process of changing between statuses \* ``WL_DISCONNECTED`` if module is not configured in station mode +Function returns one of the following connection statuses: + +- ``WL_CONNECTED`` after successful connection is established +- ``WL_NO_SSID_AVAIL`` in case configured SSID cannot be reached +- ``WL_CONNECT_FAILED`` if password is incorrect +- ``WL_IDLE_STATUS`` when Wi-Fi is in process of changing between statuses +- ``WL_DISCONNECTED`` if module is not configured in station mode Returned value is type of ``wl_status_t`` defined in `wl\_definitions.h `__