Skip to content

Tags: chuchujie/arduino-esp32

Tags

3.0.1

Toggle 3.0.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
add upload_port vid/pid for adafruit boards (espressif#9779)

3.0.0

Toggle 3.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix(release): Update merge_package.py (espressif#9694)

Use packaging.version instead of the deprecated distutils.version

2.0.17

Toggle 2.0.17's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: remove "programmer.default" from Nano ESP32 (espressif#9665)

Setting programmer.default has unfortunately multiple effects:
- sets the tick by default in the Tool menu in the IDE (which was the
  expected behavior),
- forces the CLI to use the specified programmer every time an upload is
  attempted (which is confusing users).

For this reason, it is better to remove the "programmer.default" setting
from the board definition and let the user choose the programmer in the
IDE menus, as it was before.

3.0.0-rc3

Toggle 3.0.0-rc3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Zigbee examples update (espressif#9627)

3.0.0-rc2

Toggle 3.0.0-rc2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Reduced GPIO17 (Ethernet clock GPIO) signal strength to reduce noise. (

…espressif#9623)

* Create variant.cpp

Reduced Ethernet clock GPIO signal strength to reduce noise.

* ci(pre-commit): Apply automatic fixes

---------

Co-authored-by: DanKoloff <[email protected]>
Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com>

2.0.16

Toggle 2.0.16's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat (uart): uses the same IDF 32bits size for TX/RX buffers (espress…

…if#9561)

* feat (uart): uses the same IDF 32bits size for TX/RX buffers

Uses the same IDF 32bits size for TX/RX buffers.

Changed header files to use the same IDF buffer limits.
* this is a backport from PR espressif#9554

* feat (uart): change UART events logs to Verbose 

UART events like BREAK or errors are now Verbose instead of Warning Level.

Backporting change from Issue espressif#9551

* feat (uart): uses the same IDF 32bits size for TX/RX buffers.

Uses the same IDF 32bits size for TX/RX buffers.

Changed header files to use the same IDF buffer limits.
* this is a backport from PR espressif#9554

* feat (uart): keep overflow log as warning

Keeps Overflow /  Buffer Full log messages in Warning Level.

3.0.0-rc1

Toggle 3.0.0-rc1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix(dns): Fix IPv6-only network, by checking IPv6 first if you have p…

…ublic address (espressif#9443)

Work around because AF_UNSPEC does not check available addresses when
determining result.

If you have a global scope IPv6 address, then first check for IPv6 DNS result;
if you don't have an IPv6, or there is no IPv6 result, then check IPv4.

This allows IPv6-only networks to connect to dual-stack destinations, as they
will get the IPv6 address (rather than the unusable IPv4).

It also means a dual-stack host to a dual-stack destination will preference
IPv6.

There is no effect if you are on an IPv4-only network, or it is an IPv4-only
destination.

2.0.15

Toggle 2.0.15's commit message
fix: USB HID Keyboard raw report (espressif#9473)

3.0.0-alpha3

Toggle 3.0.0-alpha3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add documentation on threading issues with WiFi.onEvent() to examples (

…espressif#8081)

* Compile error if CONFIG_FREERTOS_HZ != 1000

* add a check at the CMake level, per feedback

* fix a punctuation glitch

* Remove `_Static_assert` per feedback

* add documentation on threading issues with WiFi.onEvent()

* more comments

* thin out comments, add docs

* Update WiFiProv.ino merge conflict issue fixed

* Added the CLK type and MAC from eFuse to Ethernet begin

* Fixed the order and arguments on the Ethernet begin function

---------

Co-authored-by: Pedro Minatel <[email protected]>
Co-authored-by: Pedro Minatel <[email protected]>

3.0.0-alpha2

Toggle 3.0.0-alpha2's commit message
Fix date parser in release script