Skip to content

Commit b16de2d

Browse files
committed
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).
1 parent 938a36a commit b16de2d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name=ESP8266httpUpdate
22
version=1.0
33
author=Markus Sattler
4-
maintainer=Markus Sattler
4+
maintainer=Markus Sattler
55
sentence=Http Update for ESP8266
66
paragraph=
77
url=https://github.com/Links2004/Arduino/tree/esp8266/hardware/esp8266com/esp8266/libraries/ESP8266httpUpdate
8-
architectures=ESP8266
8+
architectures=esp8266

hardware/esp8266com/esp8266/libraries/ESP8266httpUpdate/src/ESP8266httpUpdate.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
*
2424
*/
2525

26-
#include "ESP8266HTTPUpdate.h"
26+
#include "ESP8266httpUpdate.h"
2727

2828
ESP8266HTTPUpdate::ESP8266HTTPUpdate(void) {
2929

0 commit comments

Comments
 (0)