Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmarkov committed Jun 1, 2024
1 parent c639518 commit ba4805e
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/stack.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,24 @@
#![cfg(feature = "rs-matter-stack")]

pub use eth::*;
#[cfg(all(
esp_idf_comp_esp_netif_enabled,
esp_idf_comp_esp_event_enabled,
feature = "std"
))]
pub use netif::*;
#[cfg(esp_idf_comp_nvs_flash_enabled)]
pub use persist::*;
#[cfg(all(
not(esp32h2),
not(esp32s2),
esp_idf_comp_esp_wifi_enabled,
esp_idf_comp_esp_event_enabled,
not(esp_idf_btdm_ctrl_mode_br_edr_only),
esp_idf_bt_enabled,
esp_idf_bt_bluedroid_enabled,
feature = "std"
))]
pub use wifible::*;

mod eth;
Expand Down

0 comments on commit ba4805e

Please sign in to comment.