Skip to content

Commit a67f5cb

Browse files
committed
Merge branch 'release/v1.0.2'
2 parents 29464f7 + b12fe0a commit a67f5cb

File tree

15 files changed

+51
-50
lines changed

15 files changed

+51
-50
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
# Espressif: development platform for [PlatformIO](http://platformio.org)
2-
[![Build Status](https://travis-ci.org/platformio/platform-espressif.svg?branch=develop)](https://travis-ci.org/platformio/platform-espressif)
3-
[![Build status](https://ci.appveyor.com/api/projects/status/yosdb0a87s5rb7b5/branch/develop?svg=true)](https://ci.appveyor.com/project/ivankravets/platform-espressif/branch/develop)
1+
# Espressif 8266: development platform for [PlatformIO](http://platformio.org)
2+
[![Build Status](https://travis-ci.org/platformio/platform-espressif8266.svg?branch=develop)](https://travis-ci.org/platformio/platform-espressif8266)
3+
[![Build status](https://ci.appveyor.com/api/projects/status/aob49qatio84iygj/branch/develop?svg=true)](https://ci.appveyor.com/project/ivankravets/platform-espressif8266/branch/develop)
44

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

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

1010
# Usage
1111

1212
1. [Install PlatformIO CLI](http://docs.platformio.org/en/latest/installation.html)
13-
2. Install Espressif development platform:
13+
2. Install Espressif 8266 development platform:
1414
```bash
15-
# isntall the latest stable version
16-
> platformio platform install espressif
15+
# install the latest stable version
16+
> platformio platform install espressif8266
1717

1818
# install development version
19-
> platformio platform install https://github.com/platformio/platform-espressif.git
19+
> platformio platform install https://github.com/platformio/platform-espressif8266.git
2020
```

builder/frameworks/arduino.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@
2929
env = DefaultEnvironment()
3030
platform = env.PioPlatform()
3131

32-
FRAMEWORK_DIR = platform.get_package_dir("framework-arduinoespressif")
33-
FRAMEWORK_VERSION = platform.get_package_version("framework-arduinoespressif")
32+
FRAMEWORK_DIR = platform.get_package_dir("framework-arduinoespressif8266")
33+
FRAMEWORK_VERSION = platform.get_package_version(
34+
"framework-arduinoespressif8266")
3435
assert isdir(FRAMEWORK_DIR)
3536

3637
env.Prepend(

builder/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def _get_board_f_flash(env):
111111
#
112112

113113
FRAMEWORK_ARDUINOESP8266_DIR=platform.get_package_dir(
114-
"framework-arduinoespressif"),
114+
"framework-arduinoespressif8266"),
115115
SDK_ESP8266_DIR=platform.get_package_dir("sdk-esp8266"),
116116

117117
#

examples/arduino-blink/README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ How to build PlatformIO based project
1313
=====================================
1414

1515
1. `Install PlatformIO <http://docs.platformio.org/en/latest/installation.html>`_
16-
2. Download `development platform with examples <https://github.com/platformio/platform-espressif/archive/develop.zip>`_
16+
2. Download `development platform with examples <https://github.com/platformio/platform-espressif8266/archive/develop.zip>`_
1717
3. Extract ZIP archive
1818
4. Run these commands:
1919

2020
.. code-block:: bash
2121
2222
# Change directory to example
23-
> cd platform-espressif/examples/arduino-blink
23+
> cd platform-espressif8266/examples/arduino-blink
2424
2525
# Build project
2626
> platformio run

examples/arduino-blink/platformio.ini

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,51 +8,51 @@
88
; http://docs.platformio.org/en/stable/projectconf.html
99

1010
[env:d1]
11-
platform = espressif
11+
platform = espressif8266
1212
framework = arduino
1313
board = d1
1414

1515
[env:d1_mini]
16-
platform = espressif
16+
platform = espressif8266
1717
framework = arduino
1818
board = d1_mini
1919

2020
[env:espduino]
21-
platform = espressif
21+
platform = espressif8266
2222
framework = arduino
2323
board = espduino
2424

2525
[env:espino]
26-
platform = espressif
26+
platform = espressif8266
2727
framework = arduino
2828
board = espino
2929

3030
[env:espinotee]
31-
platform = espressif
31+
platform = espressif8266
3232
framework = arduino
3333
board = espinotee
3434

3535
[env:espresso_lite_v1]
36-
platform = espressif
36+
platform = espressif8266
3737
framework = arduino
3838
board = espresso_lite_v1
3939

4040
[env:espresso_lite_v2]
41-
platform = espressif
41+
platform = espressif8266
4242
framework = arduino
4343
board = espresso_lite_v2
4444

4545
[env:esp01]
46-
platform = espressif
46+
platform = espressif8266
4747
framework = arduino
4848
board = esp01
4949

5050
[env:nodemcuv2]
51-
platform = espressif
51+
platform = espressif8266
5252
framework = arduino
5353
board = nodemcuv2
5454

5555
[env:thing]
56-
platform = espressif
56+
platform = espressif8266
5757
framework = arduino
5858
board = thing

examples/arduino-webserver/README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ How to build PlatformIO based project
1313
=====================================
1414

1515
1. `Install PlatformIO <http://docs.platformio.org/en/latest/installation.html>`_
16-
2. Download `development platform with examples <https://github.com/platformio/platform-espressif/archive/develop.zip>`_
16+
2. Download `development platform with examples <https://github.com/platformio/platform-espressif8266/archive/develop.zip>`_
1717
3. Extract ZIP archive
1818
4. Run these commands:
1919

2020
.. code-block:: bash
2121
2222
# Change directory to example
23-
> cd platform-espressif/examples/arduino-webserver
23+
> cd platform-espressif8266/examples/arduino-webserver
2424
2525
# Build project
2626
> platformio run

examples/arduino-webserver/platformio.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,21 @@
88
; http://docs.platformio.org/en/stable/projectconf.html
99

1010
[env:esp01]
11-
platform = espressif
11+
platform = espressif8266
1212
framework = arduino
1313
board = esp01
1414

1515
[env:nodemcuv2]
16-
platform = espressif
16+
platform = espressif8266
1717
framework = arduino
1818
board = nodemcuv2
1919

2020
[env:huzzah]
21-
platform = espressif
21+
platform = espressif8266
2222
framework = arduino
2323
board = huzzah
2424

2525
[env:thing]
26-
platform = espressif
26+
platform = espressif8266
2727
framework = arduino
2828
board = thing

examples/arduino-wifiscan/README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ How to build PlatformIO based project
1313
=====================================
1414

1515
1. `Install PlatformIO <http://docs.platformio.org/en/latest/installation.html>`_
16-
2. Download `development platform with examples <https://github.com/platformio/platform-espressif/archive/develop.zip>`_
16+
2. Download `development platform with examples <https://github.com/platformio/platform-espressif8266/archive/develop.zip>`_
1717
3. Extract ZIP archive
1818
4. Run these commands:
1919

2020
.. code-block:: bash
2121
2222
# Change directory to example
23-
> cd platform-espressif/examples/arduino-wifiscan
23+
> cd platform-espressif8266/examples/arduino-wifiscan
2424
2525
# Build project
2626
> platformio run

examples/arduino-wifiscan/platformio.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,21 @@
88
; http://docs.platformio.org/en/stable/projectconf.html
99

1010
[env:esp01]
11-
platform = espressif
11+
platform = espressif8266
1212
framework = arduino
1313
board = esp01
1414

1515
[env:nodemcuv2]
16-
platform = espressif
16+
platform = espressif8266
1717
framework = arduino
1818
board = nodemcuv2
1919

2020
[env:huzzah]
21-
platform = espressif
21+
platform = espressif8266
2222
framework = arduino
2323
board = huzzah
2424

2525
[env:thing]
26-
platform = espressif
26+
platform = espressif8266
2727
framework = arduino
2828
board = thing

examples/native-sdk/README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ How to build PlatformIO based project
1313
=====================================
1414

1515
1. `Install PlatformIO <http://docs.platformio.org/en/latest/installation.html>`_
16-
2. Download `development platform with examples <https://github.com/platformio/platform-espressif/archive/develop.zip>`_
16+
2. Download `development platform with examples <https://github.com/platformio/platform-espressif8266/archive/develop.zip>`_
1717
3. Extract ZIP archive
1818
4. Run these commands:
1919

2020
.. code-block:: bash
2121
2222
# Change directory to example
23-
> cd platform-espressif/examples/native-sdk
23+
> cd platform-espressif8266/examples/native-sdk
2424
2525
# Build project
2626
> platformio run

0 commit comments

Comments
 (0)