Skip to content

Commit 28ce385

Browse files
committed
Merge branch 'release/v1.3.1'
2 parents 567976f + 4b2dd6c commit 28ce385

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+403
-145
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ env:
66
- PLATFORMIO_PROJECT_DIR=examples/arduino-blink
77
- PLATFORMIO_PROJECT_DIR=examples/arduino-webserver
88
- PLATFORMIO_PROJECT_DIR=examples/arduino-wifiscan
9+
- PLATFORMIO_PROJECT_DIR=examples/esp8266-rtos-sdk-blink
910
- PLATFORMIO_PROJECT_DIR=examples/native-sdk
1011
- PLATFORMIO_PROJECT_DIR=examples/simba-blink
1112

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
Espressif Systems is a privately held fabless semiconductor company. They provide wireless communications and Wi-Fi chips which are widely used in mobile devices and the Internet of Things applications.
66

77
* [Home](http://platformio.org/platforms/espressif8266) (home page in PlatformIO Platform Registry)
8-
* [Documentation](http://docs.platformio.org/en/stable/platforms/espressif8266.html) (advanced usage, packages, boards, frameworks, etc.)
8+
* [Documentation](http://docs.platformio.org/page/platforms/espressif8266.html) (advanced usage, packages, boards, frameworks, etc.)
99

1010
# Usage
1111

12-
1. [Install PlatformIO CLI](http://docs.platformio.org/en/stable/installation.html)
12+
1. [Install PlatformIO Core](http://docs.platformio.org/page/core.html)
1313
2. Install Espressif 8266 development platform:
1414
```bash
1515
# install the latest stable version

appveyor.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ environment:
55
- PLATFORMIO_PROJECT_DIR: "examples/arduino-blink"
66
- PLATFORMIO_PROJECT_DIR: "examples/arduino-webserver"
77
- PLATFORMIO_PROJECT_DIR: "examples/arduino-wifiscan"
8+
- PLATFORMIO_PROJECT_DIR: "examples/esp8266-rtos-sdk-blink"
89
- PLATFORMIO_PROJECT_DIR: "examples/native-sdk"
910
- PLATFORMIO_PROJECT_DIR: "examples/simba-blink"
1011

boards/d1.json

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,26 @@
11
{
22
"build": {
3-
"core": "esp8266",
4-
"extra_flags": "-DESP8266 -DARDUINO_ARCH_ESP8266 -DESP8266_WEMOS_D1MINI",
5-
"f_cpu": "80000000L",
6-
"f_flash": "40000000L",
7-
"flash_mode": "dio",
8-
"ldscript": "esp8266.flash.4m1m.ld",
9-
"mcu": "esp8266",
3+
"core": "esp8266",
4+
"extra_flags": "-DESP8266 -DARDUINO_ARCH_ESP8266 -DESP8266_WEMOS_D1MINI",
5+
"f_cpu": "80000000L",
6+
"f_flash": "40000000L",
7+
"flash_mode": "dio",
8+
"ldscript": "esp8266.flash.4m1m.ld",
9+
"mcu": "esp8266",
1010
"variant": "d1"
11-
},
11+
},
1212
"frameworks": [
13-
"arduino"
14-
],
15-
"name": "WeMos D1(Retired)",
13+
"arduino",
14+
"esp8266-rtos-sdk"
15+
],
16+
"name": "WEMOS D1 (Retired)",
1617
"upload": {
17-
"maximum_ram_size": 81920,
18-
"maximum_size": 4194304,
19-
"require_upload_port": true,
20-
"resetmethod": "nodemcu",
18+
"maximum_ram_size": 81920,
19+
"maximum_size": 4194304,
20+
"require_upload_port": true,
21+
"resetmethod": "nodemcu",
2122
"speed": 115200
22-
},
23-
"url": "http://www.wemos.cc/wiki/doku.php?id=en:d1",
24-
"vendor": "WeMos"
25-
}
23+
},
24+
"url": "https://wiki.wemos.cc/products:d1:d1",
25+
"vendor": "WEMOS"
26+
}

boards/d1_mini.json

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,26 @@
11
{
22
"build": {
3-
"core": "esp8266",
4-
"extra_flags": "-DESP8266 -DARDUINO_ARCH_ESP8266 -DESP8266_WEMOS_D1MINI",
5-
"f_cpu": "80000000L",
6-
"f_flash": "40000000L",
7-
"flash_mode": "dio",
8-
"ldscript": "esp8266.flash.4m1m.ld",
9-
"mcu": "esp8266",
3+
"core": "esp8266",
4+
"extra_flags": "-DESP8266 -DARDUINO_ARCH_ESP8266 -DESP8266_WEMOS_D1MINI",
5+
"f_cpu": "80000000L",
6+
"f_flash": "40000000L",
7+
"flash_mode": "dio",
8+
"ldscript": "esp8266.flash.4m1m.ld",
9+
"mcu": "esp8266",
1010
"variant": "d1_mini"
11-
},
11+
},
1212
"frameworks": [
13-
"arduino"
14-
],
15-
"name": "WeMos D1 R2 & mini",
13+
"arduino",
14+
"esp8266-rtos-sdk"
15+
],
16+
"name": "WEMOS D1 mini",
1617
"upload": {
17-
"maximum_ram_size": 81920,
18-
"maximum_size": 4194304,
19-
"require_upload_port": true,
20-
"resetmethod": "nodemcu",
18+
"maximum_ram_size": 81920,
19+
"maximum_size": 4194304,
20+
"require_upload_port": true,
21+
"resetmethod": "nodemcu",
2122
"speed": 115200
22-
},
23-
"url": "http://www.wemos.cc/wiki/doku.php?id=en:d1_mini",
24-
"vendor": "WeMos"
25-
}
23+
},
24+
"url": "https://wiki.wemos.cc/products:d1:d1_mini",
25+
"vendor": "WEMOS"
26+
}

boards/d1_mini_lite.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"build": {
3+
"core": "esp8266",
4+
"extra_flags": "-DESP8266 -DARDUINO_ARCH_ESP8266 -DESP8266_WEMOS_D1MINI -DESP8266_WEMOS_D1MINILITE",
5+
"f_cpu": "80000000L",
6+
"f_flash": "40000000L",
7+
"flash_mode": "dout",
8+
"ldscript": "esp8266.flash.1m64.ld",
9+
"mcu": "esp8266",
10+
"variant": "d1_mini"
11+
},
12+
"frameworks": [
13+
"arduino"
14+
],
15+
"name": "WEMOS D1 mini Lite",
16+
"upload": {
17+
"maximum_ram_size": 81920,
18+
"maximum_size": 958448,
19+
"require_upload_port": true,
20+
"resetmethod": "nodemcu",
21+
"speed": 115200
22+
},
23+
"url": "https://wiki.wemos.cc/products:d1:d1_mini_lite",
24+
"vendor": "WEMOS"
25+
}

boards/esp01.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
},
1212
"frameworks": [
1313
"arduino",
14-
"simba"
14+
"simba",
15+
"esp8266-rtos-sdk"
1516
],
1617
"name": "Espressif Generic ESP8266 ESP-01 512k",
1718
"upload": {
@@ -23,4 +24,4 @@
2324
},
2425
"url": "http://www.esp8266.com/wiki/doku.php?id=esp8266-module-family",
2526
"vendor": "Espressif"
26-
}
27+
}

boards/esp01_1m.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
},
1212
"frameworks": [
1313
"arduino",
14-
"simba"
14+
"simba",
15+
"esp8266-rtos-sdk"
1516
],
1617
"name": "Espressif Generic ESP8266 ESP-01 1M",
1718
"upload": {
@@ -23,4 +24,4 @@
2324
},
2425
"url": "http://www.esp8266.com/wiki/doku.php?id=esp8266-module-family",
2526
"vendor": "Espressif"
26-
}
27+
}

boards/esp07.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
"variant": "nodemcu"
1111
},
1212
"frameworks": [
13-
"arduino"
13+
"arduino",
14+
"esp8266-rtos-sdk"
1415
],
1516
"name": "Espressif Generic ESP8266 ESP-07",
1617
"upload": {
@@ -22,4 +23,4 @@
2223
},
2324
"url": "http://www.esp8266.com/wiki/doku.php?id=esp8266-module-family#esp-07",
2425
"vendor": "Espressif"
25-
}
26+
}

boards/esp12e.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
},
1212
"frameworks": [
1313
"arduino",
14-
"simba"
14+
"simba",
15+
"esp8266-rtos-sdk"
1516
],
1617
"name": "Espressif ESP8266 ESP-12E",
1718
"upload": {
@@ -23,4 +24,4 @@
2324
},
2425
"url": "http://www.esp8266.com/wiki/doku.php?id=esp8266-module-family",
2526
"vendor": "Espressif"
26-
}
27+
}

0 commit comments

Comments
 (0)