mirror of
https://github.com/esp8266/Arduino.git
synced 2025-08-01 03:47:23 +03:00
Merge pull request #190 from Links2004/esp8266
add Patch for station+softAP issue based on SDK_v1.0.1 from espressif
This commit is contained in:
46
README.md
46
README.md
@ -8,7 +8,7 @@ This project brings support for ESP8266 chip to the Arduino environment. ESP8266
|
|||||||
| OS | Build status | Latest release | Alpha Version |
|
| OS | Build status | Latest release | Alpha Version |
|
||||||
| --- | ------------ | -------------- | --------------- |
|
| --- | ------------ | -------------- | --------------- |
|
||||||
| Linux | [](https://travis-ci.org/igrr/Arduino) | [arduino-1.6.1-linux64.tar.xz](../../releases/download/1.6.1-esp8266-1/arduino-1.6.1-linux64.tar.xz) | |
|
| Linux | [](https://travis-ci.org/igrr/Arduino) | [arduino-1.6.1-linux64.tar.xz](../../releases/download/1.6.1-esp8266-1/arduino-1.6.1-linux64.tar.xz) | |
|
||||||
| Windows | [](https://ci.appveyor.com/project/igrr/Arduino) | [arduino-1.6.1-p1-windows.zip](https://github.com/igrr/Arduino/releases/download/1.6.1-esp8266-1/arduino-1.6.1-p1-windows.zip) | [appveyor Build](https://ci.appveyor.com/project/igrr/Arduino/build/artifacts) |
|
| Windows | [](https://ci.appveyor.com/project/igrr/Arduino) | [arduino-1.6.1-p1-windows.zip](https://github.com/igrr/Arduino/releases/download/1.6.1-esp8266-1/arduino-1.6.1-p1-windows.zip) | [appveyor 64Bit Build](https://ci.appveyor.com/project/igrr/Arduino/build/artifacts) |
|
||||||
| OS X | | [arduino-1.6.1-macosx-java-latest-signed.zip](../../releases/download/1.6.1-esp8266-1/arduino-1.6.1-macosx-java-latest-signed.zip) | |
|
| OS X | | [arduino-1.6.1-macosx-java-latest-signed.zip](../../releases/download/1.6.1-esp8266-1/arduino-1.6.1-macosx-java-latest-signed.zip) | |
|
||||||
|
|
||||||
|
|
||||||
@ -181,8 +181,48 @@ Libraries that don't rely on low-level access to AVR registers should work well.
|
|||||||
|
|
||||||
#### Upload via serial port ####
|
#### Upload via serial port ####
|
||||||
Pick the correct serial port.
|
Pick the correct serial port.
|
||||||
You need to put ESP8266 into bootloader mode before uploading code (pull GPIO0 low and
|
You need to put ESP8266 into bootloader mode before uploading code.
|
||||||
toggle power).
|
|
||||||
|
#### Minimal hardware Setup for Bootloading and usage ####
|
||||||
|
|
||||||
|
ESPxx Hardware
|
||||||
|
|
||||||
|
| PIN | Resistor | Serial Adapter |
|
||||||
|
| ------------- | -------- | -------------- |
|
||||||
|
| VCC | | VCC (3.3V) |
|
||||||
|
| GND | | GND |
|
||||||
|
| TX or GPIO2* | | RX |
|
||||||
|
| RX | | TX |
|
||||||
|
| GPIO0 | PullUp | DTR |
|
||||||
|
| Reset* | | RTS |
|
||||||
|
| GPIO15* | PullDown | |
|
||||||
|
| CH_PD | PullUp | |
|
||||||
|
|
||||||
|
* Note
|
||||||
|
- GPIO15 is also named MTDO
|
||||||
|
- Reset is also named RSBT or REST (adding PullUp improves the stability of the Module)
|
||||||
|
- GPIO2 is alternative TX for the boot loader mode
|
||||||
|
|
||||||
|
ESP01 example:
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
#### Minimal hardware Setup for Bootloading only ####
|
||||||
|
ESPxx Hardware
|
||||||
|
|
||||||
|
| PIN | Resistor | Serial Adapter |
|
||||||
|
| ------------- | -------- | -------------- |
|
||||||
|
| VCC | | VCC (3.3V) |
|
||||||
|
| GND | | GND |
|
||||||
|
| TX or GPIO2 | | RX |
|
||||||
|
| RX | | TX |
|
||||||
|
| GPIO0 | | GND |
|
||||||
|
| Reset | | RTS* |
|
||||||
|
| GPIO15 | PullDown | |
|
||||||
|
| CH_PD | PullUp | |
|
||||||
|
|
||||||
|
* Note
|
||||||
|
- if no RTS is used a manual power toggle is needed
|
||||||
|
|
||||||
### Issues and support ###
|
### Issues and support ###
|
||||||
|
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
esp_iot_sdk_v1.0.1_15_05_04_p1
|
||||||
|
-------------------------------------------
|
||||||
|
Here is a patch for station+softAP issue that users may have, based on SDK_v1.0.1,
|
||||||
|
solved problem that connect to ESP8266 softAP may fail in station+softAP mode.
|
||||||
|
|
||||||
|
Sorry for the inconvenience.
|
||||||
|
|
||||||
esp_iot_sdk_v1.0.1_15_04_24 Release Note
|
esp_iot_sdk_v1.0.1_15_04_24 Release Note
|
||||||
-------------------------------------------
|
-------------------------------------------
|
||||||
|
|
||||||
|
Binary file not shown.
@ -1 +1 @@
|
|||||||
1.0.1_15_04_24
|
1.0.1_15_05_04_p1
|
Reference in New Issue
Block a user