-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
[esp32] Use arduino 3.1.3 as default #8604
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: dev
Are you sure you want to change the base?
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## dev #8604 +/- ##
===========================================
- Coverage 53.70% 15.97% -37.74%
===========================================
Files 50 1164 +1114
Lines 9408 48486 +39078
Branches 1654 5826 +4172
===========================================
+ Hits 5053 7747 +2694
- Misses 4056 40189 +36133
- Partials 299 550 +251 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
ecfc9d7
to
e7a8871
Compare
Hey there @rob-deutsch, mind taking a look at this pull request as it has been labeled with an integration ( |
# https://github.com/esphome/AsyncTCP/blob/master/library.json | ||
cg.add_library("esphome/AsyncTCP-esphome", "2.1.4") | ||
elif CORE.is_esp32: | ||
# https://github.com/esphome/AsyncTCP/blob/master/library.json | ||
cg.add_library("esphome/AsyncTCP-esphome", "2.0.0") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use a previous version of the library. There were some IPv6 changes that never got used, which don't work with Arduino 3
@@ -125,6 +125,8 @@ def set_core_data(config): | |||
choices = CPU_FREQUENCIES[variant] | |||
if "160MHZ" in choices: | |||
cpu_frequency = "160MHZ" | |||
elif "360MHZ" in choices: | |||
cpu_frequency = "360MHZ" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
400mhz is not supported yet and Arduino will panic and reset
|
||
wifi: | ||
ssid: MySSID | ||
password: password1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Test had a web server with no wifi or ethernet?
@@ -4,6 +4,7 @@ esphome: | |||
|
|||
esp32: | |||
board: esp32-c6-devkitc-1 | |||
flash_size: 8MB |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The board is actually 8mb but it was using 4mb
What does this implement/fix?
Move to 3.1.3 which uses IDF 5.3.2, supports C6, P4 and H2 now
Note the esp32_hall component was removed: https://docs.espressif.com/projects/arduino-esp32/en/latest/migration_guides/2.x_to_3.0.html#hall-sensor
Can be used as an external component with 2025.6:
Types of changes
Related issue or feature (if applicable):
Pull request in esphome-docs with documentation (if applicable):
Test Environment
Example entry for
config.yaml
:# Example config.yaml
Checklist:
tests/
folder).If user exposed functionality or configuration variables are added/changed: