mirror of
https://github.com/esp8266/Arduino.git
synced 2025-04-22 21:23:07 +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:
commit
ba45bee55c
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 ###
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user