Pin espressif32 to 6.13.0 to fix I2S driver conflict on boot#10
Open
alexjurkiewicz wants to merge 1 commit into
Open
Pin espressif32 to 6.13.0 to fix I2S driver conflict on boot#10alexjurkiewicz wants to merge 1 commit into
alexjurkiewicz wants to merge 1 commit into
Conversation
Arduino ESP32 core 3.x (shipped by default in espressif32 7.x+) introduced a new I2S driver architecture that conflicts with the legacy driver/i2s.h used by this firmware, causing an abort() on boot. Pinning to [email protected] (Arduino core 2.0.17 / IDF 4.4.7) keeps the legacy I2S driver as the only driver, eliminating the conflict. Firmware now builds to ~1MB, well within the default partition scheme. Fixes stedrow#3 Co-Authored-By: Claude Sonnet 4.6 <[email protected]>
Author
|
Hi, are you still working on this? I am accumulating a bunch of small patches. Do you want me to submit a whole bunch of PRs or should I just fork this repository? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #3
Problem
With an unpinned
platform = espressif32, PlatformIO resolves to thelatest version (7.x+), which ships Arduino ESP32 core 3.x. That core
introduced a new I2S driver architecture that conflicts with the legacy
driver/i2s.hused by this firmware, causing anabort()on boot:Fix
Pin to
[email protected]— the latest stable release in the 6.xseries (Arduino core 2.0.17 / IDF 4.4.7). The legacy I2S driver is the
only driver in that core, so there is no conflict.