From b4ef8cf0fab1f28ae1297f8d08512df92352328f Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Tue, 12 Jan 2016 17:59:09 +0300 Subject: [PATCH 1/3] Update arduino-esp8266fs-plugin link to 0.2.0 --- doc/filesystem.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/filesystem.md b/doc/filesystem.md index 3952ad688..36b792f30 100644 --- a/doc/filesystem.md +++ b/doc/filesystem.md @@ -61,7 +61,7 @@ ESPDuino | 4M | 1M, 3M *ESP8266FS* is a tool which integrates into the Arduino IDE. It adds a menu item to *Tools* menu for uploading the contents of sketch data directory into ESP8266 flash file system. -- Download the tool: https://github.com/esp8266/arduino-esp8266fs-plugin/releases/download/0.1.3/ESP8266FS-0.1.3.zip. +- Download the tool: https://github.com/esp8266/arduino-esp8266fs-plugin/releases/download/0.2.0/ESP8266FS-0.2.0.zip. - In your Arduino sketchbook directory, create `tools` directory if it doesn't exist yet - Unpack the tool into `tools` directory (the path will look like `/Arduino/tools/ESP8266FS/tool/esp8266fs.jar`) - Restart Arduino IDE From ae1409125f44142a54b93e5276836e43389c0aa7 Mon Sep 17 00:00:00 2001 From: Joost Jager Date: Tue, 12 Jan 2016 21:25:27 +0100 Subject: [PATCH 2/3] Accept-Encoding missing comma added --- libraries/ESP8266HTTPClient/src/ESP8266HTTPClient.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/ESP8266HTTPClient/src/ESP8266HTTPClient.cpp b/libraries/ESP8266HTTPClient/src/ESP8266HTTPClient.cpp index 705a5925b..6ef11f9ba 100644 --- a/libraries/ESP8266HTTPClient/src/ESP8266HTTPClient.cpp +++ b/libraries/ESP8266HTTPClient/src/ESP8266HTTPClient.cpp @@ -789,7 +789,7 @@ bool HTTPClient::sendHeader(const char * type) { header += "\r\n"; if(!_useHTTP10) { - header += "Accept-Encoding: identity;q=1 chunked;q=0.1 *;q=0\r\n"; + header += "Accept-Encoding: identity;q=1,chunked;q=0.1,*;q=0\r\n"; } if(_base64Authorization.length()) { From 28c96179a066eba703dfa1a6bc677092c7d589f6 Mon Sep 17 00:00:00 2001 From: Scott Franzyshen Date: Thu, 14 Jan 2016 16:30:26 -0800 Subject: [PATCH 3/3] Update core_esp8266_phy.c add #include to fix warning: incompatible implicit declaration of built-in function 'memcpy' --- cores/esp8266/core_esp8266_phy.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cores/esp8266/core_esp8266_phy.c b/cores/esp8266/core_esp8266_phy.c index 6086c920c..acdbabf54 100644 --- a/cores/esp8266/core_esp8266_phy.c +++ b/cores/esp8266/core_esp8266_phy.c @@ -23,8 +23,8 @@ #include #include #include - -#include "c_types.h" + #include + #include "c_types.h" static const uint8_t ICACHE_FLASH_ATTR phy_init_data[128] = {