lrmoreno007
15900ff432
Changes needed for upload with esptool in Eclipse
2015-09-14 12:01:12 +02:00
Ivan Grokhotkov
e62d5a92b9
Fix ESP8266WebServer::serveStatic to work for both files and directories
2015-09-14 12:47:39 +03:00
Ivan Grokhotkov
c8b12fd72c
Implement SPIFFS.exists
2015-09-14 12:46:47 +03:00
Ivan Grokhotkov
f73d414f38
WiFiClientSecure: add certificate fingerprint verification ( #43 )
2015-09-14 10:22:54 +03:00
Jeff Ashton
eb8c1faa51
Adding support for OPTIONS requests to ESP8266WebServer
2015-09-13 15:56:34 -04:00
Ivan Grokhotkov
c970dec6a7
Add HTTPS request sample ( #43 )
2015-09-13 22:50:14 +03:00
Ivan Grokhotkov
098c71ca02
Improve receive handling in TLS support ( #43 )
2015-09-13 22:49:30 +03:00
Ivan Grokhotkov
2a297ca171
Fix cbuf running out of bounds ( #348 )
2015-09-13 22:45:00 +03:00
Pascal Gollor
54bf2d060b
add table of contents
2015-09-12 17:27:40 +02:00
Ivan Grokhotkov
a49dd45538
Fix more typos in boards definitions
2015-09-10 16:40:33 +03:00
Ivan Grokhotkov
b2a712001c
Merge pull request #767 from pgollor/esp8266
...
fix upload size for gerneric 4m1m
2015-09-10 16:36:36 +03:00
Pascal Gollor
f37976f8c6
fix upload size for gerneric 4m1m
2015-09-10 15:30:45 +02:00
Ivan Grokhotkov
da30dbea4a
Fix comment in linker script
2015-09-10 16:17:33 +03:00
Ivan Grokhotkov
1414f45a07
Merge pull request #765 from pgollor/esp8266
...
fix bug for 4M huzzah with 1M file system and add 1M file system for generic 4M module
2015-09-10 16:06:22 +03:00
Pascal Gollor
994dea3de3
forgot the flash.4m1m linker script?
2015-09-10 09:29:28 +02:00
Pascal Gollor
1ea1af06b5
add 1M file system for generic 4M module
2015-09-09 19:40:16 +02:00
Pascal Gollor
774e156044
fix bug for new huzzah 1M board
2015-09-09 19:34:19 +02:00
Martin Ayotte
5cb086bc05
temporarly fix for handling PGM_P content_type properly in ESP8266WebServer::send_P() functions
2015-09-09 12:03:07 -04:00
Ivan Grokhotkov
7276e073a5
Update ESP8266FS tool link
2015-09-09 18:17:43 +03:00
Martin Ayotte
348efba5b2
Merge remote-tracking branch 'upstream/esp8266' into esp8266
2015-09-09 10:54:30 -04:00
Ivan Grokhotkov
f4bd97e8ee
File system: fix SeekEnd behaviour, fix size() not being updated after write()
2015-09-09 14:07:00 +03:00
Ivan Grokhotkov
67f4859b0c
Add 1Mbyte FS option for all 4Mbyte boards
2015-09-09 13:39:55 +03:00
Ivan Grokhotkov
32cc374921
Force disable IOSWAP for UART0 in HardwareSerial initialization ( #744 )
2015-09-09 13:39:55 +03:00
Ivan Grokhotkov
70711387df
Update reference.md
...
Preliminary ESP8266FS tool instructions
2015-09-09 02:56:57 +03:00
Ivan Grokhotkov
2115480b26
Merge pull request #751 from chaeplin/esp8266
...
adding resetInfo.reason 6
2015-09-09 02:00:22 +03:00
Ivan Grokhotkov
0fb1b07b2f
Merge pull request #757 from Links2004/esp8266
...
fix _useClientMode & _useApMode in SDK auto connect mode (#754 )
2015-09-09 01:52:14 +03:00
Ivan Grokhotkov
67d004c226
Merge pull request #758 from luc-github/esp8266
...
Remove DEBUG defined by default in DNSServer library
2015-09-09 01:51:31 +03:00
Ivan Grokhotkov
cd9791eebe
Check file path when doing SPIFFS_readdir ( #746 )
...
SPIFFS is actually a flat file system, so opendir/readdir always iterate over all files. This adds explicit check that file name returned after readdir starts with the requested pattern.
2015-09-09 01:46:40 +03:00
Ivan Grokhotkov
a9d4e6c3e6
SPIFFS HAL: fix unaligned 1-byte writes and reads ( #738 )
2015-09-09 01:12:36 +03:00
Luc
75843263f2
Remove DEBUG defined by default in library
...
DEBUG should be defined outside the library to enable it not enabled by
default in library itself
2015-09-07 23:24:27 +08:00
Markus Sattler
6a9eaca8b2
#754 fix _useClientMode & _useApMode in SDK auto connect mode
2015-09-07 17:11:30 +02:00
Martin Ayotte
27b67f4adc
add ESP8266WebServer::send_P with contentLength argument
2015-09-06 14:17:23 -04:00
Martin Ayotte
1c9456ac9d
fix bug in WiFiClient::write_P/ESP8266WebServer::sendContent_P introduced few minutes ago when changing memccpy_P to memcpy_P
2015-09-06 14:14:36 -04:00
Martin Ayotte
e3e25da792
fix bug in WiFiClient::write_P/ESP8266WebServer::sendContent_P introduced few minutes ago when changing memccpy_P to memcpy_P
2015-09-06 14:04:57 -04:00
Martin Ayotte
82748a872c
add ESP8266WebServer::sendContent_P with 'size_t size' argument for binary content
2015-09-06 13:27:12 -04:00
Martin Ayotte
389107f09d
fix bug in WiFiClient::write_P when content was binary
2015-09-06 13:09:57 -04:00
chaeplin
4b07256802
adding resetInfo.reason 6
...
enum rst_reason {
REASON_DEFAULT_RST = 0,
REASON_WDT_RST = 1,
REASON_EXCEPTION_RST = 2,
REASON_SOFT_WDT_RST = 3,
REASON_SOFT_RESTART = 4,
REASON_DEEP_SLEEP_AWAKE = 5,
REASON_EXT_SYS_RST = 6
};
2015-09-06 14:36:56 +09:00
Martin Ayotte
fe1cc18ddb
add W25Q40 chipid
2015-09-04 09:52:27 -04:00
Ivan Grokhotkov
e0b7e0443c
Merge pull request #736 from kzyapkov/avrisp
...
AVRISP: allow configuring active-high/low reset programatically
2015-09-01 20:47:23 +03:00
Ivan Grokhotkov
9a2f2f2849
Add axTLS, first draft of WiFiClientSecure ( #43 )
2015-09-01 15:45:12 +03:00
Ivan Grokhotkov
41fbe93560
AdvancedWebServer: remove mDNS from loop as well
2015-09-01 01:09:21 +03:00
Ivan Grokhotkov
143f29bc29
Fix mDNS library usage in ESP8266WebServer examples
2015-09-01 00:58:27 +03:00
Kiril Zyapkov
cbbb379941
AVRISP: allow configuring active-high/low reset programatically
2015-08-31 14:28:24 +03:00
Ivan Grokhotkov
2a2ecf8d94
Update reference.md
2015-08-31 10:53:53 +03:00
Ivan Grokhotkov
041f971a8b
Add FS::format ( #702 )
2015-08-31 10:26:04 +03:00
Ivan Grokhotkov
b8a6b71a1f
Fix return value of FS::write methods
2015-08-31 10:26:04 +03:00
Ivan Grokhotkov
a9fbe27cba
Merge pull request #729 from Links2004/esp8266
...
fix mac 599 for ESP8266HTTPUpdate
2015-08-31 09:38:28 +03:00
Ivan Grokhotkov
33de15e616
Merge pull request #718 from sticilface/patch-1
...
Update Parsing.cpp
2015-08-31 09:37:31 +03:00
Ivan Grokhotkov
4995d03b20
Merge pull request #714 from martinayotte/esp8266
...
add toCharArray() to IPAddress class
2015-08-31 09:37:22 +03:00
Markus Sattler
f96ea403dd
port stopAllExcept to WiFiUDP to keep the interface the same
2015-08-29 15:39:12 +02:00