Skip to content

Commit db8a728

Browse files
Merge branch 'master' of https://github.com/esp8266/Arduino into virtual-mem
2 parents 8788c76 + e58bb60 commit db8a728

File tree

399 files changed

+10854
-54003
lines changed

Some content is hidden

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

399 files changed

+10854
-54003
lines changed

.travis.yml

+18-25
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,15 @@ jobs:
2424
- name: "Platformio (1)"
2525
stage: build
2626
script: $TRAVIS_BUILD_DIR/tests/platformio.sh
27+
install:
28+
- sudo apt-get install python3-pip python3-setuptools
2729
env:
2830
- BUILD_PARITY=even
2931
- name: "Platformio (2)"
3032
stage: build
3133
script: $TRAVIS_BUILD_DIR/tests/platformio.sh
34+
install:
35+
- sudo apt-get install python3-pip python3-setuptools
3236
env:
3337
- BUILD_PARITY=odd
3438

@@ -43,38 +47,27 @@ jobs:
4347
env:
4448
- BUILD_PARITY=odd
4549

46-
- name: "Debug (1)"
50+
- name: "Debug IPv6 (1)"
4751
stage: build
48-
script: $TRAVIS_BUILD_DIR/tests/debug.sh
52+
script: $TRAVIS_BUILD_DIR/tests/debug6.sh
4953
env:
5054
- BUILD_PARITY=even
51-
- name: "Debug (2)"
55+
- name: "Debug IPv6 (2)"
5256
stage: build
53-
script: $TRAVIS_BUILD_DIR/tests/debug.sh
57+
script: $TRAVIS_BUILD_DIR/tests/debug6.sh
5458
env:
5559
- BUILD_PARITY=odd
5660

57-
- name: "Build IPv6 (1)"
58-
stage: build
59-
script: $TRAVIS_BUILD_DIR/tests/build6.sh
60-
env:
61-
- BUILD_PARITY=even
62-
- name: "Build IPv6 (2)"
63-
stage: build
64-
script: $TRAVIS_BUILD_DIR/tests/build6.sh
65-
env:
66-
- BUILD_PARITY=odd
67-
68-
- name: "Build lwIP-v1.4 (1)"
69-
stage: build
70-
script: $TRAVIS_BUILD_DIR/tests/build1.sh
71-
env:
72-
- BUILD_PARITY=even
73-
- name: "Build lwIP-v1.4 (2)"
74-
stage: build
75-
script: $TRAVIS_BUILD_DIR/tests/build1.sh
76-
env:
77-
- BUILD_PARITY=odd
61+
# - name: "Build IPv6 (1)"
62+
# stage: build
63+
# script: $TRAVIS_BUILD_DIR/tests/build6.sh
64+
# env:
65+
# - BUILD_PARITY=even
66+
# - name: "Build IPv6 (2)"
67+
# stage: build
68+
# script: $TRAVIS_BUILD_DIR/tests/build6.sh
69+
# env:
70+
# - BUILD_PARITY=odd
7871

7972
- name: "Mac OSX can build sketches"
8073
os: osx

README.md

