8000 Feature/http update wi fi client parameter by Jeroen88 · Pull Request #4980 · esp8266/Arduino · GitHub
[go: up one dir, main page]

Skip to content

Feature/http update wi fi client parameter #4980

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 49 commits into from
Oct 6, 2018
Merged
Changes from 1 commit
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
ff2858a
Function added to detect baudrate
Jul 29, 2018
588d03b
Two begin() methods added to pass WiFiClient
Jul 29, 2018
5d95871
Two begin() methods added to pass WiFiClient, updated examples
Jul 29, 2018
481d080
Merge branch 'feature/HTTPClient_WiFiClient_parameter' into feature/H…
Jul 29, 2018
f9ae2c4
Two begin() methods added to pass WiFiClient, updated examples
Jul 29, 2018
7b134cb
update() functions and updateSpiffs() function added to pass a WiFiCl…
Jul 29, 2018
d0d7466
Merge branch 'master' into feature/HTTPClient_WiFiClient_parameter
Aug 3, 2018
ac3dbc2
Merge branch 'master' into feature/HTTPUpdate_WiFiClient_parameter
Aug 3, 2018
96636f2
Merge branch 'master' into feature/HTTPClient_WiFiClient_parameter
Aug 3, 2018
02637d2
Merge branch 'master' into feature/HTTPUpdate_WiFiClient_parameter
Aug 3, 2018
5aff343
Merge branch 'master' into feature/HTTPClient_WiFiClient_parameter
Aug 20, 2018
8000
d4db72d
add basicHttpsClient example, ensured in the backward compatible func…
Aug 20, 2018
2807373
Merge branch 'master' into feature/HTTPClient_WiFiClient_parameter
Aug 20, 2018
815fb0f
Adding #pragma's to suppress Travis Build warning for use of deprecat…
Aug 21, 2018
2047402
Adding #pragma's to suppress Travis Build warning for use of deprecat…
Aug 21, 2018
5ff9728
Adding #pragma's to suppress Travis Build warning for use of deprecat…
Aug 21, 2018
11ea32a
Adding #pragma's to suppress Travis Build warning for use of deprecat…
Aug 21, 2018
cfd977c
revert accidentally changed files ESP8266httpUpdate.h and .cpp to ori…
Aug 21, 2018
dc20696
Adding #pragma's to ESP8266httpUpdate.cpp to ignore use of deprecated…
Aug 21, 2018
156b506
Work in progress
Aug 21, 2018
5a16a6a
Work in progress
Aug 22, 2018
29e7754
Allocate BearSSL::WiFiClientSecure dynamically in StreamHttpsClient.ino
Aug 22, 2018
47e0e38
Merge branch 'feature/HTTPClient_WiFiClient_parameter' into feature/H…
Aug 22, 2018
6fe03e3
Added one \n
Aug 22, 2018
fba638c
Bugfix in getStream() and getStreamPtr()
Aug 22, 2018
f4c0129
Merge branch 'feature/HTTPClient_WiFiClient_parameter' into feature/H…
Aug 22, 2018
4fb6236
Updated examples httpUpdate.ino and httpUpdateSecure.ino
Aug 22, 2018
7c19eb2
Indentation to pass Travis and removed comment
Aug 22, 2018
af95fc0
Added #pragma's around calls to deprecated functions from deprecated …
Aug 23, 2018
ae41ad7
Moving httpUpdateSPIFFS.ino to new API
Aug 23, 2018
fd795c1
Merge branch 'master' into feature/HTTPUpdate_WiFiClient_parameter
d-a-v Sep 19, 2018
43741de
Merge branch 'master' into feature/HTTPUpdate_WiFiClient_parameter
devyte Sep 22, 2018
577c2cf
Merge branch 'master' into feature/HTTPUpdate_WiFiClient_parameter
d-a-v Sep 28, 2018
9c6515c
Merge branch 'master' into feature/HTTPUpdate_WiFiClient_parameter
Oct 2, 2018
208a25c
Merge branch 'master' into feature/HTTPUpdate_WiFiClient_parameter
earlephilhower Oct 3, 2018
1593266
Exit writeSteam() on received bytes in stead of timeout and add visua…
Oct 5, 2018
18cb311
Merge branch 'feature/HTTPUpdate_WiFiClient_parameter' of https://git…
Oct 5, 2018
d1eab93
Removed unnecessary references to _tcpDeprecated and unnecessary #ifdefs
Oct 5, 2018
fc3517c
Make LED status optional
Oct 5, 2018
284e3c6
Make LED feedback optional
Oct 5, 2018
fbe28fd
Merge branch 'feature/Updater/flashLED' into feature/HTTPUpdate_WiFiC…
Oct 5, 2018
bc897d5
Give optional feedback (provided by additional feature on Update clas…
Oct 5, 2018
8eeaa01
Removing extraneous debug comment
Oct 5, 2018
2e7c7a9
Updated the examples with setLedPin() including an explanation of the…
Oct 5, 2018
b3571bc
Remove trailing space causing CI to fail.
earlephilhower Oct 5, 2018
5126cfa
Remove trailing space causing CI to fail.
earlephilhower Oct 5, 2018
7ce28bd
Remove trailing space causing CI to fail.
earlephilhower Oct 5, 2018
e5c253f
Merge branch 'master' into feature/HTTPUpdate_WiFiClient_parameter
d-a-v Oct 5, 2018
5a20da5
Fix ::connect() to work for legacy API
earlephilhower Oct 6, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
revert accidentally changed files ESP8266httpUpdate.h and .cpp to ori…
…gin/master
  • Loading branch information
Jeroen88 committed Aug 21, 2018
commit cfd977ce6030d62506beb1f77c5a2fa383aa646e
2 changes: 1 addition & 1 deletion libraries/ESP8266HTTPClient/src/ESP8266HTTPClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ bool HTTPClient::begin(String host, uint16_t port, String uri)
}

#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
bool HTTPClient::begin(String host, uint16_t port, String uri, bool https, String httpsFingerprint)
{
if (https) {
Expand Down
0