You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 28, 2026. It is now read-only.
Trying to start a client connection on a sock already used
failed and prevent to write other data.
endPacket() allows to close a client connection properly
if needed.
Fixes #14
Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
*`status()`: less verbose; only `WL_CONNECTED`, `WL_NO_SHIELD`, `WL_IDLE_STATUS`, `WL_NO_SSID_AVAIL`, `WL_SCAN_COMPLETED`, `WL_CONNECT_FAILED` implemented.
17
+
*`setMac()`: function added to set MAC address of the Wifi module.
18
18
19
19
### WiFiClientST :
20
-
***available()**: not supported. Always returns 1.
21
-
***peek()**: not supported. Always returns 0.
22
-
***flush()**: empty function. Do nothing (already empty in Arduino Wifi API).
20
+
*`available()`: not supported. Always returns 1.
21
+
*`peek()`: not supported. Always returns 0.
22
+
*`flush()`: empty function. Do nothing (already empty in Arduino Wifi API).
23
23
24
24
### WiFiUdpST:
25
-
***endPacket()**: not supported. Always returns 1. The data are sent when you call write().
26
-
***available()**: not supported. Always returns 0.
27
-
***parsePAcket()**: not supported. Always returns 0.
28
-
***peek()**: not supported. Always returns 0.
29
-
***flush()**: Do nothing (already empty in Arduino Wifi API).
25
+
*`endPacket()`:The data are sent when you call `write()`. By default, do nothing and always return 1. If `true` is passed as argument the client connection started by `beginPacket()` is closed.
26
+
*`available()`: not supported. Always returns 0.
27
+
*`parsePAcket()`: not supported. Always returns 0.
28
+
*`peek()`: not supported. Always returns 0.
29
+
*`flush()`: Do nothing (already empty in Arduino Wifi API).
30
30
31
31
### WiFiServerST:
32
-
***status()**: Do nothing (always returns 1).
32
+
*`status()`: Do nothing (always returns 1).
33
33
34
34
## Version
35
35
36
-
The WiFi library is based on FW "Inventek eS-WiFi ISM43362-M3G-L44-SPI C3.5.2.5.STM".
36
+
> [!IMPORTANT]
37
+
> The WiFi library is based on FW "Inventek eS-WiFi ISM43362-M3G-L44-SPI C3.5.2.5.STM".
38
+
39
+
> [!CAUTION]
40
+
> * WiFiServerST is not stable due to issue of the current WiFi firmware version: C3.5.2.5.STM
41
+
> * WEP-128 is not functional. Issue probably due to the current WiFi firmware version: C3.5.2.5.STM
42
+
> * UDP server is not functional with the current WiFi firmware version: C3.5.2.5.STM while it was with FW version C3.5.2.3.BETA9 (#12)
37
43
38
44
To update the Inventek ISM-43362 Wi-Fi module firmware, please read the readme file for instructions
0 commit comments