Skip to content

Commit 3fda5f7

Browse files
committed
Merge pull request #1394 from Links2004/master
update SDK to 1.5.1_16_01_08
2 parents 39f36d4 + f8cf215 commit 3fda5f7

18 files changed

+35
-4
lines changed

libraries/ESP8266WiFi/src/ESP8266WiFiAP.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -234,15 +234,15 @@ bool ESP8266WiFiAPClass::softAPConfig(IPAddress local_ip, IPAddress gateway, IPA
234234
// check config
235235
if(wifi_get_ip_info(SOFTAP_IF, &info)) {
236236
if(info.ip.addr == 0x00000000) {
237-
DEBUG_WIFI("[AP] IP config Invalid?!\n");
237+
DEBUG_WIFI("[APConfig] IP config Invalid?!\n");
238238
ret = false;
239239
} else if(local_ip != info.ip.addr) {
240240
ip = info.ip.addr;
241-
DEBUG_WIFI("[AP] IP config not set correct?! new IP: %s\n", ip.toString().c_str());
241+
DEBUG_WIFI("[APConfig] IP config not set correct?! new IP: %s\n", ip.toString().c_str());
242242
ret = false;
243243
}
244244
} else {
245-
DEBUG_WIFI("[AP] wifi_get_ip_info failed!\n");
245+
DEBUG_WIFI("[APConfig] wifi_get_ip_info failed!\n");
246246
ret = false;
247247
}
248248

tools/sdk/changelog.txt

+31
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
esp_iot_sdk_v1.5.1_16_01_08 Release Note
2+
----------------------------------------
3+
Resolved Issues (Bugs listed below apply to Bug Bounty Program):
4+
1.espconn_abort may cause system crash.
5+
6+
Optimization:
7+
1.Optimize the data receiving process under TCP connection.
8+
2.Optimize low MAC and increase stability of the software.
9+
3.Optimize watchdog feeding process.
10+
4.Optimize softAP working mode so that some stations can be easily connected.
11+
5.Optimize station working mode, enabling connection even when the SSID of the AP has changed.
12+
6.Optimize station working mode, and increase router’s compatibility during the connection process.
13+
7.Optimize SSL shakehand.
14+
8.Optimize espconn internal timer.
15+
9.Optimize UDP transmission.
16+
10.Improve the flash writing process.
17+
11.Strenthen WPA2 security protocols.
18+
12.Improve data sending ability.
19+
13.Straighten the control capability of GPIO16 under light sleep mode.
20+
14.boot.bin is upgrade to version 1.5, resolving boot failure when firmware is upgraded over the air (OTA).
21+
22+
AT release note:
23+
1.Optimize the process of establishing TCP server via AT command.
24+
2.Optimize UART-WiFi transparent transmission mode via AT command.
25+
26+
Please be noted that with the release of NONOS SDK Version 1.5.0 (ESP8266_NONOS_SDK_V1.5.0), the space that AT commands occupies has increased to more than 4Mbit. Therefore, flash with 512Kbit capacity is no longer supported. Please choose flash with at least 8Mbit capacity.
27+
28+
Please be noted that firmware upgrade over-the-air process is changed a bit. We will upgrade the latest firmware to Espressif Cloud server only after it has been tested and the overall performance is guaranteed. Users may not be able to download firmware encapsulated in ESP8266_NONOS_SDK_V1.5.0 and other more advanced versions.
29+
30+
31+
132
esp_iot_sdk_v1.5.0_15_12_15_p1 Release Note
233
----------------------------------------
334
Here is a patch based on ESP8266_NONOS_SDK_V1.5.0 solved a problem that calling espconn_abort may cause unexpected reset.

tools/sdk/lib/libat.a

172 Bytes
Binary file not shown.

tools/sdk/lib/libcrypto.a

0 Bytes
Binary file not shown.

tools/sdk/lib/libespnow.a

0 Bytes
Binary file not shown.

tools/sdk/lib/libjson.a

0 Bytes
Binary file not shown.

tools/sdk/lib/liblwip.a

-690 KB
Binary file not shown.

tools/sdk/lib/libmain.a

1.01 KB
Binary file not shown.

tools/sdk/lib/libmesh.a

0 Bytes
Binary file not shown.

tools/sdk/lib/libnet80211.a

204 Bytes
Binary file not shown.

tools/sdk/lib/libpp.a

-318 Bytes
Binary file not shown.

tools/sdk/lib/libsmartconfig.a

0 Bytes
Binary file not shown.

tools/sdk/lib/libssl.a

120 Bytes
Binary file not shown.

tools/sdk/lib/libupgrade.a

0 Bytes
Binary file not shown.

tools/sdk/lib/libwpa.a

0 Bytes
Binary file not shown.

tools/sdk/lib/libwpa2.a

1.62 KB
Binary file not shown.

tools/sdk/lib/libwps.a

0 Bytes
Binary file not shown.

tools/sdk/version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.5.0_15_12_15_p1
1+
1.5.1_16_01_08

0 commit comments

Comments
 (0)