+14-12
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.6.3/)
6+
- [Latest release documentation](https://arduino-esp8266.readthedocs.io/en/2.7.2/)
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

@@ -28,15 +28,15 @@ ESP8266 Arduino core comes with libraries to communicate over WiFi using TCP and
2828

2929
Starting with 1.6.4, Arduino allows installation of third-party platform packages using Boards Manager. We have packages available for Windows, Mac OS, and Linux (32 and 64 bit).
3030

31-
- Install the current upstream Arduino IDE at the 1.8.7 level or later. The current version is on the [Arduino website](https://www.arduino.cc/en/main/software).
31+
- Install the current upstream Arduino IDE at the 1.8.9 level or later. The current version is on the [Arduino website](https://www.arduino.cc/en/main/software).
3232
- Start Arduino and open the Preferences window.
3333
- Enter ```https://arduino.esp8266.com/stable/package_esp8266com_index.json``` into the *Additional Board Manager URLs* field. You can add multiple URLs, separating them with commas.
3434
- Open Boards Manager from Tools > Board menu and install *esp8266* platform (and don't forget to select your ESP8266 board from Tools > Board menu after installation).
3535

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.6.3/](https://arduino-esp8266.readthedocs.io/en/2.6.3/)
39+
Documentation: [https://arduino-esp8266.readthedocs.io/en/2.7.2/](https://arduino-esp8266.readthedocs.io/en/2.7.2/)
4040

4141
### Using git version
4242
[![Linux build status](https://travis-ci.org/esp8266/Arduino.svg)](https://travis-ci.org/esp8266/Arduino)
@@ -48,19 +48,19 @@ Also known as latest git or master branch.
4848

4949
### Using PlatformIO
5050

51-
[PlatformIO](https://platformio.org?utm_source=github&utm_medium=arduino-esp8266) is an open source ecosystem for IoT
51+
[PlatformIO](https://platformio.org?utm_source=arduino-esp8266) is an open source ecosystem for IoT
5252
development with a cross-platform build system, a library manager, and full support
5353
for Espressif (ESP8266) development. It works on the following popular host operating systems: macOS, Windows,
5454
Linux 32/64, and Linux ARM (like Raspberry Pi, BeagleBone, CubieBoard).
5555

56-
- [What is PlatformIO?](https://docs.platformio.org/en/latest/what-is-platformio.html?utm_source=github&utm_medium=arduino-esp8266)
57-
- [PlatformIO IDE](https://platformio.org/platformio-ide?utm_source=github&utm_medium=arduino-esp8266)
58-
- [PlatformIO Core](https://docs.platformio.org/en/latest/core.html?utm_source=github&utm_medium=arduino-esp8266) (command line tool)
59-
- [Advanced usage](https://docs.platformio.org/en/latest/platforms/espressif8266.html?utm_source=github&utm_medium=arduino-esp8266) -
56+
- [What is PlatformIO?](https://docs.platformio.org/en/latest/what-is-platformio.html?utm_source=arduino-esp8266)
57+
- [PlatformIO IDE](https://platformio.org/platformio-ide?utm_source=arduino-esp8266)
58+
- [PlatformIO Core](https://docs.platformio.org/en/latest/core.html?utm_source=arduino-esp8266) (command line tool)
59+
- [Advanced usage](https://docs.platformio.org/en/latest/platforms/espressif8266.html?utm_source=arduino-esp8266) -
6060
custom settings, uploading to SPIFFS, Over-the-Air (OTA), staging version
61-
- [Integration with Cloud and Standalone IDEs](https://docs.platformio.org/en/latest/ide.html?utm_source=github&utm_medium=arduino-esp8266) -
61+
- [Integration with Cloud and Standalone IDEs](https://docs.platformio.org/en/latest/ide.html?utm_source=arduino-esp8266) -
6262
Cloud9, Codeanywhere, Eclipse Che (Codenvy), Atom, CLion, Eclipse, Emacs, NetBeans, Qt Creator, Sublime Text, VIM, Visual Studio, and VSCode
63-
- [Project Examples](https://docs.platformio.org/en/latest/platforms/espressif8266.html?utm_source=github&utm_medium=arduino-esp8266#examples)
63+
- [Project Examples](https://docs.platformio.org/en/latest/platforms/espressif8266.html?utm_source=arduino-esp8266#examples)
6464

6565
### Building with make
6666

@@ -73,7 +73,7 @@ Documentation for latest development version: https://arduino-esp8266.readthedoc
7373

7474
### Issues and support ###
7575

76-
[ESP8266 Community Forum](https://www.esp8266.com/u/arduinoanswers) is a well-established community for questions and answers about Arduino for ESP8266. If you need help, have a "How do I..." type question, have a problem with a 3rd party library not hosted in this repo, or just want to discuss how to approach a problem, please ask there.
76+
[ESP8266 Community Forum](https://www.esp8266.com/u/arduinoanswers) is a well-established community for questions and answers about Arduino for ESP8266. Stackoverflow is also an alternative. If you need help, have a "How do I..." type question, have a problem with a 3rd party library not hosted in this repo, or just want to discuss how to approach a problem, please ask there.
7777

7878
If you find the forum useful, please consider supporting it with a donation. <br />
7979
[![Donate](https://img.shields.io/badge/paypal-donate-yellow.svg)](https://www.paypal.com/webscr?cmd=_s-xclick&hosted_button_id=4M56YCWV6PX66)
@@ -96,7 +96,7 @@ For minor fixes of code and documentation, please go ahead and submit a pull req
9696

9797
Check out the list of issues that are easy to fix — [easy issues pending](https://github.com/esp8266/Arduino/issues?q=is%3Aopen+is%3Aissue+label%3A%22level%3A+easy%22). Working on them is a great way to move the project forward.
9898

99-
Larger changes (rewriting parts of existing code from scratch, adding new functions to the core, adding new libraries) should generally be discussed by opening an issue first.
99+
Larger changes (rewriting parts of existing code from scratch, adding new functions to the core, adding new libraries) should generally be discussed by opening an issue first. PRs with such changes require testing and approval.
100100

101101
Feature branches with lots of small commits (especially titled "oops", "fix typo", "forgot to add file", etc.) should be squashed before opening a pull request. At the same time, please refrain from putting multiple unrelated changes into a single pull request.
102102

@@ -135,3 +135,5 @@ ESP8266 core files are licensed under LGPL.
135135
[SoftwareSerial repo](https://github.com/plerup/espsoftwareserial)
136136

137137
[Serial Monitor Arduino IDE plugin](https://github.com/mytrain/arduino-esp8266-serial-plugin) Original discussion [here](https://github.com/esp8266/Arduino/issues/1360), quick download [there](http://mytrain.fr/cms//images/mytrain/private/ESP8266SM.v3.zip).
138+
139+
[FTP Client/Server Library](https://github.com/dplasa/FTPClientServer)

0 commit comments

Comments
 (0)