1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-21 10:26:06 +03:00

1312 Commits

Author SHA1 Message Date
Markus Sattler
95dada180c first httpClient 2015-11-16 19:29:33 +01:00
Markus Sattler
83b452b824 add missing WiFiClientSecure include in ESP8266WiFi.h 2015-11-16 19:28:59 +01:00
Ivan Grokhotkov
74aec438ae Fix "invalid library found" errors with Arduino 1.6.6 (#965)
As per suggestion from @marvinroger
2015-11-16 00:39:54 +03:00
Ivan Grokhotkov
5b28ae23c2 Allow WiFiServer to bind to a specific address (#997)
In addition to the existing constructors (WiFiServer::WiFiServer(port) and WiFiWebServer::WiFiWebServer(port)), new constructors are added:
WiFiServer::WiFiServer(IPAddress, port) and WiFiWebServer::WiFiWebServer(IPAddress, port).
2015-11-15 20:35:52 +03:00
Ivan Grokhotkov
34045d4908 Merge pull request #1022 from wemos/master
add wemos d1 board description to package_esp8266com_index.template.json
2015-11-15 17:04:21 +03:00
Ivan Grokhotkov
b31d0ce67e Merge pull request #1012 from CanTireInnovations/custom_crash_callback
Add the ability to be called back when the device is about to reset
2015-11-15 17:02:25 +03:00
Markus
6d1d0ab363 Merge pull request #1024 from Links2004/docu
Included desription of ArduinoOTA support and other corrections listed
2015-11-15 13:30:22 +01:00
Ivan Grokhotkov
77428baddc WiFiClientSecure rx overflow fixes
- Increase plaintext rx buffer size to 4096
- Request more data from axtls only when rx buffer is empty
2015-11-15 22:38:06 +03:00
Markus Sattler
63d6de516f Merge remote-tracking branch 'remotes/esp8266/master' into docu 2015-11-15 13:15:47 +01:00
Markus Sattler
ad2a887abc removed paragraph see #1023 2015-11-15 13:13:03 +01:00
Markus Sattler
6fc15a2e18 Merge remote-tracking branch 'remotes/krzychb/master' into docu 2015-11-15 13:09:37 +01:00
krzychb
08f5e553aa Included desription of ArduinoOTA support and other corrections listed
1. Include ArduinoOTA as the way to go - http://www.esp8266.com/viewtopic.php?p=33231#p33231
2. Need to update boards.txt to have OTA for NodeMCU 1.0 in stable or staging platform package
3. Address possible confusion regarding DNS_SD_Arduino_OTA.ino - https://github.com/esp8266/Arduino/issues/1001 and https://github.com/esp8266/Arduino/pull/984#issuecomment-155805311

Next day cleaning review

Update ota_updates.md

Update ota_updates.md

Update ota_updates.md

Update ota_updates.md
2015-11-15 11:55:27 +01:00
wemos.cc
25eb1bd46e add wemos d1 to reference.md 2015-11-15 15:43:11 +08:00
wemos
5b68aa0c9c set WeMos D1 & D1 mini default upload rate to 921600 2015-11-15 15:36:00 +08:00
wemos.cc
2d172274eb Update boards.md 2015-11-15 10:03:15 +08:00
wemos
72a7300fd9 add wemos d1 board description to package_esp8266com_index.template.json 2015-11-15 09:54:38 +08:00
Markus
defc049515 Merge pull request #1018 from Links2004/docu
add documentation about boot messages and mode meaning
2015-11-14 17:28:26 +01:00
Markus Sattler
5192ddb8cb add node about TX on GPIO2 2015-11-14 12:53:27 +01:00
Markus Sattler
9db650482c add documentation about boot messages and mode meaning 2015-11-14 12:48:19 +01:00
Me No Dev
0372d0df1f Merge remote-tracking branch 'esp8266/master' 2015-11-14 06:14:32 +02:00
Ivan Grokhotkov
5c7b40740a Disable sleep mode before doing OTA (#1005) 2015-11-13 23:41:29 +03:00
Carl Pacey
baa13f8c84 Add the ability to be called back when the device is about to reset
Caveats:
- You have to be very careful in your callback.
- On Adafruit Huzzah, I only actually get called for Exceptions and Soft
   WDT resets.
2015-11-13 12:47:57 -05:00
Ivan Grokhotkov
81e3ebef7a Merge pull request #1006 from volca/master
Add "Reset Method" menu option
2015-11-13 16:04:10 +03:00
Ivan Grokhotkov
a6cb40f9d8 Merge pull request #1007 from sticilface/master
Changes to static request handler
2015-11-13 16:03:24 +03:00
Ivan Grokhotkov
d0a944e417 Refactoring of FS::info (#779) 2015-11-13 13:23:16 +03:00
volca
3e5c2e585d Merge branch 'master' into master 2015-11-13 09:27:27 +08:00
Ivan Grokhotkov
d7e340fe14 Update docs to mention new ESP8266FS tool version. 2015-11-13 02:51:44 +03:00
sticilface
44900b4772 Merge branch 'master' into master 2015-11-12 11:17:19 +00:00
Me No Dev
2491941bf9 Merge pull request #1 from esp8266/master
pull master
2015-11-12 11:08:52 +02:00
Ivan Grokhotkov
5a6a341adc Merge pull request #1003 from me-no-dev/master
add progress option for espota.py and fix typo in ArduinoOTA
2015-11-12 12:05:13 +03:00
volca
10be8ec4f9 add menu "Reset Method" 2015-11-12 16:35:45 +08:00
Andrew Melvin
5c6f98643b Changes to static request handler 2015-11-12 07:27:21 +00:00
Me No Dev
d1235f0204 Fix upload progress and randomize the server port
randomization is good in cases where the previous port is not yet
released by the OS or the server hangs
On OS X it's very noticeable if you need to OTA twice in a short time.
2015-11-12 03:25:20 +02:00
Me No Dev
0213dc34ff Skip authentication when password is empty
should have been changed when turned in String
2015-11-12 03:09:04 +02:00
Me No Dev
18f0a9999a add progress option for espota.py and fix typo in ArduinoOTA 2015-11-11 23:23:25 +02:00
Ivan Grokhotkov
3c14656a26 Dirty hack for archive file path issue #948
Get rid of the warning in Arduino 1.6.6 and keep it compatible with Arduino 1.6.5
Downside is that IDE can not cache archive file between compilations.
2015-11-11 12:20:59 +03:00
Ivan Grokhotkov
59e05ed745 Merge pull request #990 from wemos/master
add wemos D1 & D1 mini boards
2015-11-11 01:12:43 +03:00
Ivan Grokhotkov
6af4bf5496 Merge pull request #988 from JohnSL/issue_987
Exclude the terminator in sendContent_P
2015-11-11 01:11:31 +03:00
Ivan Grokhotkov
40a511f706 Merge branch 'master' of https://github.com/krzychb/Arduino into krzychb-master
Conflicts:
	doc/ota_updates/ota_updates.md
2015-11-11 01:10:06 +03:00
Ivan Grokhotkov
92069e657b Replace some manually managed buffers with Strings, fix code style 2015-11-11 01:07:02 +03:00
Ivan Grokhotkov
450718b4a4 Merge pull request #980 from me-no-dev/master
IDE OTA Upload changes
2015-11-10 23:34:11 +03:00
Ivan Grokhotkov
a928025ccf Merge pull request #995 from Juppit/master
Updates for time.c
2015-11-10 23:31:32 +03:00
Juppit
a394787aa1 Update for time.c
configTime needs timezone as long
2015-11-09 16:53:24 +01:00
Juppit
d46ad79aa0 Declare s_timezone_sec as long
Some more small fixes:
removed ensureBootTimeIsSet() from function time()
call sntp_setservername() with server id
2015-11-09 16:39:10 +01:00
wemos
8ebde1873d Merge branch 'master' of https://github.com/wemos/Arduino 2015-11-09 13:13:43 +08:00
wemos
d1a0c53805 Squashed commit of the following:
commit 810ab68ae5ad89d24a57ed8d18c8ff6acbb54349
Author: Ivan Grokhotkov <igrokhotkov@gmail.com>
Date:   Mon Nov 9 01:37:22 2015 +0300

    Fix WiFiClientSecure::connected (#43)

    thanks @whyameye

commit 7384c3814b780e747940d9735fe08825a26f746c
Merge: 46468d4 464d891
Author: Markus <Links2004@users.noreply.github.com>
Date:   Sun Nov 8 23:04:52 2015 +0100

    Merge pull request #985 from Links2004/docu

    add missing exit in php sample

commit 464d891877a3fb153844a0110ca865861815b063
Author: Markus Sattler <help.markus+git@gmail.com>
Date:   Sun Nov 8 22:48:48 2015 +0100

    add missing exit in php sample

commit 46468d4af7ace336c31029372368154ce3000b59
Author: Ivan Grokhotkov <igrokhotkov@gmail.com>
Date:   Mon Nov 9 00:18:08 2015 +0300

    I2C: generate STOP in case of NACK (fix #698, #254)

    thanks @petrd and @Yazzcat

commit 4cf72e7ef4fcabde230de44ba1d1ab5d57cdeee0
Author: Ivan Grokhotkov <igrokhotkov@gmail.com>
Date:   Sun Nov 8 23:44:25 2015 +0300

    Add libc time functions

    Merging https://github.com/igrr/axtls-8266/pull/1 by @Juppit into the core

commit 11340a5d7643bef60d9cf61ef27a72186ed4f44c
Author: Ivan Grokhotkov <igrokhotkov@gmail.com>
Date:   Sun Nov 8 15:01:17 2015 +0300

    Fix some typos
2015-11-09 13:09:30 +08:00
wemos.cc
4d35d0a573 Merge branch 'master' into master 2015-11-09 12:32:17 +08:00
wemos
3243b4ba0e add wemos d1 boards.txt 2015-11-09 12:26:23 +08:00
JohnSL
c0f8ce9d84 Exclude the terminator in sendContent_P
The terminator should not be sent by sendContent_P. For example, if you
have a null-terminated string, the null itself should not be sent to the
client. This change decrements the number of bytes to send so it does
not include the termination character.
2015-11-08 19:28:55 -08:00
Me No Dev
950e9c9522 Let the socket to properly close
python was keeping the connection open and sending duplicate FINs until
the ESP came back online, because the ESP was resetting without giving
the network a chance to answer and close
2015-11-09 02:38:20 +02:00