- 24 Jun, 2024 2 commits
-
-
Lucas Saavedra Vaz authored
* docs(i2s): Fix I2S documentation example * docs(idf): Fix name of Arduino as component link
-
Lucas Saavedra Vaz authored
-
- 20 Jun, 2024 2 commits
-
-
Rodrigo Garcia authored
* feat(rmt): Solve neopixel issue if neopixelWrite() is used from different tasks/isr_callbacks, it may result in a concurrency problem and many detach/attach calls in sequence, but not in synch. This commit avoids initializing the neopixel GPIO again and improves the respomse time of neopixelWrite().
-
vortigont authored
* HTTPClient lib - add HTTPCLIENT_NOSECURE build flag `HTTPCLIENT_NOSECURE` build flag disables TLS support in HTTPClient library by excluding `NetworkClientSecure.h` header. This allows linker to strip down mbedTLS lind and certificates bundle, which in turn reduces firmware image for about ~80kib. * Update HTTPClient.cpp * ci(pre-commit): Apply automatic fixes --------- Co-authored-by: Me No Dev <me-no-dev@users.noreply.github.com> Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com>
-
- 19 Jun, 2024 9 commits
-
-
Vincentius Adrian authored
-
Rodrigo Garcia authored
* fix(example): EXT0 and EXT1 wakeup Fixes the Deep Sleep wakup example to run with IDF5.1. The API has changed and a adjustment was necessary. * feat(wakeup): Use Macro for GPIO_NUM Changed the example to use a #define for the RTC IO Pin (GPIO) used in the example. * fix(typo): typo and commentaries Fixes the commentary to the correct IDF terms. * ci(pre-commit): Apply automatic fixes --------- Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com>
-
Me No Dev authored
-
Ludovic BOUÉ authored
* * feat(esp32): Add variant for Elecrow CrowPanel 7.0 Add variant for Elecrow CrowPanel 7.0" * * feat(esp32): Add variant for Elecrow CrowPanel 7.0 Add variant for Elecrow CrowPanel 7.0" * * feat(esp32): Add variant for Elecrow CrowPanel 7.0 Elecrow CrowPanel 7.0" has 4MB flash
-
Jan Procházka authored
-
Me No Dev authored
-
Junxiao Shi authored
-
Me No Dev authored
-
Lucas Saavedra Vaz authored
* ci(tools): Remove ARM64 runner and use get.exe * ci(tools): Optimize get.py and verify extraction * change(tools): Push generated binaries to PR --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
-
- 18 Jun, 2024 3 commits
-
-
Rodrigo Garcia authored
Adds a class for 0x2901 - Characteristic User Descriptor. This Descriptor is usual in BLE and describes with text what each characteristic is about. Improve Notify.ino example by adding the 0x2901 descriptor
-
Earle F. Philhower, III authored
* fix(netbios): Return interface address for NetBIOS When NetBIOS returns a match, it should return the IP address of the device. Presently, however, it returns the address of multicast IP for the subnet since the incoming NBNS packet's UDP target will be multicast (i.e. 192.168.1.255). Iterate over the active network interfaces and check netmasks to determine where the packet came from, and return the appropriate IP interface address instead. * ci(pre-commit): Apply automatic fixes --------- Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com>
-
Ashley Grealish authored
Co-authored-by: Rodrigo Garcia <rodrigo.garcia@espressif.com>
-
- 17 Jun, 2024 7 commits
-
-
Rodrigo Garcia authored
* fix(BLE): std::map() * Update libraries/BLE/src/BLERemoteService.cpp * ci(pre-commit): Apply automatic fixes --------- Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com>
-
Me No Dev authored
* fix(wifi): Fix WiFi setTxPower and getTxPower We need to wait for the interface to be started in order to be able to set/get TX Power. Code was returning too early, so calling the functions after `begin()` resulted in failure. * ci(pre-commit): Apply automatic fixes --------- Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com>
-
Juraj Andrássy authored
-
Me No Dev authored
Similar to setUserAgent
-
Me No Dev authored
* add(board): Add LILYGO T-ETH-Lite Adds board support for Lilygo T-ETH Lite * ci(pre-commit): Apply automatic fixes --------- Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com>
-
Jan Procházka authored
-
Thibo Verheyde authored
-
- 13 Jun, 2024 12 commits
-
-
Lesords authored
Co-authored-by: Lucas Saavedra Vaz <32426024+lucasssvaz@users.noreply.github.com>
-
Me No Dev authored
It used to come with IDF 4.x
-
Me No Dev authored
Previously it was allowed only once before begin() was called
-
Me No Dev authored
-
Ayush Sharma authored
-
Ayush Sharma authored
* feat: added support for filters in webserver * feat: add setFilter function in StaticRequestHandler * fix: ON_STA_FILTER & ON_AP_FILTER * fix: make request handlers backward compatible * fix: ON_STA_FILTER & ON_AP_FILTER * fix: more filters to their own example * chore: grammar * fix: remove filters from header file * fix: use same root route for both interfaces * ci(pre-commit): Apply automatic fixes --------- Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com>
-
Me No Dev authored
* fix(xtal): Add a way to change the XTAL frequency Add support for boards like SparkFun ESP32 Thing that use 26MHz XTAL * ci(pre-commit): Apply automatic fixes * feat(dbg): Print the XTAL frequency in the debug report --------- Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com>
-
Ayush Sharma authored
* feat: added removeRoutes and removeHandler methods * feat: added removeRoute and removeHandler methods * ci(pre-commit): Apply automatic fixes --------- Co-authored-by: Me No Dev <me-no-dev@users.noreply.github.com> Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com>
-
Me No Dev authored
It was returning zero, because it was not able to handle IPv4 mapped address into IPv6 address
-
Me No Dev authored
* fix(client): Implement readBytes in NetworkClient for faster downloads * fix(client): Implement readBytes to obey the client timeout * fix(clieant): use getTimeout() instead * ci(pre-commit): Apply automatic fixes --------- Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com>
-
Me No Dev authored
-
Lucas Saavedra Vaz authored
* ci(tests): Swap cache to artifacts to avoid errors between OSes * ci(push): Fix chunk generation for compilation * ci(tests): Fix error code propagation * ci(push): Add shebang to new script * ci(push): Fix sizes upload if there is no changes * ci(bot): Fix GitHub actions bot commit info
-
- 12 Jun, 2024 1 commit
-
-
lbernstone authored
* feat(sdmmc): Add RAW disk functions feat(sdmmc): fixed printf mismatches and missing callback feat(sdmmc): added ci.json Removed excess log_i * ci(pre-commit): Apply automatic fixes * Fixed sdmmc host check to pass CI * feat(sdmmc): fixed example USB check --------- Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com> Co-authored-by: Lucas Saavedra Vaz <32426024+lucasssvaz@users.noreply.github.com>
-
- 10 Jun, 2024 3 commits
-
-
Rodrigo Garcia authored
Fixes analogContinuousSetWidth() border test.
-
Lucas Saavedra Vaz authored
-
Lucas Saavedra Vaz authored
* change(idf): Rename component example * ci(push): Fix steps conditions * ci(tests): Remove unnecessary concurrency * ci(push): Fix step condition * fix(idf): Fix compilation warnings when as component
-
- 07 Jun, 2024 1 commit
-
-
Lucas Saavedra Vaz authored
* ci(fix): Fix new workflows * ci(pre-commit): Properly cache python modules * fix(get.py): Verify files after extraction and make it more readable * ci(idf): Compile as component when libs change * ci(wokwi): Re-enable cache for wokwi tests * ci(tests): Run scripts only from master * Revert "fix(get.py): Verify files after extraction and make it more readable" This reverts commit cc40edb40766ea8a013c0d76326bc57314418bff. * ci(compilation): Fix changed files check * ci(wokwi): Disable tests that use scenarios
-