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

httpUpdate: fix case sensitivity issues

On Linux (presumably Mac too), the header of the library
could not be included, caps changed to match the filename.

The line 'architectures=ESP8266' in library.properties caused:
WARNING: library ESP8266httpUpdate claims to run on [ESP8266] architecture(s) and may be incompatible with your current board which runs on [esp8266] architecture(s).
This commit is contained in:
Kiril Zyapkov 2015-07-11 12:35:02 +03:00
parent da90c547ce
commit 954499bc12
2 changed files with 3 additions and 3 deletions

View File

@ -5,4 +5,4 @@ maintainer=Markus Sattler
sentence=Http Update for ESP8266 sentence=Http Update for ESP8266
paragraph= paragraph=
url=https://github.com/Links2004/Arduino/tree/esp8266/hardware/esp8266com/esp8266/libraries/ESP8266httpUpdate url=https://github.com/Links2004/Arduino/tree/esp8266/hardware/esp8266com/esp8266/libraries/ESP8266httpUpdate
architectures=ESP8266 architectures=esp8266

View File

@ -23,7 +23,7 @@
* *
*/ */
#include "ESP8266HTTPUpdate.h" #include "ESP8266httpUpdate.h"
ESP8266HTTPUpdate::ESP8266HTTPUpdate(void) { ESP8266HTTPUpdate::ESP8266HTTPUpdate(void) {