1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-10 14:42:08 +03:00
Commit Graph

2618 Commits

Author SHA1 Message Date
ffb0d5e014 Merge pull request #1512 from arturkowalczyk/master
Updated docs
2016-01-31 22:35:55 +03:00
7019b950bf Merge pull request #1509 from lnxbil/patch-1
Add VCC readout
2016-01-31 22:35:36 +03:00
54f3c6bd21 Merge pull request #1506 from chromy/master
Add a new board entry for the SparkFun Thing Dev
2016-01-31 22:35:20 +03:00
77ab33f7bf Fix buffer overflow and formatting 2016-01-31 18:49:02 +01:00
4cd1744fc1 Protecting ArduinoOTA uploads with a password
New chapter addedd
TOC updated

TOC update

TOC update

Corrected path to pictures
2016-01-30 11:50:10 +01:00
c52409b5a1 Merge branch 'master' into master 2016-01-29 14:38:43 +01:00
1060db94c2 handle possible dead lock in HTTP client see: #1520 2016-01-29 14:02:09 +01:00
27f1a63170 allow String for payload in HTTPclient sendRequest 2016-01-29 13:19:56 +01:00
bf067f718a make random more random 2016-01-29 13:17:10 +01:00
8edaf2c922 Fixed url 2016-01-28 09:29:49 +01:00
62e2c6828f Fixed url 2016-01-28 09:27:04 +01:00
b39146d9c3 Merge pull request #1519 from WereCatf/master
More ESP8266-compatible libraries
2016-01-27 21:08:09 +01:00
b32ce252fb More ESP8266-compatible libraries 2016-01-27 21:03:25 +02:00
e4e6831e58 Added ESP8266-EVB 2016-01-27 17:25:52 +01:00
ca93010232 Updated docs 2016-01-27 12:17:07 +01:00
282f9f559c Merge pull request #1496 from esp8266/hardwareserial
HardwareSerial without software buffer and interrupts
2016-01-27 08:30:21 +03:00
7506055e8d Add VCC readout 2016-01-27 00:26:03 +01:00
c818413b52 Add a new board entry for the SparkFun Thing Dev
While the 'SparkFun ESP8266 Thing' is similar to the
'SparkFun ESP8266 Thing - Dev Board' there are some critical
differences for programming:

The dev board expects the following settings:

Flash Mode: DIO
Flash Size: 512K (no SPIFFS)
Reset Method: nodemcu

Whereas the original board uses:

Flash Mode: QIO
Flash Size: 512K (64K SPIFFS)
Reset Method: ck
2016-01-26 20:10:41 +00:00
d1149c53e6 Remove UART register reference from HardwareSerial 2016-01-26 22:58:00 +03:00
af18612a4c Turn of '--verbose' option in Travis builds to place log size within limits 2016-01-26 22:58:00 +03:00
16c0f3f1d5 Implement HardwareSerial::peek 2016-01-26 22:58:00 +03:00
7960b63357 Move UART HAL into separate file, clean up code 2016-01-26 22:57:59 +03:00
e255f25cfd Bufferless and Interruptless HardwareSerial
Let's use the onboard buffers :)
2016-01-26 22:57:59 +03:00
aeb9597ccf Merge pull request #1504 from Links2004/master
rename cbuf getSize to available, and add size function
2016-01-26 20:17:57 +01:00
531d748936 rename cbuf::getSize to cbuf::available (return available Bytes in cbuf)
add cbuf::size (return size of cbuf)
2016-01-26 18:21:42 +01:00
fa38ce4079 allow cbuf as chain 2016-01-26 17:40:01 +01:00
46c096ba23 update version in platform.txt 2016-01-26 17:25:40 +01:00
85973cdc8c Merge pull request #1501 from Links2004/master
fix #1499 - ESPhttpUpdate.updateSpiffs
2016-01-26 16:23:17 +03:00
017dbc037e Merge pull request #1500 from asdwsda/master
espota: fixed remaining python 3.5 incompatibility
2016-01-26 16:22:57 +03:00
74da596183 Merge pull request #1503 from Makuna/ServoValueRoundOffFix
Servo value read and write fixes
2016-01-26 16:22:48 +03:00
efc8dda160 Workaround for LwIP not handling ERR_ABRT
Described in detail here: https://github.com/esp8266/Arduino/wiki/LwIP-issue,-or-how-a-simple-%22if%22-can-go-wrong
2016-01-26 15:57:37 +03:00
acb7dc0681 Servo value read and write fixes
Values that were written and then read would be different due to using
map.
If user defined a different min/max pulse width would cause the
read/write to incorrectly calculate the pulse width.
2016-01-25 16:01:43 -08:00
4a88c94c34 Merge remote-tracking branch 'remotes/esp8266/master' 2016-01-25 21:06:00 +01:00
b2a6ab8059 #1499 2016-01-25 21:05:24 +01:00
5d9fb2894d fixed remaining python 3.5 incompatibility 2016-01-25 20:22:22 +01:00
5e19757d54 Merge pull request #1495 from hallard/master
Added function to return reset reason in human readable format
2016-01-25 09:23:41 +03:00
5708c69a99 Merge pull request #1492 from asdwsda/master
make espota compatible with python 3.5
2016-01-25 09:22:48 +03:00
6aa7da4bc4 Merge pull request #1493 from Makuna/LibraryDocUpdate
Updated library docs
2016-01-25 09:21:56 +03:00
1b3f5e0cb5 Remove duplicate item from changelog 2016-01-25 09:21:23 +03:00
c81abd2a92 Added getResetReason 2016-01-25 00:48:46 +01:00
d9a51f9fa1 Added getResetReason in human readable form 2016-01-25 00:43:57 +01:00
e455315bbf Added comment on Reset reason 2016-01-25 00:43:03 +01:00
419bbb83dc Updated library docs
Updated esp8266 specific branches for NeoPixelBus
Added reference to Task library
2016-01-24 12:38:33 -08:00
6408e43331 make espota compatible with python 3.5 2016-01-24 21:11:23 +01:00
bc82547ddd Update staging package docs link 2016-01-24 22:44:47 +03:00
52112500ad Update changelog 2.1.0-rc2 2016-01-24 22:07:22 +03:00
5019b7ff27 Merge pull request #1484 from Links2004/master
move function code of cbuf to cbuf.cpp
2016-01-24 00:53:43 +01:00
bac5ce0490 make resize easier to read and add note 2016-01-23 23:23:02 +01:00
e2a73ef385 move function code of cbuf to cbuf.cpp
add peek for multiple bytes
add remove
add resizeAdd
add resize
2016-01-23 11:28:30 +01:00
d5d0d73aea Merge pull request #1476 from obsoleted/debug_tls_mem
Add TLS Mem debug level option
2016-01-21 17:16:05 +01:00