- 19 Nov, 2018 14 commits
-
-
Rop Gonggrijp authored
-
Jeroen88 authored
* Added baudrate detection to esp32-hal-uart and HardwareSerial * Solved compiler warning for uartResizeRxBuffer() * Add unit to header variable name (timeout_ms) * Reverting accidentally changed files to master * Add small delay after baudrate detection
-
lbernstone authored
-
BBBits authored
Pin definitions T8/T9 & DAC1/DAC2 Back To Front (Issue #1831)
-
BBBits authored
Pin definitions T8/T9 & DAC1/DAC2 Back To Front
-
Terry J Myers authored
-
Terry J Myers authored
-
Mark D authored
* make WiFi.softAP() more robust * WiFi.softAP() revert fallback to WIFI_AUTH_OPEN
-
Junxiao Shi authored
fixes #1875
-
Rob de Jonge authored
-
WereCatf authored
Incorrect values used, use the proper defines from header-files instead.
-
yelvlab authored
-
bperrybap authored
* removed uint8_t Wire.endTransmission(uint8_t sendStop) Having both endTransmission(bool) and endTransmission(uint8_t) creates problems. There is no need for endTransmission(uint8_t) endTransmission(1) and endTransmission(0) works with endTransmission(bool). Removing endTransmission(uint8_t) allows the ESP32 code to be compatible with all the other Arduino cores by allowing endTransmission(1) and endTranmission(0) to work as it does on all the other cores. * Wire library version bump for endTransmission() update
-
Mark D authored
-
- 26 Sep, 2018 1 commit
-
-
me-no-dev authored
-
- 21 Sep, 2018 2 commits
-
-
chuck todd authored
#1869 exposed a resource exhaustion issue. The current HAL layer for I2C support is designed to use a shared interrupt, But, during debugging to solve the interrupt overloading condition identified in #1588, and the generation of pr #1717, the interrupt allocation parameters were changed. This change was unnecessary, the code will work successfully with shared interrupts. So, there is no need to assign a private interrupt for each I2C peripheral.
-
Me No Dev authored
* TX Flow Control and Code cleanup * Use semaphore instead of delay TX functionality is done. * Use single buffer and empty queue on exit * Fix compile issues because of LwIP code relocation * Add temporary header to fix Azure not compiling * Fix AsyncUDP early init * AsyncUDP Multicast fixes * Add source mac address and rework multicast * Allow redefinition of default pins for Serials 1 and 2 * Update IDF to 3276a13 * Update esptool.py to 2.5.0 * Fix sketches * Fix log level in BluetoothSetial
-
- 17 Sep, 2018 17 commits
-
-
david-cermak authored
* rmt driver initial version * supporting conti mode plus interrupts * using conitnous mode for sending more data * working continous mode * rmt driver cleanup after conti mode * initial version of rmt driver * adding a simple example * adding channel and block locks * modified of rmt interface for simpler/easier usage * adding header sentinels, split interface to common and additional settings * Fixes per code review + support for rx callback mode * renamed internal structures and enums, fixed formatting * cmake support for rmt * refactored tx-conti interrupts to function to make it more readable * added Tx and Rx examples * added license headers * minor updates per review * used struct access, renamed defines, corrected diagram
-
hreintke authored
* Initial * Implementation * Add to CMakelist.txt * Add example * Add IRAM_ATTR
-
hreintke authored
-
lbernstone authored
* First commit of FFat library * Fixed reboot loops if no fat present. Added CMakeLists * Functionalize the partition checks * Cleanup, especially in format * Dont format if mounted. More wording cleanup * 16M ffat should only be on 16M board * Fix some casting issues that trip up the compiler when building as ESP-IDF component
-
yelvlab authored
* Add BPI-BIT boards connfig * Add BPI-BIT v1.3 boards
-
Patrick Van Oosterwijck authored
* Add wESP32 support * Add default Ethernet config
-
Martin authored
Few testers let me know, they were unable with connection to Eduroam network under PEAP+MsCHAPv2 methods. They were trying many modifications. Solution is very absurd. Change board to STA mode manually. One tester from Italy was able to connect to Eduroam network under TTLS + MsCHAPv2 with that sketch too! Sketch was tested and worked almost for all testers with that problem.
-
Junxiao Shi authored
fixes #1734
-
lbernstone authored
* Add delay into example to allow print before sleep * Changed to Serial.flush()
-
Ifediora Elochukwu C authored
-
tobozo authored
see #1800
-
LynXzp authored
(removed quotes from last line, and fixed indentation, no text changes)
-
Baruch Nissenbaum authored
-
lewis he authored
-
Adam Coddington authored
Add functionality allowing rxBuffer of HardwareSerial to be changed in size via HardwareSerial::setRxBufferSize. (#1855)
-
Jose Carlos Garcia Diaz authored
-
lbernstone authored
* Updated ISSUE_TEMPLATE to try to get better postings * Added line for PSRAM enabled * More complete info request as per @stickbreaker
-
- 27 Aug, 2018 1 commit
-
-
copercini authored
- Delete queue at end - Close BT connection before end - DeInit SPP
-
- 18 Aug, 2018 5 commits
-
-
me-no-dev authored
-
me-no-dev authored
-
chuck todd authored
The original pins_arduino.h did not correspond to the actual hardware.
-
chuck todd authored
If the esp32 is reset during a i2c read cycle the slave device may be in control of the SDA line. If the SDA line is held low, the esp32 cannot issue a START or STOP to recover the bus. The previous code did not correctly configure the SCL output pin, and it cycled SCL 9 times with SDA Low. Since the slave device was in a READ cycle, it just continued outputting the bits of the current byte. When the ACK/NAK bit space occurred, The low output value of SDA was interpreted as ACK so the slave device continued with the next byte. It never terminated the READ cycle. This new code will correctly recover from an interrupted READ
-
Eric authored
add a troubleshooting hint
-