1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-10 14:42:08 +03:00
Commit Graph

768 Commits

Author SHA1 Message Date
luc
f95f0ed321 Fix WiFiSleepType_t values to match SDK ones 2016-05-05 19:38:32 +02:00
33723a9b52 Fix UdpContext::peek to return int (#1946) 2016-04-26 16:02:07 +08:00
334837533f Add missing virtual destructor in TransportTraits (#1944) 2016-04-26 16:00:46 +08:00
76e322f2e7 Fix handling of chunked transfer encoding (#1975) 2016-04-26 15:58:12 +08:00
edaae2c194 HTTPClient: fix default port not being set 2016-04-25 21:03:39 +08:00
81d3bb3e3a Return error when HTTPClient::begin is called with HTTPS URL without certificate fingerprint (#1941) 2016-04-22 19:21:57 +08:00
46fccac3e5 fix bug #1940 2016-04-20 14:09:41 +08:00
8c65f2fcd0 Update axTLS to fe4518d, SNI support in WiFiClientSecure (#1285)
Fixes #1933
2016-04-19 08:29:13 +03:00
7e4e1a4bc6 Merge pull request #1930 from WereCatf/master
Speed up writePattern() a bit more
2016-04-18 11:03:02 +03:00
7450dd39ca ESP8266WebServer: save RAM by moving response strings to flash (#1732) 2016-04-18 10:43:00 +03:00
f6516b004f ESP8266WebServer: fix handling of empty POST
Fix handling of case when Content-Length is 0.
Change do {} while() loop into while(){} so that we don't wait 1000ms for data in case Content-Length is 0.
Also fix handling of cases when malloc or realloc return null.
2016-04-18 10:33:10 +03:00
8ffe1aa2e2 Speed up writePattern() a bit more 2016-04-18 01:26:03 +03:00
a64a694f6d Speed up SPI.writePattern() 2016-04-16 20:02:06 +03:00
3bc3a87efb Web server: wait for data to arrive
Web server: wait for request body until either contentLength is received, or no data is received within 1000ms interval.
2016-04-13 15:11:08 +03:00
f3b6ec16e6 Merge pull request #1857 from esp8266/http_client_refactoring
HTTP Client library: decouple TLS handling
2016-04-13 15:00:34 +03:00
18f66e9969 Merge pull request #1892 from me-no-dev/lwipsrc
Update and move lwIP headers, add options to use different lwIP build for generic device
2016-04-13 14:32:04 +03:00
6ad7cae6be Merge pull request #1859 from Cross22/master
Fix SPI.transfer16() using wrong endianness
2016-04-13 14:18:24 +03:00
e82b74eab2 Merge pull request #1850 from 4m1g0/fixPSK
Allow PSK instead of passphrase in WiFiSTA::begin
2016-04-13 14:17:46 +03:00
fa7e9037a4 Merge pull request #1880 from sauttefk/master
Re-enable old behaviour if passphrase string is empty
2016-04-13 14:17:13 +03:00
84daa1a108 Add explicit cast (#1903) 2016-04-13 14:03:11 +03:00
46380003d5 Fix compilation when debug is enabled 2016-04-13 14:02:10 +03:00
b72cf2cdcf if data loss, exit 2016-04-13 08:20:07 +02:00
41bd7af07e slow client/network read fix 2016-04-11 16:36:37 +02:00
a06ceb8191 Merge branch 'master' into fixPSK 2016-04-10 23:38:52 +02:00
bfe9f7be69 Update and move lwIP headers, add options to use different lwIP build for generic device
Makefile added to lwip source folder to build and install liblwip_gcc.a
2016-04-10 21:55:22 +03:00
a455f22587 HTTPClient, HTTPUpdate: save some RAM by moving strings into flash 2016-04-09 12:46:29 +03:00
bf7f33d918 Fix code formatting 2016-04-09 12:46:29 +03:00
bbc5e9ba01 Update library versions 2016-04-09 12:46:29 +03:00
c450023a32 ESP8266httpUpdate: decouple HTTPS overloads 2016-04-09 12:46:29 +03:00
cae4039225 HTTPClient: decouple transport layer handling 2016-04-09 12:46:29 +03:00
93d57fabe2 Remove overloads of HTTPClient::begin which take const char*
Since the data is stored as Strings internally, these methods do not serve as an optimisation
2016-04-09 12:46:29 +03:00
1bfec4ea8e Spelling correction in comments 2016-04-08 19:21:58 -06:00
4684e44902 Re-enable old behaviour if passphrase string is empty
An empty passphrase string should enable AUTH_OPEN mode of softAP.
This was the behaviour before commit 293e55c.
Additionally make the type of checking for empty strings consistent.
2016-04-08 10:26:11 +02:00
502c45c157 Update Parsing.cpp 2016-04-08 04:40:51 +02:00
3a95fb5a94 Update Parsing.cpp 2016-04-07 23:32:04 +02:00
8c675236c7 Update Parsing.cpp
Complete read POST/GET request.
2016-04-07 22:22:16 +02:00
e4e182a966 Rectified mistake in if condition
thanks to @chaeplin for finding the mistake
2016-04-05 13:12:22 +05:30
81859c5df6 Changed timeout logic
Changed timeout to unsigned long. Using addition with millis() is not recommended. 
Source: http://www.gammon.com.au/millis
2016-04-05 10:53:15 +05:30
bda212552c Fix SPI.transfer16() using wrong endianness 2016-04-04 22:10:36 -07:00
1b8f6d2e8e Allow PSK instead of passphrase in WiFiSTA::begin
In WPA protocol, the maximum length of the passphrases are 64 characters in order to distinguish them from the actual PSK who is 64 ASCII characters long, so in most systems if a 64 chars string is passed, it is assumed to be a PSK, otherwise is treated as a passphrase and is used to compute the PSK.
2016-04-03 03:31:57 +02:00
633e48f3ae Servo: use peripheral clock frequency when calculating FRC1 tick count (#1789) 2016-03-24 01:48:23 +03:00
19e97bfe15 Fix WiFiUDP::peek return value when buffer is empty (#1796) 2016-03-24 01:21:29 +03:00
213914e1ce Fix undefined behaviour in WiFiServer::setNoDelay (#1695) 2016-03-24 01:14:48 +03:00
2bc6d6b4a2 Merge pull request #1795 from fape/1718_CaptivePortalAdvanced_fix
CaptivePortalAdvanced fix #1718
2016-03-24 01:01:16 +03:00
1a4adcc49e Merge pull request #1804 from Jkillelea/patch-1
Spelling correction
2016-03-24 01:00:59 +03:00
1f87e795d9 Merge pull request #1781 from reiyawea/master
add CPOL setting
2016-03-24 01:00:34 +03:00
00429e833d Merge pull request #1772 from gmag11/patch-2
Add more file types handling
2016-03-24 00:59:49 +03:00
67107ba19f Merge pull request #1771 from gmag11/patch-1
Update index.html
2016-03-24 00:59:27 +03:00
9690678483 Merge pull request #1753 from jeremyalangreen/ssdp-fixes
Changed ssdp templates to include deviceType
2016-03-24 00:58:58 +03:00
303af24467 Spelling correction in comments 2016-03-21 12:42:18 -07:00