- 02 Aug, 2024 8 commits
-
-
me-no-dev authored
-
me-no-dev authored
-
me-no-dev authored
-
Me No Dev authored
-
CIncinnatus authored
Enabled the onboard ceramic antenna by default when creating a new project with XIAO_ESP32C6 (#10066) * Create variant.cpp * Update variant.cpp * Update variant.cpp * Update pins_arduino.h * Update variant.cpp * Update variant.cpp * Update variant.cpp * Update variants/XIAO_ESP32C6/variant.cpp Co-authored-by: Jan Procházka <90197375+P-R-O-C-H-Y@users.noreply.github.com> * ci(pre-commit): Apply automatic fixes --------- Co-authored-by: Jan Procházka <90197375+P-R-O-C-H-Y@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
* feat(net): Add NAPT examples for STA and ETH * feat(net): Add NAPT example for PPP * feat(net): Add CI configs to skip H2 * ci(pre-commit): Apply automatic fixes --------- Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com>
-
Lucas Saavedra Vaz authored
-
Jan Procházka authored
* fix(esp-now): Remove all peers on ESP_NOW.end() * ci(pre-commit): Apply automatic fixes --------- Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com>
-
- 01 Aug, 2024 4 commits
-
-
Me No Dev authored
-
Jan Procházka authored
Co-authored-by: Me No Dev <me-no-dev@users.noreply.github.com>
-
Rodrigo Garcia authored
* fix(uart): Sets XTAL as clock source for uart C6 and H2 have problems after returning from light sleep. The baud rate seems to be off when APB is used as clock source. This fix solves the issue using a steady clock source. * fix(typo): Typo and commentaries Adds C2 in the XTAL list. * fix(uart): adjust get/set baudrate Fixes the functions for reading/writing UART baudrate by using IDF functions instead of HAL/LL. * fix(uart): uses REF_TICK for ESP32/S2 * fix(uart): esp32/s2 baudrate > 1MHz Fixes the baudrate for ESP32 and ESP32-S2 when the baud rate is higher than 1MHz. REF_TICK is just 2MHZ and can handle up to 1MHZ baudrate. * fix(uart): rxTimeout minimum Default RxTimeout changed to the minimum = 1. When TICK_REF is used as clock source, this is mandatory, * 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
* IDF release/v5.1 5a26d8ae8e * IDF release/v5.1 b6b4727c58
-
- 31 Jul, 2024 6 commits
-
-
Xylopyrographer authored
Prints the value of the chip features bitfield to printChipInfo() to facilitate debugging. Co-authored-by: Lucas Saavedra Vaz <32426024+lucasssvaz@users.noreply.github.com>
-
Chris Dailey authored
* fix(lwip): Add early out in `NetworkUDP::parsePacket()` when socket has no data Previously, `NetworkUDP::parsePacket()` would take the time to allocate a 1460 byte buffer to call `recvfrom()` with, immediately freeing it if there was no data read. This change has it check if there is available data via `ioctl()` with `FIONREAD` first, saving the allocation and thus significantly increasing performance in no data situations. * fix(lwip): Initialize `len` to ensure it's set before check
-
Jan Procházka authored
-
Jan Procházka authored
-
Jan Procházka authored
* ci(wokwi): Pass diagram.json file if exists to pytest * ci(wokwi): Rename diagrams to enable editing in Wokwi editor * ci(tests): Use newest pytest version --------- Co-authored-by: Lucas Saavedra Vaz <32426024+lucasssvaz@users.noreply.github.com>
-
Jan Procházka authored
* feat(wifi): Allow setting minimum time for wifi scan * ci(pre-commit): Apply automatic fixes --------- Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com>
-
- 29 Jul, 2024 6 commits
-
-
Jan Procházka authored
-
Xylopyrographer authored
* feat(board) add Waveshare ESP32-S3-Matrix Adds support for the Waveshare ESP32-S3-Matrix board. Includes changes to the Rainmaker partitions as per PR #10046 . * 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
-
Lucas Saavedra Vaz authored
-
lbernstone authored
-
Jan Procházka authored
* fix(rainmaker): Add new partition tables * fix(rainmaker): Update readme file for RM examples * fix(rainmaker): Hide RM partitions for esp32h2
-
- 22 Jul, 2024 2 commits
-
-
WebDust21 authored
* add "getBattery" functions + #define simplicity replaced all function protections with a #define to simplify code functionality. Also added "getBattery" functions to leverage "esp_modem_get_battery_status" call in ESP-MODEM. * add "getBattery" function defs to PPP.h * fix(ppp): uncomment error logging, change new function naming * fix(ppp): rename new functions for naming conformity * ci(pre-commit): Apply automatic fixes --------- Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com>
-
Marek Knosala authored
* Update esp32-hal-adc.c * Update esp32-hal-adc.h * Update adc.rst
-
- 17 Jul, 2024 3 commits
-
-
Lucas Saavedra Vaz authored
-
Me No Dev authored
To be merged after release
-
Me No Dev authored
-
- 16 Jul, 2024 6 commits
-
-
Me No Dev authored
From now on core libraries will have the same version as the core
-
me-no-dev authored
-
Me No Dev authored
* IDF release/v5.1 dc859c1e67 * fix(lwip): Filter out V6 packets if V6 is not enabled the ESP might accept and act on some IPv6 packets, even though IPv6 is not enabled for the interface in Arduino. This change makes the ESP ignore all IPv6 packets if IPv6 address is not available. * fix(lwip): DNS header is not required * fix(ot): Add LWIP_HOOK_IP6_INPUT_CUSTOM support
-
Jan Procházka authored
* feat(ledc): Allow attaching multiple pins to 1 channel * feat(ledc): Add ledcWriteChannel function * feat(ledc): Print info about already set channel * docs(ledc): Add ledcWriteChannel function and attach update * feat(ledc): Add example and fixes * feat(ledc): Remove commented code * feat(ledc): Fix missing new line at end of file * ci(pre-commit): Apply automatic fixes --------- Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com>
-
Martin Hübner authored
The setPins() function obviously comes from the SD_MMC lib. Not prepending that lib, this code won't compile. Signed-off-by: Martin Hübner <martin.hubner@web.de> Co-authored-by: Jan Procházka <90197375+P-R-O-C-H-Y@users.noreply.github.com>
-
Ludovic BOUÉ authored
* add(board): Add M5Stack NanoC6 Dev Kit M5Stack NanoC6 Dev Kit https://shop.m5stack.com/products/m5stack-nanoc6-dev-kit * add(board): Add M5Stack NanoC6 Dev Kit * add(board): Add M5Stack NanoC6 Dev Kit * Update boards.txt * add(board): Add M5Stack NanoC6 Dev Kit * Rename variants/m5stack_stickc_plus/m5stack_nanoc6/pins_arduino.h to variants/m5stack_nanoc6/pins_arduino.h * Update boards.txt * Update pins_arduino.h * Update pins_arduino.h * Update boards.txt m5stack_nanoc6.build.board was not uppercase
-
- 15 Jul, 2024 4 commits
-
-
Lucas Saavedra Vaz authored
* ci(badge): Push only when changes happened to badge * ci(tests): Fix conclusion status
-
tutotio authored
Add default 16MB partition to esp32wroverkit
-
Ludovic BOUÉ authored
-
WEMOS Electronics authored
* add(board): Add LOLIN S3 Mini Pro * ci(pre-commit): Apply automatic fixes --------- Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com>
-
- 11 Jul, 2024 1 commit
-
-
Me No Dev authored
* fix(nodemcu-32s): Fix Upload Speed menu on Windows The board definition had 460800 as default upload speed, but that is invalid on Windows, so the menu did not show. This change puts 115200 as default, which will make the menu appear * fix(board): Make build.board uppercase
-