Skip to content

Commit ef7c26a

Browse files
committed
hotfix: 2.7.2=>2.7.3 eboot: disable "Verify the copy"
1 parent 39c79d9 commit ef7c26a

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Arduino core for ESP8266 WiFi chip
33

44
# Quick links
55

6-
- [Latest release documentation](https://arduino-esp8266.readthedocs.io/en/2.7.1/)
6+
- [Latest release documentation](https://arduino-esp8266.readthedocs.io/en/2.7.3/)
77
- [Current "git version" documentation](https://arduino-esp8266.readthedocs.io/en/latest/)
88
- [Install git version](https://arduino-esp8266.readthedocs.io/en/latest/installing.html#using-git-version) ([sources](doc/installing.rst#using-git-version))
99

@@ -36,7 +36,7 @@ Starting with 1.6.4, Arduino allows installation of third-party platform package
3636
#### Latest release [![Latest release](https://img.shields.io/github/release/esp8266/Arduino.svg)](https://github.com/esp8266/Arduino/releases/latest/)
3737
Boards manager link: `https://arduino.esp8266.com/stable/package_esp8266com_index.json`
3838

39-
Documentation: [https://arduino-esp8266.readthedocs.io/en/2.7.1/](https://arduino-esp8266.readthedocs.io/en/2.7.1/)
39+
Documentation: [https://arduino-esp8266.readthedocs.io/en/2.7.3/](https://arduino-esp8266.readthedocs.io/en/2.7.3/)
4040

4141
### Using git version
4242
[![Linux build status](https://travis-ci.org/esp8266/Arduino.svg)](https://travis-ci.org/esp8266/Arduino)

Diff for: bootloaders/eboot/eboot.c

+3-1
Original file line numberDiff line numberDiff line change
@@ -230,15 +230,17 @@ int main()
230230

231231
ets_putc('0'+res); ets_putc('\n');
232232

233+
/** disabled in 2.7.3
233234
// Verify the copy
234235
ets_putc('c'); ets_putc('m'); ets_putc('p'); ets_putc(':');
235236
if (res == 0) {
236237
ets_wdt_disable();
237238
res = copy_raw(cmd.args[0], cmd.args[1], cmd.args[2], true);
238239
ets_wdt_enable();
239240
}
240-
241241
ets_putc('0'+res); ets_putc('\n');
242+
**/
243+
242244
if (res == 0) {
243245
cmd.action = ACTION_LOAD_APP;
244246
cmd.args[0] = cmd.args[1];

Diff for: bootloaders/eboot/eboot.elf

-188 Bytes
Binary file not shown.

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"name": "framework-arduinoespressif8266",
33
"description": "Arduino Wiring-based Framework (ESP8266 Core)",
44
"url": "https://github.com/esp8266/Arduino",
5-
"version": "2.7.2"
5+
"version": "2.7.3"
66
}

Diff for: platform.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
# For more info:
66
# https://github.com/arduino/Arduino/wiki/Arduino-IDE-1.5-3rd-party-Hardware-specification
77

8-
name=ESP8266 Boards (2.7.2)
9-
version=2.7.2
8+
name=ESP8266 Boards (2.7.3)
9+
version=2.7.3
1010

1111
# These will be removed by the packager script when doing a JSON release
1212
runtime.tools.xtensa-lx106-elf-gcc.path={runtime.platform.path}/tools/xtensa-lx106-elf

0 commit comments

Comments
 (0)