Skip to content

Commit

Permalink
Fix the CI on master
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmarkov committed Jan 30, 2025
1 parent 37d623b commit 357dd2a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed
- Fix the SDMMC driver for ESP-IDF V5.5+

## [0.45.2] - 2025-01-15

Expand Down
9 changes: 9 additions & 0 deletions src/sd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -388,6 +388,15 @@ mod sdcard {
all(esp_idf_version_major = "5", esp_idf_version_minor = "2"),
)))] // For ESP-IDF v5.3 and later
get_dma_info: Some(sdmmc_host_get_dma_info),
#[cfg(not(any(
esp_idf_version_major = "4",
all(esp_idf_version_major = "5", esp_idf_version_minor = "0"),
all(esp_idf_version_major = "5", esp_idf_version_minor = "1"),
all(esp_idf_version_major = "5", esp_idf_version_minor = "2"),
all(esp_idf_version_major = "5", esp_idf_version_minor = "3"),
all(esp_idf_version_major = "5", esp_idf_version_minor = "4"),
)))] // For ESP-IDF v5.5 and later
sdmmc_host_check_buffer_alignment: Some(sdmmc_host_check_buffer_alignment),
#[cfg(not(any(
esp_idf_version_major = "4",
all(esp_idf_version_major = "5", esp_idf_version_minor = "0"),
Expand Down

0 comments on commit 357dd2a

Please sign in to comment.