Skip to content

Commit

Permalink
ESP IDF Partitions API
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmarkov committed Nov 10, 2024
1 parent a9595ee commit 7273527
Show file tree
Hide file tree
Showing 2 changed files with 763 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,16 @@ pub mod napt;
pub mod netif;
#[cfg(all(feature = "alloc", esp_idf_comp_nvs_flash_enabled))]
pub mod nvs;
#[cfg(all(esp_idf_comp_app_update_enabled, esp_idf_comp_spi_flash_enabled))]
#[cfg(all(
esp_idf_comp_app_update_enabled,
any(esp_idf_comp_spi_flash_enabled, esp_idf_comp_esp_partition_enabled)
))]
pub mod ota;
#[cfg(all(
feature = "experimental",
any(esp_idf_comp_spi_flash_enabled, esp_idf_comp_esp_partition_enabled)
))]
pub mod partition;
#[cfg(esp_idf_comp_esp_netif_enabled)]
pub mod ping;
#[cfg(all(feature = "alloc", esp_idf_comp_esp_netif_enabled))]
Expand Down
Loading

0 comments on commit 7273527

Please sign in to comment.