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
It is advisable to update the [AT firmware](https://www.espressif.com/en/support/download/at?keys=) at least to version
12
-
1.7.0.0
11
+
We advise updating the [AT firmware](https://www.espressif.com/en/support/download/at?keys=)to at least version
12
+
1.7.0.0.
13
13
14
-
v1.6 driver supports AT firmware up to version 1.6.2. Mbed OS 5.10 supports AT firmwares up to version 1.6.2. v1.7
15
-
driver found from Mbed OS 5.11 allows usage of AT firmware version 1.7.0.0.
14
+
The `v1.6` driver supports AT firmware up to version 1.6.2. Mbed OS 5.10 supports AT firmware up to version 1.6.2. The `v1.7`
15
+
driver found from Mbed OS 5.11 allows you to use AT firmware version 1.7.0.0.
16
16
17
-
**NOTE**Here we are talking about AT firmware version - not SDK version. SDK firmware without AT is no use.
17
+
**NOTE**This refers to AT firmware version, not SDK version.
18
18
19
-
**NOTE** AT firmware version numbers and driver version numbers do not match to each other. E.g., driver version v1.7
20
-
does imply that it will support AT FW version 1.7.0.0
19
+
**NOTE** AT firmware version numbers and driver version numbers do not necessarily correspond: driver version `v1.7`
20
+
does not imply AT FW version 1.7.0.0 support.
21
21
22
22
## Restrictions
23
23
24
-
- The ESP8266 WiFi module does not allow the TCP client to bind on a specific port.
24
+
- The ESP8266 Wi-Fi module does not allow the TCP client to bind on a specific port.
25
25
- Setting up a UDP server is not possible.
26
-
- The serial port does not have hardware flow control enabled by default. The AT command set does not either have a way
27
-
to limit the download rate. Therefore, downloading anything larger than the serial port input buffer is unreliable -
28
-
unless [AT firmware](https://www.espressif.com/en/support/download/at?keys=) version 1.7.0 or later is used. With older
29
-
firmware an application should be able to read fast enough to stay ahead of the network. This affects mostly the TCP
30
-
protocol where data would be lost with no notification. On UDP - with all firmware versions - this would lead to only
31
-
packet losses which the higher layer protocol should recover from.
26
+
- The serial port does not have hardware flow control enabled by default. Additionally, the AT command set does not have a method for limiting the download rate. Therefore, downloading anything larger than the serial port input buffer is unreliable
27
+
unless you use [AT firmware](https://www.espressif.com/en/support/download/at?keys=) version 1.7.0 or later. With older
28
+
firmware, an application should be able to read fast enough to stay ahead of the network. This applies mostly to TCP
29
+
protocol, where data would be lost without notification. With all firmware versions on UDP, this would lead to packet loss that the higher-layer protocol should recover from.
32
30
33
31
## Mandatory configuration
34
-
 configuration assumes Arduino form factor. Please adjust according to which board is in
35
-
use. Parameters are overridable from your app config file.
32
+
33
+
 configuration assumes Arduino form factor. Please adjust according to your board. You can override parameters from your app config file.
36
34
37
35
Least one is expected to check are the following configuration parameters
0 commit comments