- 16 Jul, 2021 7 commits
-
-
-
Me No Dev authored
Fixes: #5041
-
Me No Dev authored
Fixes: https://github.com/espressif/arduino-esp32/issues/5103
-
Me No Dev authored
* Add back ARDUINO_EVENT_WIFI_READY Fixes: https://github.com/espressif/arduino-esp32/issues/5315 * use strncpy and strncmp for WiFi SSID and Password in AP and STA Fixes: https://github.com/espressif/arduino-esp32/issues/5367 * Implement timeout for waitForConnectResult Fixes: https://github.com/espressif/arduino-esp32/issues/5330 * Remove old definition of "reverse" from stdlib_noniso Fixes: https://github.com/espressif/arduino-esp32/issues/5045 * Make "reverse" noniso conditional on ESP_DSP
-
Angus Gratton authored
arduino-esp32 has to depend on main in autostart mode, for setup() and loop(), but this can be done with undefined symbol entries to avoid a large dependency cycle and other linker errors. Closes https://github.com/espressif/esp-idf/issues/6968
-
Rodrigo Garcia authored
Fixes #5362
-
- 14 Jul, 2021 1 commit
-
-
Rodrigo Garcia authored
Fixes #5112 Call to pinMatrixInDetach() was changed from version 1.0.6 in version 2.0.0 injecting a bug as seen in cores/esp32/esp32-hal-uart.c https://github.com/espressif/arduino-esp32/commit/80418fadcfb91c75d5100a8fddeb9318a8ef7d42Co-authored-by: Me No Dev <me-no-dev@users.noreply.github.com>
-
- 08 Jul, 2021 1 commit
-
-
me-no-dev authored
reference: https://github.com/espressif/arduino-esp32/issues/102
-
- 29 Jun, 2021 1 commit
-
-
Dirk O. Kaar authored
In current master, after get.exe, there's tools/mkfatfs.exe that must be ignored. Also cleaning up a simple duplicate line in .gitignore. This is for Windows only, any hints on what can be done for Linux, Mac, is appreciated.
-
- 28 Jun, 2021 1 commit
-
-
me-no-dev authored
Fixes: https://github.com/espressif/arduino-esp32/issues/5337 Fixes: https://github.com/espressif/arduino-esp32/issues/4743 Thanks to @maxgerhardt
-
- 18 Jun, 2021 1 commit
-
-
Clemens Kirchgatterer authored
* Make String::concat() faster for some types. This patch removes the unneeded call to `strlen()` when concatenating some types to a `String`. Additionally it fixes some whitespace for consistency. * Update WString.cpp
-
- 17 Jun, 2021 1 commit
-
-
Vojtěch Bartoška authored
Stale bot labels fix.
-
- 16 Jun, 2021 4 commits
-
-
Me No Dev authored
Rework of #5266 by @pedrominatel
-
Leziga authored
-
Andreas Kuster authored
Fixes #5293 /components/arduino/libraries/WebServer/src/HTTP_Method.h:4:10: fatal error: http_parser.h: No such file or directory #include "http_parser.h"
-
Me No Dev authored
fixes #5239 * Add back clock mode argument
-
- 11 Jun, 2021 1 commit
-
-
Jason2866 authored
original PR #5278 from @s-hadinger, which is not accepted because of failure of CLAassistant `ESP.getFlashChipSize()` always returns `0` on Esp32c3 due to a change in the Flash layout. It looks like to Espressif documentation was not updated accordingly. https://docs.espressif.com/projects/esp-idf/en/latest/esp32c3/api-reference/storage/spi_flash.html#spi-flash-size - Esp32 and Esp32s3 have the flash information update by esptool.py and decribed here - https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/storage/spi_flash.html Esp32c3 has no image information at 0x0000 and contrary to the docu this information is at offset 0x0000
-
- 10 Jun, 2021 7 commits
-
-
Maurin authored
When iterating through APlist from first to the last element, a corrected password for already known SSID is not used. Therefore, I propose to iterate from the back of the list. With iterating from the back through the vector, an already known SSID with a corrected password is used instead.
-
Jones authored
Additional compile arguments can be given by a file named "build_opt.h". This enables users to easily extend their arguments on a central place. The script has been taken from stm32duino's Arduino_Core_STM32 package Co-authored-by: Me No Dev <me-no-dev@users.noreply.github.com>
-
Rotzbua authored
fixes #5115
-
Rotzbua authored
fixes #4805
-
Pablo Clemente Maseda authored
-
lbernstone authored
Fixes #4866
-
Simone Fardella authored
Add support for the Trueverit Universal IoT Driver MK II (https://www.trueverit.com) The board will be released on market using electronic distributors soon, as the other one board added via #5219 This new board (referred as MK II) has onboard Texas Instruments DP83848 Eth PHY chip.
-
- 09 Jun, 2021 15 commits
-
-
Pedro Minatel authored
Typos fixed and added more details and instructions Added README file to WiFiScan example Review on the README template Added link to DevKits
-
Me No Dev authored
esp-dsp: master 7cc5073 esp-face: master 420fc7e esp-rainmaker: f1b82c7 esp32-camera: master 7a06a7e esp_littlefs: master b58f00c
-
Me No Dev authored
-
Charles authored
The doitESPduino32/pins_Arduino.h lacks definitions for the common SPI pins names: SS, MOSI, MISO, SCK This breaks compatibility with Arduino libs, including SPI.h/.cpp This PR solves the issue while maintaining compatibility with previous pin naming (IO5/23/19/18), and ensures consistency with other boards variants.
-
Ozgur BOSTAN authored
New board addition request for an ESP32 Wrover based Developer Board
-
lucashutchinson authored
The code in the BLE library originates from https://github.com/nkolban/esp32-snippets/tree/master/cpp_utils as well as https://github.com/nkolban/ESP32_BLE_Arduino The original code in the esp32-snippets library is apache-2.0 licence'ed. In addition when Neil Kolban stopped maintaining this library he made it available with the express requirement that the licence stays as apache-2.0 (Please see: https://github.com/nkolban/esp32-snippets/issues/813) "... I do require that it continue to be Apache Licensed and free of charge for any and all uses (private or commercial)." This change is to clarify the licence of this library.
-
Ben79543 authored
Proposed fix to #4627 as a remediation to PR #3995 #3995 introduced that a device detected on BLE would not be entered in vector if a callback has been defined. By doing so, it was not possible anymore to have a counter in a call back (AND device in vector) to limit the number of detected device in a single scan, which could crash ESP32 as a result.
-
Dirk O. Kaar authored
WMath.cpp doesn't include Arduino.h, where makeWord(h, l) is declared, common denominator type therefore is uint8_t, which is in use already in Arduino.h, too. (#5230) Fixes #5229
-
David Lehrian authored
* add onMtuChanged to BLEServerCallbacks Add method onMtuChanged to the BLEServerCallbacks so the application can be notified if the MTU size changes. * Correct missing semicolon and misspelled method. Correct missing semicolon and misspelled method.
-
rolsen authored
-
Pedro Minatel authored
-
Matt Sieren authored
-
Paolo Messina authored
Thi may happen if read() gets called repeatedly (such as in HttpClient to parse response headers) and the connection is closed unexpectedly or the remote peer may have unexpected behavior that causes the underlying socket to report an error. In that case read() itself calls stop(), which invalidates the receive buffer object. Then when read() is called again without checking, such as inside readStringUntil(), the _rxBuffer is null and ESP32 crashes.
-
uPesy Electronics authored
* Add uPesy ESP32 DevKit boards support
-
Simone Fardella authored
Add support for the Trueverit Universal IoT Driver (https://www.trueverit.com) The board will be released on market using electronic distributors soon
-