cpu/esp32: add support for ESP32-S2 SoC family#18235
Closed
gschorcht wants to merge 115 commits intoRIOT-OS:masterfrom
Closed
cpu/esp32: add support for ESP32-S2 SoC family#18235gschorcht wants to merge 115 commits intoRIOT-OS:masterfrom
gschorcht wants to merge 115 commits intoRIOT-OS:masterfrom
Conversation
Bootloader makefile that can be used for different ESP32x variants
Updates `cpu/esp_common/periph/flash` for ESP-IDF 4.4. `spi_flash_*` functions for ESP32 are removed since these functions are now used from ESP-IDF. DEBUG output are changed to be platform independent.
The MCU_* conditionals are inverted so that they can be tested for ESP8266. In all other cases the MCU is any ESP32x SoC
Implements an interface for ESP-IDF types and functions that are required by RIOT-OS but cannot be included directly due to name conflicts.
periph/spi implementation can be used for ESP8266 only from now. An implementation using the ESP-IDF spi HAL interface is required for ESP32x SoCs.
The MCU_* conditionals are inverted so that they can be tested for ESP8266. In all other cases the MCU is any ESP32x SoC
fdc8bbd to
1bdb254
Compare
1bdb254 to
7ebda15
Compare
bors bot
added a commit
to RIOT-OS/riotdocker
that referenced
this pull request
Aug 3, 2022
201: riotbuild: add ESP32-S2 toolchain r=benpicco a=gschorcht Add Espressif's vendor toolchain for ESP32-S2 to be able to compile RIOT-OS/RIOT#18235 in CI. The toolchain has a size of 290 MByte Co-authored-by: Gunar Schorcht <[email protected]>
This was referenced Aug 23, 2022
Contributor
Author
|
Now that all split-offs have been merged, we can close this PR. |
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.
Contribution description
This PR provides the support for the ESP32-S2 SoC family and the ESP32-S2-DevKit board series.
For the moment, this PR #17841, PR #17842, PR #17844 and PR #18185 to be compilable. Once these PRs are merged this PR is rebased. The first additional commit of this PR is c5fab01.
Testing procedure
Compilation in CI has to succeed. All peripheral and basic tests have to pass.
Issues/PRs references
Depends on PR #17841
Depends on PR #17842
Depends on PR #17844
Depends on PR #18185