You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* esp8266: (21 commits)
HardwareSerial: add other configs than 8N1
Delete jre-8u31.zip.sha
Fix Windows build
Add boot loader compatible speed of 74880 to serial.
update SDK to esp_iot_sdk_v1.0.1_15_04_24
include stdlib_noniso.h in Arduino.h see #110
strnlen implementation
missing strn program space wrappers
uart_interrupt_handler is now in ram
move libm to flash (.irom0.text) saves 3544 Byte in ram see #104
Revert c_types.h
fix bug #98
add INPUT_PULLDOWN support
add prototypes for ets_vsnprintf and ets_vprintf fix some compiler warnings
update SDK to 1.0.1_b2_15_04_10 + SSL Patch
update SDK to 1.0.1_b1_15_04_02
add files to ignore (use hardlink) to get git hardware in arduino dir
Add method to configure softAP IP address
test for #86
add to ESP class: getChipId getSDKversion getBootVersion getBootMode getCPUfreqMHz
...
Copy file name to clipboardExpand all lines: README.md
-2
Original file line number
Diff line number
Diff line change
@@ -62,8 +62,6 @@ more than 20 milliseconds is not recommended.
62
62
63
63
```Serial``` object works much the same way as on a regular Arduino. Apart from hardware FIFO (128 bytes for TX and RX) HardwareSerial has additional 256-byte TX and RX buffers. Both transmit and receive is interrupt-driven. Write and read functions only block the sketch execution when the respective FIFO/buffers are full/empty.
64
64
65
-
Only 8n1 mode is supported right now.
66
-
67
65
By default the diagnostic output from WiFi libraries is disabled when you call ```Serial.begin```. To enable debug output again, call ```Serial.setDebugOutput(true);```
0 commit comments